/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #050505;
    --black-light: #0d0d0d;
    --black-card: #111111;

    --gold-dark: #8b6818;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-pale: #fff0a8;

    --white: #ffffff;
    --text: #eeeeee;
    --text-muted: #999999;

    --gradient-gold:
        linear-gradient(
            135deg,
            #8b6818 0%,
            #d4af37 35%,
            #f5d76e 50%,
            #d4af37 65%,
            #8b6818 100%
        );

    --gradient-dark:
        linear-gradient(
            135deg,
            #050505,
            #151515
        );

    --shadow-gold:
        0 15px 50px rgba(212, 175, 55, 0.15);

    --transition:
        all 0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Poppins', sans-serif;

    background: var(--black);

    color: var(--white);

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input {

    font-family: inherit;

}


.container {

    width: min(1180px, 92%);

    margin: auto;

}


/* =========================================================
   BACKGROUND
========================================================= */

.background-effects {

    position: fixed;

    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -1;

}


.glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.12;

}


.glow-1 {

    width: 500px;

    height: 500px;

    background: var(--gold);

    top: -250px;

    left: -150px;

}


.glow-2 {

    width: 450px;

    height: 450px;

    background: #9b6c00;

    right: -200px;

    top: 30%;

}


.glow-3 {

    width: 400px;

    height: 400px;

    background: var(--gold-light);

    left: 30%;

    bottom: -250px;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(5, 5, 5, 0.85);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(212, 175, 55, 0.15);

}


.navbar-container {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

}


.brand-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gradient-gold);

    color: var(--black);

    font-size: 20px;

    box-shadow:
        0 0 25px rgba(212, 175, 55, 0.25);

}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-main {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 2px;

}


.brand-sub {

    color: var(--gold);

    font-size: 9px;

    letter-spacing: 4px;

    margin-top: 5px;

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 35px;

}


.nav-menu a {

    position: relative;

    color: #d0d0d0;

    font-size: 13px;

    font-weight: 500;

    transition: var(--transition);

}


.nav-menu a:hover {

    color: var(--gold-light);

}


.nav-menu a::after {

    content: '';

    position: absolute;

    bottom: -8px;

    left: 50%;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: var(--transition);

    transform: translateX(-50%);

}


.nav-menu a:hover::after {

    width: 100%;

}


.menu-toggle {

    display: none;

    border: none;

    background: none;

    color: var(--gold);

    font-size: 30px;

    cursor: pointer;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    padding:
        130px
        20px
        80px;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.08),
            transparent 55%
        );

}


.hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(5, 5, 5, 0.1),
            rgba(5, 5, 5, 0.8)
        );

    pointer-events: none;

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 20px;

    border:
        1px solid
        rgba(212, 175, 55, 0.45);

    border-radius: 50px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 30px;

    background:
        rgba(212, 175, 55, 0.05);

}


.hero h1 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(55px, 8vw, 100px);

    line-height: 0.95;

    font-weight: 600;

    margin-bottom: 30px;

}


.hero h1 span {

    display: inline-block;

    background: var(--gradient-gold);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    font-style: italic;

}


.hero-description {

    max-width: 650px;

    margin: auto;

    color: #b9b9b9;

    font-size: 16px;

    line-height: 1.8;

}


.hero-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.btn-primary {

    background: var(--gradient-gold);

    color: #090909;

    border: none;

    box-shadow:
        0 8px 30px
        rgba(212, 175, 55, 0.18);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(212, 175, 55, 0.3);

}


.btn-outline {

    border:
        1px solid
        rgba(212, 175, 55, 0.6);

    color: var(--gold-light);

    background:
        rgba(212, 175, 55, 0.03);

}


.btn-outline:hover {

    background:
        rgba(212, 175, 55, 0.1);

    transform: translateY(-3px);

}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown-wrapper {

    margin-top: 55px;

}


.countdown-title {

    color: #999;

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 18px;

}


.countdown {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}


.countdown-item {

    width: 90px;

    height: 90px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    border:
        1px solid
        rgba(212, 175, 55, 0.2);

    background:
        rgba(255, 255, 255, 0.02);

    border-radius: 8px;

}


.countdown-item span {

    font-size: 30px;

    font-weight: 600;

    color: var(--gold-light);

}


.countdown-item small {

    font-size: 8px;

    color: #777;

    letter-spacing: 1px;

}


.countdown-separator {

    color: var(--gold);

    font-size: 25px;

}


/* =========================================================
   HERO HEARTS
========================================================= */

.hero-hearts span {

    position: absolute;

    color: var(--gold);

    opacity: 0.12;

    font-size: 20px;

    animation: floatingHeart 8s infinite ease-in-out;

}


.hero-hearts span:nth-child(1) {

    left: 10%;

    top: 25%;

    font-size: 35px;

}


.hero-hearts span:nth-child(2) {

    right: 12%;

    top: 20%;

    font-size: 25px;

    animation-delay: 2s;

}


.hero-hearts span:nth-child(3) {

    left: 20%;

    bottom: 20%;

    font-size: 20px;

    animation-delay: 4s;

}


.hero-hearts span:nth-child(4) {

    right: 20%;

    bottom: 25%;

    font-size: 40px;

    animation-delay: 1s;

}


.hero-hearts span:nth-child(5) {

    left: 50%;

    top: 15%;

    font-size: 15px;

    animation-delay: 3s;

}


@keyframes floatingHeart {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0);

    }

    50% {

        transform:
            translateY(-25px)
            rotate(10deg);

    }

}


/* =========================================================
   SCROLL
========================================================= */

.scroll-indicator {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #666;

    font-size: 8px;

    letter-spacing: 2px;

}


.scroll-indicator i {

    color: var(--gold);

    animation: bounce 1.5s infinite;

}


@keyframes bounce {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(5px);

    }

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 110px 0;

}


.section-header {

    text-align: center;

    max-width: 700px;

    margin:
        0 auto 60px;

}


.section-label {

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

}


.section-label i {

    margin-right: 6px;

}


.section-header h2 {

    margin-top: 15px;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(42px, 6vw, 65px);

    font-weight: 600;

}


.section-header h2 span {

    color: var(--gold);

    font-style: italic;

}


.section-header p {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.8;

    margin-top: 15px;

}


/* =========================================================
   PRIZES
========================================================= */

.prizes-section {

    background:
        linear-gradient(
            180deg,
            #050505,
            #0a0a0a
        );

}


.prizes-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.prize-card {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0d0d0d
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-radius: 10px;

    transition: var(--transition);

}


.prize-card:hover {

    transform: translateY(-10px);

    border-color:
        rgba(212, 175, 55, 0.4);

    box-shadow: var(--shadow-gold);

}


.prize-card.featured {

    border-color:
        rgba(212, 175, 55, 0.4);

}


.prize-number {

    position: absolute;

    top: 18px;

    right: 18px;

    z-index: 2;

    font-size: 10px;

    color: var(--gold);

    letter-spacing: 2px;

}


.prize-image {

    height: 240px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.15),
            transparent 65%
        );

}


.prize-placeholder {

    width: 115px;

    height: 115px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(212, 175, 55, 0.08);

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    color: var(--gold-light);

    font-size: 45px;

}


.prize-content {

    padding: 30px;

}


.prize-tag {

    color: var(--gold);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}


.prize-content h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 30px;

    margin: 10px 0;

}


.prize-content p {

    color: #888;

    font-size: 13px;

    line-height: 1.7;

}


.prize-value {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 1px;

}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    padding: 110px 20px;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.09),
            transparent 60%
        );

    text-align: center;

}


.quote-content {

    max-width: 850px;

    margin: auto;

}


.quote-icon {

    color: var(--gold);

    font-size: 35px;

}


blockquote {

    margin: 25px 0;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(32px, 5vw, 55px);

    font-style: italic;

    line-height: 1.15;

}


.quote-decoration {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

}


.quote-decoration span {

    width: 70px;

    height: 1px;

    background: var(--gold);

    opacity: 0.5;

}


.quote-decoration i {

    color: var(--gold);

    font-size: 13px;

}


/* =========================================================
   HOW
========================================================= */

.how-section {

    background: #080808;

}


.steps {

    display: flex;

    align-items: center;

    justify-content: center;

}


.step {

    flex: 1;

    max-width: 280px;

    text-align: center;

}


.step-icon {

    position: relative;

    width: 100px;

    height: 100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    border-radius: 50%;

    color: var(--gold);

    font-size: 30px;

}


.step-icon span {

    position: absolute;

    top: -10px;

    right: -10px;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: var(--gradient-gold);

    color: #111;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 8px;

    font-weight: 700;

}


.step-content h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;

    margin-top: 25px;

}


.step-content p {

    color: #777;

    font-size: 12px;

    line-height: 1.7;

    margin-top: 8px;

}


.step-line {

    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

}


/* =========================================================
   PARTICIPATION
========================================================= */

.participation-section {

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.08),
            transparent 40%
        );

}


.participation-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.participation-info h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(45px, 5vw, 65px);

    line-height: 1;

    margin: 20px 0;

}


.participation-info h2 span {

    color: var(--gold);

    font-style: italic;

}


.participation-info > p {

    color: #888;

    line-height: 1.8;

    max-width: 480px;

}


.participation-features {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.participation-features div {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #aaa;

    font-size: 12px;

}


.participation-features i {

    color: var(--gold);

    font-size: 18px;

}


/* =========================================================
   FORM
========================================================= */

.form-card {

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0d0d0d
        );

    border:
        1px solid
        rgba(212, 175, 55, 0.25);

    border-radius: 12px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.4);

}


.form-header {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}


.form-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gradient-gold);

    color: #111;

}


.form-header h3 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 30px;

}


.form-header p {

    color: #777;

    font-size: 11px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: #aaa;

    font-size: 10px;

    font-weight: 500;

}


.input-wrapper {

    position: relative;

}


.input-wrapper i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--gold);

}


.input-wrapper input {

    width: 100%;

    height: 50px;

    padding:
        0 15px 0 45px;

    border:
        1px solid
        #292929;

    border-radius: 5px;

    outline: none;

    background: #0b0b0b;

    color: white;

    font-size: 12px;

    transition: var(--transition);

}


.input-wrapper input:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(212, 175, 55, 0.06);

}


.input-wrapper input::placeholder {

    color: #555;

}


.form-check {

    display: flex;

    gap: 10px;

    align-items: flex-start;

    margin:
        5px 0 25px;

}


.form-check input {

    accent-color: var(--gold);

    margin-top: 3px;

}


.form-check label {

    color: #777;

    font-size: 10px;

    line-height: 1.5;

}


.btn-submit {

    width: 100%;

    justify-content: space-between;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 110px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #0a0a0a,
            #12100a,
            #0a0a0a
        );

    border-top:
        1px solid
        rgba(212, 175, 55, 0.1);

}


.cta-heart {

    width: 80px;

    height: 80px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--gold);

    font-size: 30px;

    border:
        1px solid
        rgba(212, 175, 55, 0.3);

    box-shadow:
        0 0 50px
        rgba(212, 175, 55, 0.1);

}


.cta-content h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(40px, 6vw, 65px);

    margin: 25px 0 10px;

}


.cta-content h2 span {

    color: var(--gold);

    display: block;

    font-style: italic;

}


.cta-content p {

    color: #777;

    margin-bottom: 30px;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    background: #030303;

    padding: 70px 0 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

}


.footer-content {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

}


.footer-brand p {

    color: #666;

    max-width: 350px;

    font-size: 12px;

    line-height: 1.8;

    margin-top: 20px;

}


.footer-links,
.footer-social {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-links h4,
.footer-social h4 {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 5px;

}


.footer-links a {

    color: #777;

    font-size: 11px;

    transition: var(--transition);

}


.footer-links a:hover {

    color: var(--gold);

}


.social-icons {

    display: flex;

    gap: 10px;

}


.social-icons a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #252525;

    color: #888;

    border-radius: 50%;

    transition: var(--transition);

}


.social-icons a:hover {

    color: var(--black);

    background: var(--gold);

    border-color: var(--gold);

}


.footer-bottom {

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #444;

    font-size: 9px;

}


.footer-bottom i {

    color: var(--gold);

}


/* =========================================================
   MODAL
========================================================= */

.modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.8);

    backdrop-filter: blur(8px);

}


.modal-overlay.active {

    display: flex;

}


.success-modal {

    position: relative;

    max-width: 500px;

    width: 100%;

    padding: 50px 40px;

    text-align: center;

    border:
        1px solid
        rgba(212, 175, 55, 0.3);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #181818,
            #0b0b0b
        );

    animation: modalIn 0.4s ease;

}


@keyframes modalIn {

    from {

        opacity: 0;

        transform:
            translateY(30px)
            scale(0.95);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


.modal-close {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 35px;

    height: 35px;

    border: none;

    background: #222;

    color: #777;

    border-radius: 50%;

    cursor: pointer;

}


.success-icon {

    width: 80px;

    height: 80px;

    margin:
        0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gradient-gold);

    color: #111;

    font-size: 30px;

}


.success-modal h2 {

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 40px;

    margin: 15px 0;

}


.success-modal p {

    color: #888;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 25px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .nav-menu {

        position: absolute;

        top: 82px;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        background: #080808;

        border-bottom:
            1px solid
            rgba(212, 175, 55, 0.15);

    }


    .nav-menu.active {

        display: flex;

    }


    .menu-toggle {

        display: block;

    }


    .prizes-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .prize-card:last-child {

        grid-column:
            1 / -1;

        max-width: 500px;

        width: 100%;

        margin: auto;

    }


    .participation-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .participation-info {

        text-align: center;

    }


    .participation-info > p {

        margin: auto;

    }


    .participation-features {

        align-items: center;

    }


    .footer-content {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 600px) {

    .navbar-container {

        height: 70px;

    }


    .nav-menu {

        top: 70px;

    }


    .hero {

        padding-top: 120px;

    }


    .hero h1 {

        font-size: 58px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .countdown {

        gap: 5px;

    }


    .countdown-item {

        width: 65px;

        height: 70px;

    }


    .countdown-item span {

        font-size: 22px;

    }


    .countdown-item small {

        font-size: 6px;

    }


    .countdown-separator {

        font-size: 18px;

    }


    .section {

        padding: 80px 0;

    }


    .prizes-grid {

        grid-template-columns: 1fr;

    }


    .prize-card:last-child {

        grid-column: auto;

    }


    .steps {

        flex-direction: column;

        gap: 30px;

    }


    .step-line {

        width: 1px;

        height: 50px;

    }


    .form-card {

        padding: 25px 20px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .footer-content {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }


    blockquote {

        font-size: 35px;

    }

}
.btn:disabled {

    opacity: 0.6;

    cursor: not-allowed;

    transform: none !important;

}