/* =========================
   Design Tokens / Variables
========================= */
:root {
    --ink: #070502;
    --ink-soft: #120c05;
    --gold: #f7c548;
    --gold-light: #ffe8a0;
    --gold-deep: #b78016;
    --teal: #0f6f80;
    --teal-dark: #075263;
    --green: #2e9c3f;
    --green-dark: #1e7a2c;
    --cream: #fdf6e3;
    --text-muted: #cbb98f;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, .45);
    --shadow-glow: 0 0 28px rgba(247, 197, 72, .35);

    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
    --font-secondary: "Montserrat", sans-serif;
}

/* =========================
   Base / Reset
========================= */
html {
    scroll-behavior: smooth;
}

body {
background: #000;
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
    /* prevents horizontal scrolling caused by decorative elements */
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color .2s ease;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* =========================
   Header Section
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 22px 0 18px;
    background: transparent !important;
    transition: padding .25s ease, background-color .25s ease;
}



.site-logo {
    width: 170px;
    max-width: 60vw;
    height: auto;
    display: block;
    transition: width .25s ease;
}

.site-header.is-scrolled .site-logo {
    width: 150px;
}

.header-text {
    margin-top: 8px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
}


.logo-box {
    left: 0;
    width: 100%;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(15, 5, 1, 0.82) 0%, rgba(30, 10, 2, 0.45) 55%, rgba(30, 10, 2, 0) 100%);
    padding-top: 35px;
}

.logo-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    padding: 11px 24px 13px;

    border: 1px solid rgba(255, 195, 55, 0.75);
    border-radius: 50px;

    background: linear-gradient(
        180deg,
        rgba(72, 29, 7, 0.94) 0%,
        rgba(24, 8, 2, 0.96) 100%
    );

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.65),
        0 0 12px rgba(255, 177, 26, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 5px rgba(0, 0, 0, 0.5);

    text-decoration: none;
}

/* Decorative gold lines beside the logo plate */
.logo-link::before,
.logo-link::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 36px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 193, 45, 0.9),
        transparent
    );
}

.logo-link::before {
    right: calc(100% + 5px);
}

.logo-link::after {
    left: calc(100% + 5px);
}

.site-logo {
    display: block;
    width: 145px;
    max-width: 100%;
    height: auto;

    filter:
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.95))
        drop-shadow(0 0 5px rgba(255, 174, 35, 0.28));
}

/* =========================
   Hero Section
========================= */

.site-header.is-scrolled {
    padding: 19px 8px;
    background: #000000cc !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .6);
}
.hero-section::after {
    /* soft fade into the next section */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(7, 5, 2, 0) 0%, var(--ink) 100%);
    pointer-events: none;
}

/* ---- Hero visual: collage + wheel + plaque ---- */
.hero-visual {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .hero-section {
    position: relative;
    padding: 0px;
    margin-top: 0px;
    overflow: hidden;
    padding-bottom: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 }


.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.hero-section .container {
    position: relative;
    z-index: 2;
} 

/* Rotating prize wheel */
.prize-wheel {
    position: relative;
    z-index: 2;
    margin-top: -26px;
    width: 500px;
    filter: drop-shadow(0 0 42px rgba(247, 197, 72, .55));
    animation: wheel-spin 46s linear infinite;
}

@keyframes wheel-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Offer plaque overlaid on the wheel */
.flash-box-contain::before {
    position: absolute;
    z-index: 3;
    top: 50%;
    content: '';
    left: 50%;
    transform: translate(-50%, -58%);
    padding: 10px 26px;
    text-align: center;
    background: linear-gradient(180deg, #c89533 0%, rgba(243, 234, 214, 1) 25%, rgba(243, 234, 214, 1) 40%, #df9e2d 100%);
    width: 46%;
    border-radius: 20px;
}

 .offer-plaque {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 99;
    border-radius: 20px;
    background-color: #068296;
    padding: 20px;
    box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.9);
    width: 42%;
} 
.offer-title {
    margin: 0;
    line-height: 1.05;
    text-transform: uppercase;
}
.box-top {
    position: absolute;
    top: -83px;
    left: 16% !important;
    text-align: center;
    width: 68%;
    padding: 12px 0px;
    background: #000000de;
    -webkit-mask-position: right top, center top, left top;
    -webkit-mask-size: 30px 100%, calc(100% - 58px) 100%, 30px 100%;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0))), -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(1, #000)), -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0)));
    -webkit-mask-repeat: no-repeat;
    white-space: nowrap;
    border-top: 2px solid #f6c023;
}
.box-bottom {
    position: absolute;
    bottom: -83px;
    left: 16% !important;
    text-align: center;
    width: 68%;
    padding: 12px 0px;
    background: #000000de;
    -webkit-mask-position: right top, center top, left top;
    -webkit-mask-size: 30px 100%, calc(100% - 58px) 100%, 30px 100%;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0))), -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(1, #000)), -webkit-gradient(linear, right top, left top, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0)));
    -webkit-mask-repeat: no-repeat;
    white-space: nowrap;
    border-bottom: 2px solid #f6c023;

}
.box-top p, .box-bottom p {
    text-align: center;
    margin: 0px;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    color: #f6c023 !important;
    font-weight: 700;
    text-transform: uppercase;
}
.offer-highlight {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #f6c023 !important;
    text-shadow: 0px 5px 10px black;
text-align: center !important;
margin-bottom: 20px;
position: relative;
}
.offer-highlight::after {
    position: absolute;
    content: '';
    background: url(../images/Star-line.webp);
    width: 35%;
    height: 28px;
    bottom: -26px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: contain;
}
.offer-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0;
    font-family: "Poppins", sans-serif;
    color: #F6C023 !important;
    text-transform: uppercase;
        margin: 3px 0px;
        text-shadow: 0px 5px 10px black;
text-align: center !important;
}

.offer-amount {
    display: block;
    margin-top: 2px;
    text-shadow: 0px 5px 10px black;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #F6C023 !important;
text-align: center !important;
}

.offer-note {
    position: absolute;
    z-index: 3;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}


.trsut-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 8px;
    z-index: 99;
    border-radius: 15px;

    width: 44%;
    display: flex;
    align-items: center;
    gap: 25px;
border: solid 4px transparent;
    background-image: linear-gradient(#068296, #068296), radial-gradient(circle at top left, #86500d, #c59b43, #fcfac8, #b07f23, #fcfac8, #86500d, #c59b43);
    box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.9);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}


.trust-text p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
}
.trust-text p span {
    font-size: 22px;
    font-weight: 600;
        text-transform: uppercase;
    line-height: 20px;
}
.trust-br {
text-align: center;
    display: flex;
    justify-content: center;
}
.trust-img p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
}
.trust-img img {
    max-width: 27px;
}
.text-badge {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
}

.cta-btn {
    position: relative;
    padding: 15px 40px;
    margin-top: 15px;
    border: 2px solid #321815;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #00bd59), to(#005627));
    background-image: -o-linear-gradient(top, #00bd59 0, #005627 100%);
    background-image: linear-gradient(to bottom, #00bd59 0, #005627 100%);
    border-radius: 10px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    line-height: 1;
    font-size: 34px;
    text-shadow: 1px 1px 6px #000000, 1px 1px 6px #00000050;
}
.cta-btn:hover {
    background-color: #068296 !important;
    background-image: unset !important;
}
.cta-btn.btn-arrowed::after {
    right: 10px;
    background-position: left bottom !important;
}
.cta-btn.btn-arrowed::before {
    left: 10px;
}
.cta-btn.btn-arrowed::before, .cta-btn.btn-arrowed::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 23px;
    background-image: url(../images/yg4-arrows.webp);
    background-size: 100% 200%;
    background-repeat: no-repeat;
    background-position: left top;
}
.btn-box {
    text-align: center;
    margin-bottom: 70px;
}
.btn-box {
    text-align: center;
    margin-bottom: 70px;
    margin-top: -130px !important;
}
.flash-box-contain canvas {
    pointer-events: none;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 28px);
    height: calc(100% + 28px);

}
.mobile-icons {
    display: none;
}
.terms-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400 !important;
    color: #fff;
    margin-top: 22px;
    z-index: 9 !important;
    position: relative;
}
.terms-text br {
    display: none;
}
.ft-img img {
    max-width: 30%;
}
.star-p::after, .star-p::before {
    position: absolute;
    content: '';
    background: url('../images/stars.webp');
    width: 16px;
    height: 16px;
    left: 36px;
    top: 19px;
    background-size: contain;
    background-repeat: no-repeat;
}
.star-p::before {
    right: 36px !important;
    left: unset !important;
}
.ft-img {
    position: relative;
    z-index: 99;
    text-align: center;
    margin-top: 25px;
}
.ft-img img {
    max-width: 10%;
}

@media (max-width: 991.98px) {

    .hero-visual {
        min-height: 420px;
    }

}

@media screen and (min-width: 1025px) and (max-width: 1098px){
    .flash-box-contain::before {
        height: 54% !important;
    }
    .cta-btn {
    font-size: 16px;

}
.offer-highlight {
    font-size: 36px;
}
}
    @media screen and (min-width: 1099px) and (max-width: 1281px){
    .flash-box-contain::before {
        height: 35% !important;
    }
    .offer-highlight {
    font-size: 38px;
    }
    .offer-sub, .offer-amount {
    font-size: 28px;
    }
    .offer-plaque::after {
    top: 85% !important;
}
.prize-wheel {
    width: 410px;
}
.btn-box {
    margin-top: -40px !important;
}
.cta-btn {
    font-size: 16px;
}
.flash-box-contain::after {
    width: 58.5%;
    height: 33% !important;
    padding: 10px 26px;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
}
}
    @media screen and (min-width: 1282px) and (max-width: 1381px){
    .flash-box-contain::before {
        height: 55% !important;
    }
        .flash-box-contain::after {
    height: 36% !important;
    left: 57%;
    }
            .btn-box {
    margin-top: -10px !important;
}
}

@media screen and (min-width: 1382px) and (max-width: 1440px){
    .flash-box-contain::before {
        height: 37% !important;
    }
            .btn-box {
    margin-top: -10px !important;
}
    .flash-box-contain::after {
    height: 34% !important;
    left: 57%;
    }
}

@media screen and (min-width: 1441px) and (max-width: 1582px){
    .flash-box-contain::before {
        height: 35% !important;
    }
        .btn-box {
    margin-top: -10px !important;
}
    .flash-box-contain::after {
    height: 32% !important;
    left: 57%;
    }
}
@media screen and (min-width: 1583px) and (max-width: 1750px){
    .flash-box-contain::before {
        height: 32% !important;
    }
    .flash-box-contain::after {
    left: 56%;
    width: 61.5%;
    height: 29% !important;
    }
    .btn-box {
    margin-top: -50px !important;
}
}
@media screen and (min-width: 1751px) and (max-width: 1930px){
    .flash-box-contain::before {
        height: 29% !important;
    }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .prize-wheel {
        animation: none;
    }

    .claim-btn:hover,
    .feature-box:hover {
        transform: none;
    }
}


@media (max-width: 575.98px) {
    .hero-visual {
        min-height: 340px;
    }
    .terms-text br {
    display: block !important;
}
    .hero-bg-video {
    top: -165px;
    }
    .site-logo {
    width: 130px;
}
.star-p::after, .star-p::before {
    top: 8px !important;
}
.ft-img img {
    max-width: 30%;
}
.terms-text {
    font-size: 13px;
        margin: 15px 20px 0px 20px;
    }

    .logo-box {
        text-align: center !important;
        justify-content: center;
        display: flex;
        position: absolute;
        top: 0px;
        margin: 0 auto;
        padding: 20px 0px;
    }
.banner-row {
        background-image: url(../images/wheel-particles.webp);
        background-repeat: no-repeat;
        background-size: 770px;
        background-position: center -54px;
        padding-top: 130px;
    }

.mobile-icons .icon-box {
    display: flex;
    align-items: stretch;
    width: 100%;
}
    .mobile-icons::before {
        content: '';
        position: absolute;
        background: url(../images/Gold-background.webp);
        width: 600px;
        height: 213px;
        z-index: -1;
        left: 0;
        bottom: -93px !important;
        opacity: 0.07 !important;
    }
.mobile-icons .icon-box > .trust-img {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
}

/* Center text inside every item */
.mobile-icons .icon-box > .trust-img p {
    margin: 0;
    line-height: 1.2;
}

/* Specifically ensure Instant Payouts stays centered */
.mobile-icons .icon-box > .trust-img:nth-child(2) {
    justify-content: center;
}

.mobile-icons .icon-box > .trust-img:nth-child(2) p {
    width: auto;
    margin: 0;
}


    .prize-wheel {
        width: 280px;
    }

    .offer-plaque {
        padding: 9px 16px;
    }

.offer-highlight {
        font-size: 36px;
    }
.prize-wheel {
        width: 425px;
        max-width: 90%;
    }

    .offer-sub, .offer-amount {
        font-size: 28px !important;
    }

    .section-title {
        font-size: 1.6rem;
    }

.box-top p, .box-bottom p {
    font-size: 15px;
}
.offer-plaque, .flash-box-contain::before {
    top: 51%;
}

.box-top {
    top: -55px;
    padding: 7px 0px !important;
        width: 71%;
        left: 14% !important;
}
.box-bottom {
    bottom: -55px;
    padding: 7px 0px !important;
        width: 71%;
        left: 14% !important;
}

.offer-plaque {
    width: 100%;
    border-radius: 0px !important;
}
.flash-box-contain::before {
    height: 50% !important;
        width: 100%;
    border-radius: 0px !important;
}

.ft-w {
    padding: 0px !important;
}

.trsut-box {
    flex-direction: column;
    width: 90%;
    gap: 13px;
}
.trust-text p span {
    font-size: 18px;
}
.trust-img p {
    gap: 8px;
    font-size: 16px;
}
.text-badge {
    display: flex;
    flex-direction: row;
}
.cta-btn {
    font-size: 26px !important;
    width: 70%;
}
span.u__colour--yellow {
    color: #f6c023;
}
.btn-box {
    margin-bottom: 140px;
    margin-top: 16px !important;
}


.trsut-box {
    position: absolute;
    bottom: 105px;
}
.icon-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    background: #000;
    padding: 20px 10px 20px 0px;
    border-radius: 15px;
    margin-top: 18px;
    background-color: #068296;
        border: solid 2px transparent;
        background-image: linear-gradient(#000000, #1a1a1a38), radial-gradient(circle at top left, #86500d, #c59b43, #fcfac8, #b07f23, #fcfac8, #86500d, #c59b43);box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.9);
        background-origin: border-box;
        background-clip: padding-box, border-box;
}
.mobile-icons .trust-img img {
    max-width: 25px;
}
    .mobile-icons .trust-img p {
        gap: 9px;
        font-size: 13px;
        line-height: 16px;
        font-weight: 400 !important;
    }
.mobile-icons {
    display: block;
}

.border-r {
    position: relative;
}
.border-r::before {
content: "";
  position: absolute;
  top: 8%;
  right: -20px;
  width: 2px;
  height: 84%;
  border-radius: 10px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #8a5a00 12%,
    #ffd65a 35%,
    #fff4b0 50%,
    #d89b16 70%,
    transparent 100%
  );
    }

    .logo-link {
        width: auto !important;
    }
.mobile-icons::before {
        bottom: -132px !important;
        opacity: 0.2 !important;
        height: 270px !important;
    }
}


@media screen and (min-width: 405px) and (max-width: 575px){
.icon-box {

        margin-top: 50px;
}
    .trsut-box {
        position: absolute;
        bottom: 128px;
    }   
.star-p::before {
    right: 48px !important;
}
.star-p::after {
    left: 48px !important;
}
}



.offer-plaque {


/* Image ke ek repeat mein total bulbs */
    --bulb-steps: 7;

    /* Har tick ke beech ka time */
    --tick-duration: 0.7s;

    /* Total loop duration */
    --loop-duration: calc(
        var(--bulb-steps) * var(--tick-duration)
    );
}


.offer-plaque::before,
.offer-plaque::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 999;
    pointer-events: none;

    background-image: url("../images/flash-lights-top.webp");
    background-repeat: repeat-x;
    background-position: 0 center;
    background-size: 400px auto;
    opacity: 1;
    filter:
        brightness(1)
        drop-shadow(0 0 5px rgba(255, 200, 0, 0.7));
    will-change: background-position, filter;
    transform: translateZ(0);
    backface-visibility: hidden;

    animation:
        offer-lights-skip-tick
        var(--loop-duration)
        steps(var(--bulb-steps), end)
        infinite,

        offer-bulb-on-off
        var(--tick-duration)
        linear
        infinite;
}

.offer-plaque::after {
    top: 83% !important;
}

.offer-plaque::before {
    top: -28%;
}

@keyframes offer-lights-skip-tick {
    from {
        background-position: 0 center;
    }

    to {
        background-position: 630px center;
    }
}


/* Har step par bulb ON, phir next tick se pehle OFF */
@keyframes offer-bulb-on-off {
    0%,
    65% {
        opacity: 1;

        filter:
            brightness(1)
            drop-shadow(0 0 10px rgba(255, 200, 0, 1));
    }

    66%,
    100% {
        opacity: 1;

        filter:
            brightness(1)
            drop-shadow(0 0 2px rgba(255, 200, 0, 0.8));
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .offer-plaque::after {
        top: 82% !important;
    }
.box-top {
    position: absolute;
    top: -81px;
    left: 10% !important;
    width: 81%;
}
.box-bottom {
    bottom: -83px;
    left: 10% !important;
    width: 81%;
}
    .offer-plaque::before {
        top: -28% !important;
    }
    .flash-box-contain::before {
    height: 40% !important;
        top: 66%;
            width: 70%;

    }
    .ft-img img {
    max-width: 21%;
}
    .btn-box {
    text-align: center;
    margin-bottom: 110px;
    margin-top: 85px !important;
}
.trsut-box {
    padding: 25px;
    width: 85%;
 }
     .hero-visual {
        padding-top: 200px;
    }
    .offer-plaque {
    top: 66%;
    width: 64%;
}
.offer-highlight, .offer-amount {
    font-size: 36px;
}


}

@media only screen and (max-width: 767px) {
    .offer-plaque::before,
    .offer-plaque::after {
        background-size: 430px auto;
    }

    .offer-plaque::after {
        top: 85% !important;
    }

    .offer-plaque::before {
        top: -27% !important;
    }
    .landing-page {
        height: auto !important;
        min-height: auto !important;
    }

}

@media (prefers-reduced-motion: reduce) {
    .offer-plaque::before,
    .offer-plaque::after {
        animation: none;
    }
}