/* Reset some basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Proxima Nova Extra Condensed';
    src: url('/static/sportik/fonts/proxima-nova-extra-condensed.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.mobile-title{
    display: none;
}
body html{
    overflow-x: hidden;
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #17283A;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    background: linear-gradient(
    to bottom,
    #238DC1 0px,
    #238DC1 150vh,   /* first color until 200px */
    #006AB4 200px,   /* second color starts exactly at 200px */
    #006AB4 100%     /* continue to bottom */
  );
}

html, body {
    overscroll-behavior: none;
}

.play-now-main{
    margin-top: 2em;
    width: max-content;
    background-color: #FFA400;
    padding: 0.825em 2em;
    border-radius: 15vw;
    border: 1px solid white;
}

.play-now a{
    text-decoration: none;
    color: white;
}

.mobile-play-now a{
    text-decoration: none;
    color: white;
}

.play-now-main a{
    display: block;
    color: white;
    font-size: 2em;
    text-decoration: none;
    text-align: center;
    width: 100%;
    font-weight: bold;
}

/* ============================= */
/*         HEADER / NAV          */
/* ============================= */
.header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: 10vh;
    min-height: 70px;
    max-height: 140px;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    align-items: center;
    position: fixed;
}

.header > div:first-child {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.header > div:first-child img {
    height: 80%;
    align-self: flex-start;
}

.header > div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.buttons span a {
    cursor: pointer;
    color: #006AB4;
    text-decoration: none;
    font-family: 'Proxima Nova Extra Condensed', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.header img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.header .buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    height: 100%;
}

.header .play-now {
    margin-left: auto;
    color: white;
    background-color: #FFA400;
    border-radius: 30px;
    height: 80%;
    font-family: 'Proxima Nova Extra Condensed', Arial, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2em;
    cursor: pointer;
    text-align: center;
}

/* Hamburger menu (hidden by default, shown on mobile) */
.hamburger {
    display: none!important;
    font-size: 2em;
    cursor: pointer;
    color: #006AB4;
    background: none;
    border: none;
    padding: 0 0.5em;
    z-index: 1101;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 6px 32px #0001;
    z-index: 1100;
    transition: max-height 0.28s cubic-bezier(.53,.2,.45,1.07), opacity 0.18s;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}
.mobile-menu.active {
    display: block;
    max-height: 400px;
    opacity: 1;
    width: 90vw;
    border-radius: 22px;
}
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 1.2em 1.5em 0.7em 1.5em;
    height: auto!important;
}
.mobile-links a {
    color: #006AB4;
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Proxima Nova Extra Condensed', Arial, sans-serif;
    font-weight: 600;
}
.mobile-play-now {
    color: white;
    background: #FFA400;
    border-radius: 28px;
    padding: 0.7em 0;
    text-align: center;
    font-family: 'Proxima Nova Extra Condensed', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    margin: 0.5em 1.5em 1.1em 1.5em;
}

/* ============================= */
/*         BACKDROP              */
/* ============================= */
.backdrop {
    position: relative;
    width: 100%;
    background: url('/static/sportik/sportikbackdrop.png') no-repeat center top;
    background-size: cover;
    border-radius: 0 0 30% 30% / 0 0 12% 12%;
    padding-top: 10vh; /* matches header min-height */
    box-sizing: border-box;
    margin-top: 0;
    overflow: hidden;
    padding-top: 30vh;
    padding-bottom: 30vh;
}

.backdrop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vh;
    height: 200vh;
    background: radial-gradient(
        ellipse 80% 60% at 30% 50%,
        rgba(0, 106, 180, 0.85) 40%,
        rgba(0, 106, 180, 0.24) 40%,
        transparent 100%
    );
    filter: blur(18px);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.backdrop::before {
    content: '';
    position: absolute;
    right: -30%;
    top: 80%;
    width: 80vh;
    height: 80vh;
    background: radial-gradient(
        circle,
        rgba(199, 0, 23, 0.92) 0%,
        rgba(199, 0, 23, 0.7) 30%,
        rgba(199, 0, 23, 0.07) 90%,
        transparent 100%
    );
    filter: blur(22px);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    transform: translateY(-50%);
}

/* ============================= */
/*        LEFT CONTENT           */
/* ============================= */
.left-content {
    position: relative;
    top: 30%;
    left: 10%;
    z-index: 100;
}

.left-content .title {
    width: 13em;
    color: white;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 0.5em;
    font-family: 'Myriad Pro Regular', Arial, sans-serif;
}

.left-content .sub-title {
    color: white;
    width: 23em;
    font-weight: 100;
    font-family: 'Myriad Pro Regular', Arial, sans-serif;
}

/* ============================= */
/*        TIMER                  */
/* ============================= */
.timer {
    display: flex;
    align-items: flex-start;
    gap: 0.3em;
    font-family: monospace;
}

.time-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.digits {
    display: flex;
    gap: 0.1em;
}

.digit {
    width: 1.2em;
    height: 2em;
    min-width: 1.2em;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e89500;
    color: #fff;
    border-radius: 5px;
    font-size: 4em;
    padding: 0 0.1em;
    outline: 1px solid white;
    margin: 2px
}

.label {
    font-size: 0.7em;
    margin-top: 0.3em;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Myriad Pro Regular', Arial, sans-serif;
    font-weight: 100;
}

.colon {
    font-size: 4em;
    color: #fff;
    margin: 0 0.1em;
    display: flex;
    align-items: center;
    height: 2em;
}

.timer-title {
    font-weight: bold;
    color: white;
    padding-top: 1.5em;
}

/* ============================= */
/*        SECOND DROP            */
/* ============================= */
.second-drop {
    background: linear-gradient(to top, #1778c8, #006AB4);
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5%;
    padding-left: 10%;
    padding-right: 10%;
    gap: 5em;
    position: relative;
    box-sizing: border-box;
}

.second-drop .bottle-container{
    position: relative;
    overflow: hidden;
}

.second-drop .bottle {
    position: absolute;
    top: 0%;
    left: 19%;
    width: 50%;
    height: 70%;
    z-index: 10;
    object-fit: contain;
    max-width: 100%;
}

.second-drop .blob-left {
    position: absolute;
    top: -5%;
    width: 90%;
    height: 90%;
    object-fit: contain;
    aspect-ratio: 1;
}

.second-drop .blob-right {
    position: absolute;
    left: 25%;
    top: 3%;
    width: 70%;
    height: 70%;
    object-fit: contain;
    transform: rotate(-15deg);
}

.second-drop .blob-center {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.second-drop .text {
    padding-top: 20vh;
}
.second-drop .text .title {
    color: white;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1em;
}

.second-drop .text .content {
    background-color: #FFFFFF14;
    padding: 0.825em 1em;
    border-radius: 25px;
    color: white;
    font-size: 1.2em;
    font-weight: 100;
}

/* SVG Blobs */
.blob1, .blob2, .blob3 {
    z-index: 10;
    pointer-events: none;
}

.blob1 {
    position: absolute;
    left: 60vw;
    top: 0vh;
    width: 18vw;
    min-width: 90px;
    max-width: 180px;
    height: auto;
}
.blob2 {
    position: absolute;
    left: 80vw;
    top: 5vh;
    width: 11vw;
    min-width: 60px;
    max-width: 110px;
    height: auto;
}
.blob3 {
    position: absolute;
    left: 3vw;
    top: 65vh;
    width: 12vw;
    min-width: 60px;
    max-width: 120px;
    height: auto;
}

/* ============================= */
/*        FOOTER                 */
/* ============================= */
.footer {
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 20vh;
    align-items: center;
    justify-items: center;
    overflow: hidden;
}

.footer .links {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.footer .logo {
    height: 10vh;
    margin: auto;
}

.footer .links a {
    color: #006AB4;
    text-decoration: none;
    font-family: 'Proxima Nova Extra Condensed', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.footer img {
    max-width: 100%;
}

@media (max-width: 1000px) {
    .header {
        grid-template-columns: 1fr 2fr 1fr;
        height: 80px;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
        padding-left: 3%;
        padding-right: 3%;
    }
    .left-content {
        left: 4%;
        width: 92vw;
    }
    .second-drop {
        padding-left: 3%;
        padding-right: 3%;
        gap: 2em;
    }
    .second-drop .text {
        padding-top: 7vh;
    }
    .blob1 { top: 80vh; }
    .blob2 { top: 0vh; }
}

@media (max-width: 700px) {
    .header {
        grid-template-columns: 1fr 1fr;
        height: 60px;
        min-height: 40px;
        max-height: none;
        padding-top: 5px;
        padding-bottom: 5px;
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        font-size: 14px;
        position: fixed;
        width: 100%;
    }
    .header .buttons {
        display: none !important;
    }
    .header .play-now {
        display: none !important;
    }
    .hamburger {
        display: block!important;
        margin-left: auto;
    }
    .mobile-menu {
        display: block !important;
        position: absolute;
        height: auto!important;
    }
    .backdrop {
        padding-top: 60px;
        border-radius: 0 0 20% 20% / 0 0 10% 10%;
        min-height: 40vh;
        height: 100vh;
    }
    
    .second-drop .bottle-container{
        height: 50vh;
    }

    .second-drop .blob-left {
        position: absolute;
        top: 5%;
        left: -5%;
        width: 90%;
        height: 90%;
        object-fit: contain;
        aspect-ratio: 1;
    }
    .second-drop .blob-center {
        position: absolute;
        top: 8%;
        left: 10%;
        width: 80%;
        height: 80%;
        object-fit: contain;
    }
    .second-drop .blob-right {
        position: absolute;
        left: 30%;
        top: 0%;
        width: 90%;
        height: 90%;
        object-fit: contain;
        transform: rotate(-15deg);
    }
    .left-content {
        top: 15vw;
        left: 5vw;
        width: 90vw;
        max-width: 100%;
    }
    .left-content .title,
    .second-drop .text .title {
        font-size: 1.2em;
        width: 100%;
    }
    .left-content .sub-title {
        width: 100%;
        font-size: 1em;
    }
    .timer .time-group .label {
        font-size: 12px;
    }
    .timer {
        gap: 0.25em;
        flex-wrap: wrap;
        justify-content: center;
    }
    .digit, .colon {
        font-size: 2.3em;
        height: 2em;
        width: 1.3em;
        min-width: 1.3em;
        min-height: 1.8em;
    }
    .label {
        font-size: 1em;
        margin-top: 0.22em;
    }
    .timer-title {
        font-size: 1.05em;
        padding-top: 1em;
    }
    .second-drop {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding-top: 2em;
        gap: 2em;
        height: auto;
    }
    .second-drop .text {
        padding-top: 0;
        text-align: center;
    }
    .second-drop .text .title {
        display: none;
        font-size: 1em;
    }
    .second-drop .text .content {
        font-size: 1em;
        padding: 0.5em 0.5em;
        background: transparent;
        width: 80%;
        margin: auto;
        font-weight: 100;
        padding-bottom: 10vh;
    }
    .blob1, .blob2, .blob3 {
        width: 60px !important;
        min-width: 40px;
        max-width: 70px;
        display: none;
    }
    .footer {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        padding: 1em 0;
        gap: 1em;
    }
    .footer .links {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }
    .footer .logo,
    .footer img {
        height: 40px;
        max-height: 40px;
    }
}

@media (max-width: 430px) {
    .header {
        font-size: 12px;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .left-content .title{
        text-align: center;
        width: 90%;
        margin: auto;
        font-size: 2em;
    }
    .left-content .sub-title{
        text-align: center;
        width: 80%;
        margin: auto;
    }
    .header .buttons span a {
        font-size: 11px;
    }
    .header .play-now {
        font-size: 12px;
        padding: 0 5px;
    }
    .left-content {
        top: 8vw;
        left: 2vw;
        width: 96vw;
    }
    .timer-title {
        text-align: center;
        font-size: 1em;
    }
    .timer {
        gap: 0.16em;
    }
    .digit, .colon {
        font-size: 1.6em;
        height: 2em;
        width: 1.1em;
        min-width: 1.1em;
        min-height: 1.1em;
    }
    .label {
        font-size: 0.82em;
        margin-top: 0.1em;
    }
    .timer .time-group .label {
        font-size: 10px;
    }
    .blob1, .blob2, .blob3 {
        width: 32px !important;
        min-width: 24px;
        max-width: 40px;
        display: none;
    }
    .backdrop::after, .backdrop::before{
        display: none;
    }
    .backdrop {
        height: 100lvh;
        border-radius: 0px;
        background:
            linear-gradient(
                to bottom,
                #1976d2b1 0%,
                #1976d2 0%,
                transparent 100%
            ),
            url('/static/sportik/sportikbackdrop.png') no-repeat center top;
        background-size: cover;
    }
    .mobile-title{
        display: block;
        text-align: center;
        width: 90%;
        margin: auto;
        font-size: 2em;
        color: white;
    }
    .play-now-main{
        margin: auto;
        margin-top: 7vh;
    }
    .promocode-div{
        grid-template-columns: 0fr 0fr 1fr 0fr 0fr!important;
    }
    .promocode-div{
        border-radius: 0!important;
    }
    .input-field{
        grid-template-columns: 1fr!important;
        height: 15vh!important;
    }
    
}


#dynamic-text{
    font-weight: 100;
    font-family: 'Myriad Pro Regular', Arial, sans-serif;
    color: white;
    text-align: center;
    font-size: 1.5em;
}

.orange{
    color: #FFA400;
}