* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #ff6333;
    --orange-dark: #ef5529;
    --navy: #202b3c;
    --muted: #596477;
    --bg: #fff3ed;
    --white: #ffffff;
    --border: #ffd8ca;
    --green: #18a957;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--navy);
    background: var(--bg);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(255, 247, 243, 0.72);
    backdrop-filter: blur(8px);
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1px;
    white-space: nowrap;
}

.logo span {
    color: #ff6333; /* MH - Orange */
}

.logo b {
    color: #6133ff; /* GAME - Purple */
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
    margin-left: auto;
}

.desktop-nav a {
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--orange);
}

.outline-btn,
.secondary-btn {
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 28px;
    font-weight: 700;
}

.nav-download {
    padding: 10px 25px;
    margin-left: 6px;
    box-shadow: 0 8px 20px rgba(255, 99, 51, 0.12);
}

.menu-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
    color: var(--navy);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: 100px;
    overflow: hidden;
    min-height: auto;
}

.hero-glow {
    display: none;
}

.hero-inner {
    width: 100%;
    min-height: auto;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-copy {
    display: none;
}

.hero-art {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-art img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: top center;
    mix-blend-mode: multiply;
}


/* =========================================
   DOWNLOAD / QUICK ACTIONS
========================================= */

.quick-actions {
    width: 100%;
    padding: 20px 0 50px;
    margin: 0;
}

.download-wide {
    display: flex;
    width: min(700px, calc(100% - 30px));
    min-height: 70px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: #ffffff;

    background: linear-gradient(
        90deg,
        #ff6937,
        #ed552a
    );

    border-radius: 17px;

    font-size: 25px;
    font-weight: 800;

    box-shadow: 0 15px 28px rgba(68, 40, 28, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.download-wide:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(68, 40, 28, 0.23);
}

.download-wide span {
    font-size: 22px;
}


/* =========================================
   CALL / WHATSAPP
========================================= */

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 34px;
}

.contact-actions a {
    width: min(300px, 100%);
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--orange);
    color: var(--orange);

    border-radius: 27px;

    font-weight: 700;
    background: #ffffff;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-actions a:hover {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   WINNERS SECTION
========================================= */

.winners-section {
    padding: 0 0 70px;
}

.winners-box {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 34px 38px 46px;
    box-shadow: 0 18px 40px rgba(75, 51, 40, 0.12);
}

.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.title-row h2 {
    color: var(--orange);
    font-size: clamp(32px, 4vw, 43px);
    line-height: 1.1;
}

.round-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ffffff;
    background: var(--orange);

    font-size: 27px;

    box-shadow: 0 8px 18px rgba(255, 99, 51, 0.2);
}

.section-heading p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 19px;
    font-weight: 600;
}


/* =========================================
   WINNER CARDS
========================================= */

.winner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.winner-card {
    position: relative;

    text-align: center;

    padding: 27px 25px 23px;

    border: 2px solid var(--border);
    border-radius: 18px;

    background: #ffffff;

    overflow: hidden;

    box-shadow: 0 8px 18px rgba(54, 35, 27, 0.06);
}

.winner-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -70px;
    right: -50px;

    border-radius: 50%;

    background: #fff5f0;
}

.winner-label {
    display: inline-flex;

    position: relative;
    z-index: 1;

    padding: 5px 15px;

    border-radius: 20px;

    color: #ffffff;
    background: var(--orange);

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 7px 13px rgba(255, 99, 51, 0.18);
}

.winner-star {
    position: relative;

    margin: 19px auto 12px;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: var(--orange);

    border-radius: 50%;

    font-size: 32px;
}

.winner-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}


/* =========================================
   AMOUNT
========================================= */

.amount,
.market {
    border-radius: 14px;
    padding: 11px;
    margin-top: 10px;
}

.amount {
    background: #effcf5;
    border: 1px solid #b7f0ce;
}

.amount strong {
    display: block;

    color: var(--green);

    font-size: 22px;
}

.amount small,
.market small {
    display: block;

    margin-top: 2px;

    font-weight: 600;
}


/* =========================================
   MARKET
========================================= */

.market {
    background: #fff8f5;
    border: 1px solid var(--border);
}

.market strong {
    display: block;

    color: var(--orange);

    font-size: 18px;

    margin-top: 3px;
}


/* =========================================
   TIME
========================================= */

.time {
    color: #737e8f;

    margin-top: 14px;

    font-size: 14px;
}


/* =========================================
   DOTS
========================================= */

.dots {
    display: flex;

    justify-content: center;

    gap: 9px;

    margin: 30px 0;
}

.dots i {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #ffd0bf;
}

.dots i.active {
    width: 52px;

    border-radius: 20px;

    background: var(--orange);
}


/* =========================================
   NEXT BOX
========================================= */

.next-box {
    text-align: center;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 31px 20px;

    background: #fff7f3;
}

.next-box h3 {
    color: var(--orange);

    font-size: 23px;

    margin-bottom: 10px;
}

.next-box p {
    color: var(--muted);

    font-size: 18px;
}


/* =========================================
   INFO SECTION
========================================= */

.info-section {
    padding: 80px 0;
}

.info-section.light {
    background: rgba(255, 255, 255, 0.55);
}

.info-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.info-section h2 {
    font-size: 42px;

    margin-bottom: 14px;
}

.info-section p {
    color: var(--muted);

    font-size: 17px;
}


/* =========================================
   STEPS
========================================= */

.steps {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.steps div {
    display: flex;

    align-items: center;

    gap: 14px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 18px;

    font-weight: 700;
}

.steps b {
    color: var(--orange);

    font-size: 20px;
}

.simple-content {
    text-align: center;

    max-width: 760px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 38px 0;

    background: #202b3c;

    color: #ffffff;
}

.footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer .logo span {
    color: var(--orange);
}

.footer p {
    color: #bfc6d0;

    margin-top: 4px;
}

.footer-links {
    display: flex;

    gap: 25px;

    color: #e4e7eb;

    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav a {
        font-size: 14px;
    }

    .nav-download {
        padding: 9px 17px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .desktop-nav,
    .nav-download {
        display: none;
    }

    .menu-btn {
        display: block;

        margin-left: auto;

        border: 0;

        background: none;

        font-size: 28px;

        color: var(--navy);
    }

    .hero {
        min-height: auto;

        padding: 0;

        margin: 0;
    }

    .hero-inner {
        width: 100%;

        min-height: auto;

        height: auto;

        padding: 0;

        margin: 0;

        display: flex;

        justify-content: center;

        align-items: flex-start;
    }

    .hero-art {
        width: 100%;

        height: auto;

        margin: 0;

        padding: 0;

        display: flex;

        justify-content: center;

        align-items: flex-start;
    }

    .hero-art img {
        display: block;

        width: 100%;

        height: auto;

        max-width: 100%;

        margin: 0;

        padding: 0;
    }

    .winner-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }

    .nav {
        min-height: 70px;
    }

    .logo {
        font-size: 25px;
    }

    .hero {
        min-height: auto;

        padding: 0;

        margin: 0;
    }

    .hero-inner {
        width: 100%;

        min-height: auto;

        margin: 0;

        padding: 0;
    }

    .hero-art {
        width: 100%;

        height: auto;

        margin: 0;

        padding: 0;
    }

    .hero-art img {
        width: 100%;

        height: auto;

        display: block;
    }

    .quick-actions {
        padding: 15px 0 40px;
    }

    .download-wide {
        width: calc(100% - 30px);

        min-height: 62px;

        font-size: 21px;

        border-radius: 15px;
    }

    .contact-actions {
        width: calc(100% - 30px);

        margin: 25px auto 0;

        gap: 10px;
    }

    .contact-actions a {
        width: 50%;

        height: 50px;

        font-size: 14px;

        border-radius: 25px;
    }

    .winners-box {
        padding: 27px 15px 34px;
    }

    .title-row h2 {
        font-size: 30px;
    }

    .round-icon {
        width: 42px;
        height: 42px;

        font-size: 22px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .info-section {
        padding: 60px 0;
    }

    .info-section h2 {
        font-size: 34px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;

        gap: 10px;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .download-wide {
        min-height: 58px;

        font-size: 19px;
    }

    .contact-actions a {
        font-size: 13px;
    }
}