@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    -webkit-tap-highlight-color: transparent;
}

/* Regular */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoDisplay-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Semibold */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoDisplay-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoDisplay-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Light */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoDisplay-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Thin */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoDisplay-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoText-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Medium Italic */
@font-face {
    font-family: 'SF Pro';
    src: url('../Fonts/SanFranciscoText-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
}

#website-preloader {
    position: fixed;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background: #2196F3;
}

#website-preloader img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100px;
    width: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

/*PRE-LOADER AND ARROW ANIMATION*/
#website-preloader .pulse {
    -webkit-animation: pulse 1s linear infinite;
    -moz-animation: pulse 1s linear infinite;
    -ms-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
}


@keyframes pulse {
    0% {
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(0.85);
        -moz-transform: scale(0.85);
        -o-transform: scale(0.85);
        -ms-transform: scale(0.85);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-ms-keyframes pulse {
    0% {
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -ms-transform: scale(0.85);
        transform: scale(0.85);
    }

    100% {
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

iframe#bookPopupIframe html body{
    padding: 0px !important;
}

.container-box {
    max-width: 1110px;
    margin: auto;
    padding: 0px 0px 128px;
}

.container-box .icon-list {
    display: flex;
    flex-direction: column;
    gap: 46px;
    /* margin-bottom: 50px; */
}

.container-box .icon-list>div {
    display: flex;
    gap: 10px;
    padding-right: 60px;
}

.container-box .icon-list>div img {
    width: 39.46px;
    height: 39.46px;
    border-radius: 8.22px;
}

.container-box .icon-list>div h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -2%;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.container-box .icon-list>div span {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -2%;
    color: #1A1A1A !important;
}

.container-box .icon-list.light>div h5,
.container-box .icon-list.light>div span {
    color: #FFFFFF !important;
}

.text-white {
    color: #FFFFFF;
}

.text-dark {
    color: #1A1A1A;
}

.heading-1 {
    font-weight: 600;
    font-size: 72px;
    line-height: 120%;
    letter-spacing: -2%;

}

.heading-2 {
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;

}

.paragraph {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -2%;
    color: #444444;
}

.paragraph.light {
    color: #FFFFFF;
}

.button {
    padding: 8px;
    display: inline-block;
    border-radius: 50px;
    border: 0.5px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.24);

    backdrop-filter: blur(8px);
    box-shadow: 0px 11px 40px 0px #0000007a;
}

.button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border-width: 0.5px;
    padding: 8px;
    box-shadow: 0px 4px 12px 0px #FFFFFF3D inset;
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 12.5px 26px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    gap: 12px;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #FFFFFF;
}

.game-list>div {
    display: flex;
    gap: 12px;
}

.game-list>div img {
    width: 23px;
}



/* ------------------------------------------------------------
    Smart App Banner  (mobile only — shown via JS on ≤767px)
    ------------------------------------------------------------ */
.sab {
    display: none;
    /* JS shows it only on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease;
    will-change: transform, opacity;
}

.sab.sab--visible {
    transform: translateY(0);
    opacity: 1;
}

.sab.sab--hiding {
    transform: translateY(110%);
    opacity: 0;
}

.sab__close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    line-height: 1;
}

.sab__close:active {
    transform: scale(0.88);
    background: rgba(0, 0, 0, 0.12);
}

.sab__logo {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: contain;
}

.sab__text {
    flex: 1;
    min-width: 0;
}

.sab__title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 2px;
    line-height: 1.2;
}

.sab__desc {
    font-size: 12px;
    font-weight: 400;
    color: #888;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sab__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #1A1A1A;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.sab__btn:active {
    transform: scale(0.93);
}

.sab__btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    flex-shrink: 0;
}

/* =============================================
   Responsive Breakpoints
   ============================================= */

/* 1200px — constrained desktops / large tablets */
@media (max-width: 1200px) {
    .container-box {
        max-width: 900px;
        padding: 0 20px 100px;
    }

    .heading-1 {
        font-size: 60px;
    }

    .heading-2 {
        font-size: 52px;
    }
}

/* 992px — tablets landscape */
@media (max-width: 992px) {
    .container-box {
        padding: 0 20px 80px;
    }

    .container-box .icon-list {
        gap: 36px;
    }

    .container-box .icon-list>div {
        padding-right: 30px;
    }

    .heading-1 {
        font-size: 48px;
        line-height: 140%;
    }

    .heading-2 {
        font-size: 42px;
        line-height: 115%;
    }

    .paragraph {
        font-size: 16px;
        line-height: 140%;
    }
}

/* 768px — tablets portrait / large phones */
@media (max-width: 768px) {
    .container-box {
        padding: 0 20px 60px;
    }

    .container-box .icon-list {
        gap: 28px;
    }

    .container-box .icon-list>div {
        padding-right: 16px;
    }

    .container-box .icon-list>div h5 {
        font-size: 18px;
    }

    .heading-1 {
        font-size: 40px;
    }

    .heading-2 {
        font-size: 36px;
    }

    .paragraph {
        font-size: 16px;
    }
}

/* 580px — small phones */
@media (max-width: 580px) {
    .container-box {
        padding: 0 20px 48px;
    }

    .container-box .icon-list {
        gap: 24px;
    }

    .container-box .icon-list>div {
        padding-right: 0;
    }

    .container-box .icon-list>div h5 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .container-box .icon-list>div span {
        font-size: 14px;
    }

    .heading-1 {
        font-size: 34px;
    }

    .heading-2 {
        font-size: 30px;
    }

    .paragraph {
        font-size: 15px;
    }

    .button a {
        font-size: 14px;
        padding: 10px 20px;
    }
}
