* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

main {
    width: 100%;
}

.container {
    width: min(1240px, calc(100% - 50px));
    margin: auto;
}


/* HEADER */

.site_header,
header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header_inner,
header .container {
    width: min(1240px, calc(100% - 50px));
    min-height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.site_logo,
header h1 {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #111111;
    font-size: 22px;
    font-weight: 900;
}

.site_logo strong {
    color: #c99a20;
}

.logo_crown {
    color: #c99a20;
    font-size: 29px;
}

.main_nav,
header nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main_nav a,
header nav a {
    position: relative;
    padding: 28px 13px;
    color: #444444;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.main_nav a:hover,
.main_nav a.active,
header nav a:hover {
    color: #b88916;
}

.main_nav a.active::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 0;
    height: 2px;
    background: #c99a20;
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header_login,
.header_register {
    min-height: 40px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    transition: 0.3s ease;
}

.header_login {
    color: #111111;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.header_register {
    color: #111111;
    background: linear-gradient(135deg, #f4d46a, #c9971b);
}

.header_login:hover {
    border-color: #c99a20;
    color: #a7770e;
}

.header_register:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 154, 32, 0.22);
}


/* HERO */

.home_hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(201, 154, 32, 0.12),
            transparent 25%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(201, 154, 32, 0.05),
            transparent 30%
        ),
        #ffffff;
}

.home_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.025) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    opacity: 0.45;
}

.home_hero_content {
    position: relative;
    z-index: 5;
    width: min(1240px, calc(100% - 50px));
    min-height: 700px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 25px;
}

.hero_text {
    position: relative;
    z-index: 10;
    animation: heroEnter 0.9s ease both;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    margin-bottom: 23px;
    border: 1px solid rgba(201, 154, 32, 0.35);
    border-radius: 50px;
    background: rgba(201, 154, 32, 0.07);
    color: #a7770e;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge_star {
    color: #c99a20;
}

.hero_text h1 {
    max-width: 650px;
    color: #111111;
    font-size: clamp(55px, 6vw, 84px);
    line-height: 0.97;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero_text h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        #a7770e,
        #e2bd4e,
        #b78312
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: goldMove 4s linear infinite;
}

.hero_text > p {
    max-width: 570px;
    margin-top: 25px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.hero_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    min-height: 51px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9px;
    border: 1px solid transparent;
    background: linear-gradient(
        135deg,
        #f1d36a,
        #c9971b
    );
    color: #111111;
    font-size: 12px;
    font-weight: 900;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 154, 32, 0.22);
}

.hero_btn {
    min-width: 200px;
}

.hero_btn strong {
    font-size: 17px;
}

.hero_btn_secondary {
    background: #ffffff;
    border-color: #dddddd;
    color: #111111;
}

.hero_btn_secondary:hover {
    background: #fafafa;
    border-color: #c99a20;
    box-shadow: none;
}

.hero_points {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
}

.hero_point {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero_point_icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 154, 32, 0.25);
    border-radius: 10px;
    background: rgba(201, 154, 32, 0.07);
    font-size: 14px;
}

.hero_point div:last-child {
    display: flex;
    flex-direction: column;
}

.hero_point strong {
    color: #a7770e;
    font-size: 13px;
    line-height: 1.2;
}

.hero_point span {
    color: #888888;
    font-size: 9px;
}

.hero_participants {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.participant_faces {
    display: flex;
}

.participant_faces span {
    width: 31px;
    height: 31px;
    margin-right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #eeeeee;
    font-size: 13px;
}

.hero_participants strong {
    display: block;
    color: #333333;
    font-size: 10px;
}

.hero_participants p {
    color: #888888;
    font-size: 9px;
}


/* HERO VISUAL */

.hero_visual {
    position: relative;
    height: 620px;
}

.hero_scene {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero_scene::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: 0;
    top: 20px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 154, 32, 0.15),
        transparent 65%
    );
    filter: blur(20px);
}

.scene_ring {
    position: absolute;
    border: 1px solid rgba(201, 154, 32, 0.22);
    border-radius: 50%;
}

.scene_ring_one {
    width: 570px;
    height: 570px;
    top: 15px;
    right: 10px;
    animation: rotateRing 18s linear infinite;
}

.scene_ring_two {
    width: 430px;
    height: 430px;
    top: 85px;
    right: 80px;
    border-color: rgba(0, 0, 0, 0.08);
    animation: rotateRingReverse 13s linear infinite;
}

.scene_ring_one::before,
.scene_ring_one::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c99a20;
    box-shadow: 0 0 15px rgba(201, 154, 32, 0.45);
}

.scene_ring_one::before {
    top: 40px;
    left: 100px;
}

.scene_ring_one::after {
    right: 70px;
    bottom: 80px;
}

.scene_mountain {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 75px;
    height: 170px;
    opacity: 0.3;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 170px solid transparent;
    border-right: 170px solid transparent;
    border-bottom: 175px solid #eeeeee;
}

.mountain_one {
    left: 20px;
}

.mountain_two {
    right: 0;
    transform: scale(0.82);
    border-bottom-color: #f3f3f3;
}

.scene_city {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    height: 90px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.scene_city span {
    width: 32px;
    display: block;
    background: linear-gradient(
        to top,
        #eeeeee,
        #d7d7d7
    );
    border-top: 1px solid rgba(201, 154, 32, 0.3);
}

.scene_city span:nth-child(1) {
    height: 45px;
}

.scene_city span:nth-child(2) {
    height: 70px;
}

.scene_city span:nth-child(3) {
    height: 100px;
    width: 42px;
}

.scene_city span:nth-child(4) {
    height: 60px;
}

.scene_city span:nth-child(5) {
    height: 83px;
}

.scene_light {
    position: absolute;
    bottom: 80px;
    width: 2px;
    height: 450px;
    background: linear-gradient(
        to top,
        rgba(201, 154, 32, 0.16),
        transparent
    );
}

.beam_one {
    left: 37%;
    transform: rotate(17deg);
}

.beam_two {
    right: 28%;
    transform: rotate(-16deg);
}


/* PRIZE STAGE */

.prize_stage {
    position: absolute;
    left: 50%;
    bottom: 55px;
    width: 560px;
    height: 400px;
    transform: translateX(-50%);
}

.stage_top {
    position: absolute;
    left: 50%;
    bottom: 105px;
    width: 470px;
    height: 145px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
        ellipse,
        rgba(201, 154, 32, 0.20),
        rgba(201, 154, 32, 0.06) 45%,
        transparent 70%
    );
    border: 1px solid rgba(201, 154, 32, 0.20);
    box-shadow: 0 0 70px rgba(201, 154, 32, 0.10);
}

.stage_middle {
    position: absolute;
    left: 50%;
    bottom: 35px;
    width: 410px;
    height: 105px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(
        to bottom,
        #ffffff,
        #eeeeee
    );
    border: 1px solid #dddddd;
}

.stage_bottom {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 540px;
    height: 65px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(
        to bottom,
        #eeeeee,
        #d6d6d6
    );
    border: 1px solid #d1d1d1;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}


/* BIKE */

.prize_bike {
    position: absolute;
    left: 15px;
    bottom: 130px;
    width: 220px;
    height: 170px;
    animation: prizeFloat 4s ease-in-out infinite;
}

.bike_wheel {
    position: absolute;
    bottom: 0;
    width: 68px;
    height: 68px;
    border: 8px solid #222222;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        #c99a20 0 8%,
        #333333 9% 22%,
        #999999 23% 26%,
        #eeeeee 27% 100%
    );
}

.bike_wheel_one {
    left: 10px;
}

.bike_wheel_two {
    right: 10px;
}

.bike_body {
    position: absolute;
    left: 55px;
    top: 55px;
    width: 120px;
    height: 72px;
}

.bike_tank {
    position: absolute;
    left: 25px;
    top: 0;
    width: 80px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px 28px 12px 10px;
    background: linear-gradient(
        145deg,
        #e1bb4b,
        #9b7212
    );
    color: #fff8d4;
    font-size: 15px;
    font-weight: 900;
}

.bike_seat {
    position: absolute;
    left: 0;
    top: 5px;
    width: 52px;
    height: 14px;
    border-radius: 10px;
    background: #222222;
}

.bike_engine {
    position: absolute;
    left: 47px;
    top: 36px;
    width: 52px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(
        145deg,
        #888888,
        #333333
    );
}

.bike_handle {
    position: absolute;
    right: 13px;
    top: 34px;
    width: 46px;
    height: 8px;
    border-radius: 8px;
    background: #444444;
    transform: rotate(-18deg);
}


/* CASH */

.cash_prize {
    position: absolute;
    left: 185px;
    bottom: 178px;
    width: 190px;
    height: 135px;
    z-index: 5;
    animation: cashFloat 4.5s ease-in-out infinite;
}

.cash_stack {
    position: absolute;
    width: 110px;
    height: 58px;
    border: 2px solid rgba(176, 133, 20, 0.70);
    border-radius: 5px;
    background: repeating-linear-gradient(
        0deg,
        #d7bd67 0,
        #d7bd67 5px,
        #f0d77a 6px,
        #b28b24 10px
    );
}

.cash_one {
    left: 8px;
    bottom: 0;
    transform: rotate(-4deg);
}

.cash_two {
    left: 43px;
    bottom: 16px;
    transform: rotate(5deg);
}

.cash_three {
    left: 70px;
    bottom: 31px;
    transform: rotate(11deg);
}

.cash_text {
    position: absolute;
    top: 2px;
    right: 0;
    width: 100px;
    text-align: center;
    transform: rotate(8deg);
}

.cash_text strong {
    display: block;
    color: #9a7110;
    font-size: 20px;
    font-weight: 900;
}

.cash_text span {
    color: #555555;
    font-size: 8px;
    font-weight: 800;
}


/* FRIDGE */

.prize_fridge {
    position: absolute;
    right: 20px;
    bottom: 125px;
    width: 105px;
    height: 190px;
    animation: fridgeFloat 4.2s ease-in-out infinite;
}

.fridge_top {
    position: absolute;
    inset: 0;
    border-radius: 11px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #dedede 55%,
        #aaaaaa
    );
    border: 2px solid #cccccc;
    box-shadow: 15px 18px 35px rgba(0, 0, 0, 0.12);
}

.fridge_screen {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 12px;
    height: 65px;
    border-bottom: 1px solid #cccccc;
}

.fridge_handle {
    position: absolute;
    right: 11px;
    top: 35px;
    width: 4px;
    height: 80px;
    border-radius: 10px;
    background: #888888;
}


/* AC */

.prize_ac {
    position: absolute;
    right: 95px;
    top: 28px;
    width: 135px;
    height: 68px;
    animation: acFloat 5s ease-in-out infinite;
}

.ac_body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #dddddd
    );
    border: 2px solid #cccccc;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.ac_body::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 11px;
    height: 6px;
    border-radius: 5px;
    background: #aaaaaa;
}

.ac_body span {
    color: #333333;
    font-size: 10px;
    font-weight: 900;
}


/* PARTICLES */

.hero_particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero_particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c99a20;
    box-shadow: 0 0 12px rgba(201, 154, 32, 0.55);
    animation: particleRise 6s linear infinite;
}

.hero_particles span:nth-child(1) {
    left: 10%;
    bottom: 0;
}

.hero_particles span:nth-child(2) {
    left: 25%;
    bottom: 10%;
    animation-delay: 2s;
}

.hero_particles span:nth-child(3) {
    left: 42%;
    bottom: 0;
    animation-delay: 4s;
}

.hero_particles span:nth-child(4) {
    left: 60%;
    bottom: 5%;
    animation-delay: 1s;
}

.hero_particles span:nth-child(5) {
    left: 72%;
    bottom: 0;
    animation-delay: 3s;
}

.hero_particles span:nth-child(6) {
    left: 84%;
    bottom: 10%;
    animation-delay: 5s;
}

.hero_particles span:nth-child(7) {
    left: 92%;
    bottom: 0;
    animation-delay: 2.5s;
}

.hero_particles span:nth-child(8) {
    left: 38%;
    bottom: 15%;
    animation-delay: 1.5s;
}

.floating_gold {
    position: absolute;
    color: #c99a20;
    font-size: 11px;
    text-shadow: 0 0 15px rgba(201, 154, 32, 0.40);
    animation: goldFloat 4s ease-in-out infinite;
}

.gold_one {
    left: 18%;
    top: 120px;
}

.gold_two {
    right: 8%;
    top: 220px;
    animation-delay: 1s;
}

.gold_three {
    left: 10%;
    bottom: 190px;
    animation-delay: 2s;
}

.gold_four {
    right: 22%;
    top: 55%;
    animation-delay: 0.5s;
}


/* DRAWS */

.draws_section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(201, 154, 32, 0.06),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(201, 154, 32, 0.06),
            transparent 25%
        ),
        #ffffff;
}

.draws_section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -350px;
    top: -300px;
    border: 1px solid rgba(201, 154, 32, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(201, 154, 32, 0.025),
        0 0 0 120px rgba(201, 154, 32, 0.018);
    animation: rotateRing 20s linear infinite;
}

.draws_section::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -300px;
    bottom: -300px;
    border: 1px solid rgba(201, 154, 32, 0.12);
    border-radius: 50%;
    animation: rotateRingReverse 20s linear infinite;
}

.draws_section > * {
    position: relative;
    z-index: 5;
}


/* SECTION */

.section_heading {
    position: relative;
    width: min(900px, calc(100% - 40px));
    margin: 0 auto 55px;
    text-align: center;
}

.section_label {
    color: #b48613;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section_heading h2 {
    margin-top: 15px;
    color: #111111;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section_heading p {
    max-width: 720px;
    margin: 17px auto 0;
    color: #707070;
    font-size: 14px;
    line-height: 1.7;
}


/* CARDS */

.draw_cards {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.draw_card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    transition: 0.4s ease;
}

.draw_card:hover {
    transform: translateY(-9px);
    border-color: #c99a20;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.11),
        0 0 35px rgba(201, 154, 32, 0.08);
}

.draw_image {
    position: relative;
    height: 285px;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 32, 0.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #ffffff,
            #f1f1f1
        );
}

.draw_image::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 154, 32, 0.35);
    border-radius: 50%;
    animation: pulseRing 3s ease-in-out infinite;
}

.draw_image img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.draw_card:hover .draw_image img {
    transform: scale(1.06);
}

.no_prize_image {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no_prize_image span {
    font-size: 68px;
    filter:
        drop-shadow(0 0 15px rgba(201, 154, 32, 0.35))
        drop-shadow(0 0 35px rgba(201, 154, 32, 0.12));
    animation: trophyFloat 3s ease-in-out infinite;
}

.no_prize_image small {
    margin-top: 12px;
    color: #888888;
    font-size: 9px;
    letter-spacing: 2px;
}

.draw_image_badge {
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 15px;
    padding: 7px 11px;
    border: 1px solid #c99a20;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.92);
    color: #9a7110;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.draw_content {
    position: relative;
    z-index: 5;
    padding: 24px;
}

.draw_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.draw_card_top span {
    color: #888888;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.draw_card h3 {
    margin-top: 8px;
    color: #111111;
    font-size: 22px;
}

.draw_description {
    min-height: 50px;
    margin-top: 8px;
    color: #707070;
    font-size: 12px;
    line-height: 1.7;
}

.draw_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px solid #eeeeee;
}

.draw_details div {
    display: flex;
    flex-direction: column;
}

.draw_details span,
.draw_date span {
    color: #888888;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.draw_details strong {
    margin-top: 4px;
    color: #111111;
    font-size: 16px;
}

.draw_date {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.draw_date strong {
    margin-top: 4px;
    color: #b48613;
    font-size: 10px;
}

.draw_btn {
    width: 100%;
    min-height: 50px;
    margin-top: 20px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 9px;
    background: linear-gradient(
        100deg,
        #f0d267,
        #c9971b
    );
    color: #111111;
    font-size: 12px;
    font-weight: 900;
    transition: 0.3s ease;
}

.draw_btn:hover {
    box-shadow: 0 12px 30px rgba(201, 154, 32, 0.20);
}

.draw_btn span {
    font-size: 20px;
    transition: 0.3s ease;
}

.draw_btn:hover span {
    transform: translateX(5px);
}


/* STATS */

.stats_section {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.stats_grid {
    width: min(1180px, calc(100% - 40px));
    min-height: 130px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid #eeeeee;
}

.stat_item:last-child {
    border-right: 0;
}

.stat_icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 154, 32, 0.25);
    border-radius: 12px;
    background: rgba(201, 154, 32, 0.07);
}

.stat_item div:last-child {
    display: flex;
    flex-direction: column;
}

.stat_item strong {
    color: #111111;
    font-size: 11px;
}

.stat_item span {
    margin-top: 3px;
    color: #888888;
    font-size: 9px;
}


/* HOW */

.how_section {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(201, 154, 32, 0.06),
            transparent 30%
        ),
        #fafafa;
}

.home_section {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    padding: 95px 0;
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step_card {
    padding: 25px;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.045);
    transition: 0.35s ease;
}

.step_card:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 154, 32, 0.50);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.step_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step_number {
    color: #b48613;
    font-size: 10px;
    font-weight: 900;
}

.step_icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 154, 32, 0.08);
}

.step_card h3 {
    margin-top: 19px;
    color: #111111;
    font-size: 16px;
}

.step_card p {
    margin-top: 8px;
    color: #777777;
    font-size: 11px;
    line-height: 1.7;
}


/* WINNERS */

.winner_section {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.winner_cards {
    width: min(1000px, calc(100% - 40px));
    margin: auto;
    display: grid;
    gap: 14px;
}

.winner_card {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 19px;
    border: 1px solid #e4e4e4;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
}

.winner_avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(201, 154, 32, 0.08);
    font-size: 22px;
}

.winner_info span,
.winner_prize span {
    color: #888888;
    font-size: 9px;
    text-transform: uppercase;
}

.winner_info h3 {
    margin-top: 3px;
    color: #111111;
    font-size: 16px;
}

.winner_info p {
    color: #777777;
    font-size: 10px;
}

.winner_info strong {
    display: inline-block;
    margin-top: 4px;
    color: #b48613;
    font-size: 9px;
}

.winner_prize {
    min-width: 150px;
    padding-left: 20px;
    border-left: 1px solid #eeeeee;
}

.winner_prize strong {
    display: block;
    margin-top: 4px;
    color: #b48613;
    font-size: 12px;
}

.winner_empty {
    padding: 65px 20px;
    text-align: center;
    border: 1px dashed rgba(201, 154, 32, 0.40);
    border-radius: 17px;
    background: #fffdf7;
}

.winner_empty div {
    font-size: 48px;
}

.winner_empty h3 {
    margin-top: 10px;
    color: #111111;
    font-size: 21px;
}

.winner_empty p {
    margin-top: 5px;
    color: #777777;
    font-size: 12px;
}


/* TRUST */

.trust_section {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(201, 154, 32, 0.06),
            transparent 30%
        ),
        #fafafa;
    border-top: 1px solid #eeeeee;
}

.trust_content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 60px;
}

.trust_text h2 {
    max-width: 650px;
    margin-top: 10px;
    color: #111111;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.trust_text p {
    max-width: 600px;
    margin-top: 15px;
    color: #707070;
    font-size: 13px;
    line-height: 1.7;
}

.trust_features {
    display: grid;
    gap: 11px;
}

.trust_features div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 11px;
    background: #ffffff;
}

.trust_features span {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 154, 32, 0.09);
    color: #b48613;
}

.trust_features strong {
    color: #222222;
    font-size: 10px;
}


/* CTA */

.cta_section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 255, 255, 0.55),
            transparent 28%
        ),
        linear-gradient(
            110deg,
            #d6b54f,
            #f1d36a,
            #c9971b
        );
}

.cta_section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -300px;
    top: -250px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.cta_content {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 40px));
    min-height: 290px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta_text .section_label {
    color: #55420b;
}

.cta_text h2 {
    max-width: 680px;
    margin-top: 8px;
    color: #15120a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.cta_text p {
    max-width: 600px;
    margin-top: 10px;
    color: rgba(21, 18, 10, 0.65);
    font-size: 13px;
}

.cta_buttons {
    display: flex;
    gap: 10px;
}

.cta_buttons .btn {
    background: #111111;
    color: #ffffff;
}

.outline_light_btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.40);
    border-radius: 9px;
    color: #111111;
    font-size: 11px;
    font-weight: 900;
}


/* FOOTER */

footer {
    width: 100%;
    padding: 30px 20px;
    background: #111111;
    border-top: 1px solid #222222;
    color: #bbbbbb;
    text-align: center;
    font-size: 11px;
}

footer strong {
    color: #d5b34e;
}


/* COMMON FOR BASIC PAGES */

.page_section {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    padding: 80px 0;
}

.page_title {
    color: #111111;
    font-size: clamp(35px, 5vw, 58px);
    font-weight: 900;
}

.page_text {
    color: #666666;
    line-height: 1.8;
}

.form_card,
.dashboard_card,
.admin_card {
    background: #ffffff;
    border: 1px solid #e4e4e4;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}


/* ANIMATIONS */

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldMove {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRingReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes prizeFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

@keyframes cashFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fridgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

@keyframes acFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes trophyFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes goldFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(90deg);
    }
}

@keyframes particleRise {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-650px);
        opacity: 0;
    }
}

@keyframes pulseRing {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1;
    }
}


/* TABLET */

@media (max-width: 1050px) {

    .main_nav {
        display: none;
    }

    header nav {
        display: none;
    }

    .home_hero_content {
        grid-template-columns: 1fr 1fr;
    }

    .hero_text h1 {
        font-size: 60px;
    }

    .hero_visual {
        transform: scale(0.82);
        transform-origin: center right;
    }

    .draw_cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat_item:nth-child(2) {
        border-right: 0;
    }

    .trust_content {
        grid-template-columns: 1fr;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .header_inner,
    header .container {
        width: calc(100% - 25px);
        min-height: 65px;
    }

    .main_nav,
    header nav {
        display: none;
    }

    .site_logo,
    header h1 {
        font-size: 17px;
    }

    .header_login,
    .header_register {
        min-height: 35px;
        padding: 0 10px;
        font-size: 9px;
    }

    .home_hero {
        min-height: auto;
    }

    .home_hero_content {
        width: calc(100% - 25px);
        min-height: auto;
        padding: 65px 0 25px;
        display: flex;
        flex-direction: column;
    }

    .hero_text {
        text-align: center;
    }

    .hero_badge {
        font-size: 8px;
    }

    .hero_text h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero_text > p {
        font-size: 12px;
    }

    .hero_buttons {
        justify-content: center;
    }

    .hero_btn,
    .hero_btn_secondary {
        width: 100%;
    }

    .hero_points {
        justify-content: center;
        gap: 12px;
    }

    .hero_point {
        flex-direction: column;
        gap: 5px;
    }

    .hero_point div:last-child {
        align-items: center;
    }

    .hero_participants {
        justify-content: center;
    }

    .hero_visual {
        width: 100%;
        height: 410px;
        margin-top: 0;
        transform: scale(0.66);
        transform-origin: center center;
    }

    .draws_section {
        padding: 70px 0;
    }

    .section_heading {
        width: calc(100% - 30px);
        margin-bottom: 38px;
    }

    .section_heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .section_heading p {
        font-size: 12px;
    }

    .draw_cards {
        width: calc(100% - 30px);
        grid-template-columns: 1fr;
    }

    .draw_image {
        height: 260px;
    }

    .home_section {
        width: calc(100% - 30px);
        padding: 70px 0;
    }

    .stats_grid {
        width: calc(100% - 30px);
        grid-template-columns: 1fr;
    }

    .stat_item {
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
    }

    .stat_item:last-child {
        border-bottom: 0;
    }

    .steps_grid {
        grid-template-columns: 1fr;
    }

    .winner_cards {
        width: calc(100% - 30px);
    }

    .winner_card {
        grid-template-columns: 55px 1fr;
    }

    .winner_avatar {
        width: 55px;
        height: 55px;
    }

    .winner_prize {
        grid-column: 1 / -1;
        min-width: 0;
        padding: 13px 0 0;
        border-left: 0;
        border-top: 1px solid #eeeeee;
    }

    .cta_content {
        width: calc(100% - 30px);
        min-height: auto;
        padding: 65px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta_buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta_buttons .btn,
    .outline_light_btn {
        width: 100%;
    }
}


/* SMALL MOBILE */

@media (max-width: 430px) {

    .header_inner,
    header .container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }

    .site_logo,
    header h1 {
        width: 100%;
        justify-content: center;
    }

    .hero_text h1 {
        font-size: 41px;
    }

    .hero_visual {
        height: 350px;
        transform: scale(0.54);
    }

    .draw_content {
        padding: 20px;
    }

    .draw_image {
        height: 240px;
    }
}


/* FINAL JEETO PAKISTAN LOGO */

.site_header .header_inner {
    min-height: 88px !important;
    height: 88px !important;
}

.site_header .site_logo {
    width: 150px !important;
    height: 62px !important;
    max-width: 150px !important;
    max-height: 62px !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

.site_header .site_logo img,
.site_header .site_logo_image {
    width: 150px !important;
    height: 62px !important;
    max-width: 150px !important;
    max-height: 62px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 900px) {
    .site_header .header_inner {
        min-height: 82px !important;
        height: 82px !important;
    }

    .site_header .site_logo {
        width: 140px !important;
        height: 58px !important;
        max-width: 140px !important;
        max-height: 58px !important;
    }

    .site_header .site_logo img,
    .site_header .site_logo_image {
        width: 140px !important;
        height: 58px !important;
        max-width: 140px !important;
        max-height: 58px !important;
    }
}

@media (max-width: 700px) {
    .site_header .header_inner {
        min-height: 74px !important;
        height: 74px !important;
    }

    .site_header .site_logo {
        width: 125px !important;
        height: 52px !important;
        max-width: 125px !important;
        max-height: 52px !important;
    }

    .site_header .site_logo img,
    .site_header .site_logo_image {
        width: 125px !important;
        height: 52px !important;
        max-width: 125px !important;
        max-height: 52px !important;
    }
}

@media (max-width: 430px) {
    .site_header .site_logo {
        width: 115px !important;
        height: 48px !important;
        max-width: 115px !important;
        max-height: 48px !important;
    }

    .site_header .site_logo img,
    .site_header .site_logo_image {
        width: 115px !important;
        height: 48px !important;
        max-width: 115px !important;
        max-height: 48px !important;
    }
}
