*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;

    background:
    radial-gradient(
        circle at 50% 20%,
        rgba(212,175,55,0.12),
        transparent 30%
    ),

    radial-gradient(
        circle at 80% 60%,
        rgba(212,175,55,0.08),
        transparent 40%
    ),

    radial-gradient(
        circle at 20% 80%,
        rgba(212,175,55,0.06),
        transparent 35%
    ),

    #050505;

    color:white;
    overflow-x:hidden;
}

.container{
    width:92%;
    max-width:1400px;
    margin:0 auto;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:10;
    padding:22px 0;
    background:rgba(5,5,5,0.75);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(212,175,55,0.18);
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#D4AF37;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:44px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
    opacity:0.85;
}

nav a:hover{
    color:#D4AF37;
}

.header-btn{
    padding:14px 28px;
    border:1px solid #D4AF37;
    background:transparent;
    color:white;
    border-radius:6px;
    font-size:18px;
    cursor:pointer;
}

.hero{
    min-height:100vh;
    padding-top:20px;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-content{
    display:grid;
    grid-template-columns:42% 58%;
    align-items:center;
    gap:20px;
}

.hero-text{
    position:relative;
    z-index:2;
}

.hero-text h1{
    font-size:72px;
    line-height:1.08;
    text-transform:uppercase;
    margin-bottom:28px;
    letter-spacing:1px;
}

.hero-text h1 span{
    color:#D4AF37;
}

.hero-text p{
    font-size:23px;
    line-height:1.6;
    color:#d0d0d0;
    max-width:560px;
    margin-bottom:36px;
}

.main-btn{
    padding:20px 44px;
    border:none;
    border-radius:7px;
    background:linear-gradient(135deg, #E6C766, #D4AF37);
    color:#090909;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 18px 45px rgba(212,175,55,0.25);
}

.features{
    display:flex;
    gap:50px;
    margin-top:60px;
}

.features div strong{
    display:block;
    font-size:36px;
    color:#D4AF37;
    margin-bottom:12px;
}

.features p{
    font-size:18px;
    line-height:1.35;
    color:white;
    margin:0;
}

.hero-image{
    position:relative;
    z-index:1;
}

.hero-image img{
    width:100%;
    display:block;
    filter:drop-shadow(0 40px 80px rgba(212,175,55,0.25));
}

/* MOBILE */
@media(max-width:900px){
    .header{
        position:relative;
    }

    .header-content{
        flex-direction:column;
        gap:18px;
    }

    nav{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-btn{
        display:none;
    }

    .hero{
        padding-top:10px;
    }

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:42px;
    }

    .hero-text p{
        font-size:18px;
    }

    .main-btn{
        width:100%;
    }

    .features{
        gap:20px;
        justify-content:space-between;
        margin-top:35px;
    }

    .features div strong{
        font-size:28px;
    }

    .features p{
        font-size:15px;
    }

    .hero-image{
        margin-top:30px;
    }
@media(max-width:900px){
    .hero-image{
        order:-1;
        margin-top:0;
    }
}

}
html{
    scroll-behavior:smooth;
}

.main-btn{
    display:inline-block;
    text-decoration:none;
    text-align:center;
}

.box-select{
    padding:90px 0;
    background:transparent;
    color:white;
    position:relative;
    z-index:2;
}

.box-select-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 45px;
}

.section-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 16px;
    border:1px solid rgba(212,175,55,0.35);
    border-radius:999px;
    color:#D4AF37;
    font-size:13px;
    letter-spacing:1.5px;
}

.box-select h2{
    font-size:48px;
    line-height:1.1;
    margin-bottom:18px;
}

.box-select p{
    color:#b7b7b7;
    font-size:19px;
    line-height:1.6;
}

.box-list{
    width:100%;
    max-width:760px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:16px;
}
.box-item{
    width:100%;
}

.box-option{
    width:100%;
}

.box-option{
    width:100%;
    padding:22px 24px;
    border:1px solid rgba(212,175,55,0.24);
    border-radius:18px;
    background:linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    transition:0.25s;
}

.box-option:hover{
    transform:translateY(-3px);
    border-color:rgba(212,175,55,0.75);
    box-shadow:0 18px 45px rgba(212,175,55,0.16);
}

.box-left{
    display:flex;
    align-items:center;
    gap:18px;
    text-align:left;
}

.box-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,0.12);
    border:1px solid rgba(212,175,55,0.25);
    font-size:24px;
}

.box-option strong{
    display:block;
    font-size:22px;
    margin-bottom:6px;
}

.box-option small{
    display:block;
    color:#aaa;
    font-size:15px;
}

.box-arrow{
    font-size:38px;
    color:#D4AF37;
    line-height:1;
}

.box-option.silver{
    border-color:rgba(192,192,192,0.25);
}

.box-option.gold{
    border-color:rgba(212,175,55,0.35);
}

.box-option.diamond{
    border-color:rgba(127,219,255,0.35);
}

.box-option.platinum{
    border-color:rgba(229,228,226,0.35);
}

@media(max-width:768px){
    .box-select{
        padding:70px 0;
    }

    .box-select h2{
        font-size:34px;
    }

    .box-select p{
        font-size:16px;
    }

    .box-option{
        padding:18px;
        border-radius:15px;
    }

    .box-icon{
        width:42px;
        height:42px;
        border-radius:12px;
    }

    .box-option strong{
        font-size:19px;
    }

    .box-option small{
        font-size:13px;
    }

    .box-arrow{
        font-size:30px;
    }
}
.box-item{
    border-radius:18px;
}

.box-details{
    display:none;
    margin-top:-6px;
    padding:24px;
    border:1px solid rgba(212,175,55,0.24);
    border-top:none;
    border-radius:0 0 18px 18px;
    background:rgba(255,255,255,0.035);
    justify-content:space-between;
    gap:30px;
    align-items:center;
}

.box-details h3{
    font-size:24px;
    margin-bottom:10px;
    color:#D4AF37;
}

.box-details p{
    font-size:16px;
    line-height:1.6;
    color:#cfcfcf;
    max-width:520px;
}

.box-price{
    min-width:130px;
    text-align:right;
    font-size:28px;
    font-weight:700;
    color:#D4AF37;
}

.box-item.active .box-details{
    display:flex;
}

.box-item.active .box-option{
    border-radius:18px 18px 0 0;
    border-color:rgba(212,175,55,0.75);
}

.box-item.active .box-arrow{
    transform:rotate(90deg);
}

.box-arrow{
    transition:0.25s;
}

@media(max-width:768px){
    .box-item.active .box-details{
        display:block;
    }

    .box-price{
        text-align:left;
        margin-top:18px;
        font-size:26px;
    }
}
.price-box{
    margin-top:24px;
    padding:18px;
    border-radius:16px;
    background:rgba(212,175,55,0.07);
    border:1px solid rgba(212,175,55,0.22);
}

.price-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:10px;
}

.box-price{
    font-size:42px;
    line-height:1;
    font-weight:800;
    color:#D4AF37;
}

.old-price{
    padding-top:10px;
    color:#a72323;
    font-size:50px;
    font-weight:600;
    text-decoration:line-through;
    opacity:0.9;
}

.discount-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(212,175,55,0.15);
    color:#E6C766;
    font-size:14px;
    font-weight:700;
}

.order-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:13px 24px;
    border-radius:12px;
    text-decoration:none;
    background:linear-gradient(135deg,#E6C766,#D4AF37);
    color:#111;
    font-weight:800;
}
.order-section{
    padding:90px 0;
    background:transparent;
    color:white;
}

.order-box{
    max-width:760px;
    margin:0 auto;
    padding:32px;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(212,175,55,0.24);
}

.order-header{
    text-align:center;
    margin-bottom:35px;
}

.order-header h2{
    font-size:42px;
    margin-bottom:14px;
}

.order-header p{
    color:#b7b7b7;
    font-size:17px;
    line-height:1.5;
}

.order-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.order-form label{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:#D4AF37;
    font-size:15px;
    font-weight:700;
}

.order-form input{
    width:100%;
    padding:16px 18px;
    border-radius:12px;
    border:1px solid rgba(212,175,55,0.25);
    background:#101010;
    color:white;
    font-size:16px;
    outline:none;
}

.order-form input:focus{
    border-color:#D4AF37;
}

.order-form input[readonly]{
    color:#D4AF37;
    font-weight:700;
}

.rules-check{
    flex-direction:row !important;
    align-items:flex-start;
    gap:12px !important;
    color:#b7b7b7 !important;
    font-size:14px !important;
    font-weight:400 !important;
    line-height:1.4;
}

.rules-check input{
    width:18px;
    height:18px;
    margin-top:2px;
    accent-color:#D4AF37;
}

.submit-btn{
    margin-top:8px;
    padding:16px 24px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#E6C766,#D4AF37);
    color:#111;
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    transition:0.25s;
}

.submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 35px rgba(212,175,55,0.25);
}

@media(max-width:768px){
    .order-section{
        padding:70px 0;
    }

    .order-box{
        padding:24px;
        border-radius:20px;
    }

    .order-header h2{
        font-size:34px;
    }
}
.prizes-section{
    padding:100px 0;
    background:transparent;
    color:white;
    position:relative;
    z-index:2;
}

.prizes-header{
    max-width:780px;
    margin:0 auto 55px;
    text-align:center;
}

.prizes-header h2{
    font-size:46px;
    line-height:1.1;
    margin-bottom:18px;
}

.prizes-header p{
    font-size:18px;
    line-height:1.6;
    color:#b7b7b7;
}

.main-prizes-title{
    width:max-content;
    margin:0 auto 38px;
    padding:12px 28px;

    border-radius:999px;
    border:1px solid rgba(212,175,55,0.45);

    color:#D4AF37;
    font-size:22px;
    font-weight:900;
    letter-spacing:1.5px;

    background:rgba(212,175,55,0.08);
    box-shadow:0 0 35px rgba(212,175,55,0.08);
}

.main-prizes-grid{
    max-width:1050px;
    margin:0 auto 70px;

    display:grid;
    grid-template-columns:1fr 1.25fr 1fr;
    align-items:center;
    gap:24px;
}

.main-prize-card{
    border-radius:26px;
    border:1px solid rgba(212,175,55,0.24);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.02)
        );

    padding:26px;
    text-align:center;

    transition:0.3s;
}

.main-prize-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,175,55,0.65);
    box-shadow:0 22px 55px rgba(212,175,55,0.14);
}

.center-prize{
    padding:36px 30px;
    transform:scale(1.06);
    border-color:rgba(212,175,55,0.55);
    box-shadow:0 25px 80px rgba(212,175,55,0.12);
}

.center-prize:hover{
    transform:scale(1.06) translateY(-6px);
}

.prize-image-placeholder{
    height:190px;
    margin-bottom:22px;

    border-radius:22px;
    border:1px solid rgba(212,175,55,0.18);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:72px;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.22),
            rgba(255,255,255,0.03) 60%
        );
}

.prize-image-placeholder.big{
    height:250px;
    font-size:96px;
}

.main-prize-card h3{
    font-size:26px;
    margin-bottom:10px;
}

.main-prize-card p{
    color:#b7b7b7;
    line-height:1.5;
}

.secondary-prizes-title{
    margin:0 auto 30px;
    text-align:center;

    font-size:32px;
    font-weight:800;
}

.secondary-prizes-grid{
    max-width:1050px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.secondary-prize-card{
    padding:24px;

    border-radius:22px;
    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.04);

    transition:0.3s;
}

.secondary-prize-card:hover{
    transform:translateY(-4px);
    border-color:rgba(212,175,55,0.35);
    background:rgba(212,175,55,0.06);
}

.small-prize-icon{
    width:54px;
    height:54px;
    margin-bottom:18px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    color:#D4AF37;
    background:rgba(212,175,55,0.11);
    border:1px solid rgba(212,175,55,0.2);
}

.secondary-prize-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.secondary-prize-card p{
    color:#aaa;
    line-height:1.5;
}

.secret-note{
    max-width:860px;
    margin:50px auto 0;
    padding:22px 26px;

    border-radius:20px;
    border:1px solid rgba(212,175,55,0.25);

    background:rgba(212,175,55,0.07);

    color:#e8e8e8;
    font-size:17px;
    line-height:1.6;
    text-align:center;
}

.prizes-cta{
    margin-top:45px;
    display:flex;
    justify-content:center;
}

.prizes-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:16px;
    border:1px solid #D4AF37;

    color:#D4AF37;
    text-decoration:none;

    font-size:22px;
    font-weight:900;

    transition:0.25s;
}

.prizes-btn:hover{
    background:#D4AF37;
    color:#111;
    box-shadow:0 20px 45px rgba(212,175,55,0.22);
    transform:translateY(-3px);
}

@media(max-width:900px){

    .prizes-section{
        padding:75px 0;
    }

    .prizes-header h2{
        font-size:34px;
    }

    .prizes-header p{
        font-size:16px;
    }

    .main-prizes-title{
        font-size:18px;
        padding:10px 22px;
    }

   .main-prizes-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:55px;
}

.center-prize{
    grid-column:1 / 3;
    order:-1;
}
.side-prize{
    padding:18px;
}

.side-prize .prize-image-placeholder{
    height:120px;
    font-size:48px;
}

.side-prize h3{
    font-size:20px;
}

.side-prize p{
    display:none;
}
    .center-prize{
        transform:none;
        order:-1;
    }

    .center-prize:hover{
        transform:translateY(-6px);
    }

    .prize-image-placeholder,
    .prize-image-placeholder.big{
        height:190px;
        font-size:74px;
    }

    .secondary-prizes-title{
        font-size:28px;
    }

    .secondary-prizes-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
}
.secondary-prize-card{
    padding:18px;
    text-align:center;
}

.secondary-prize-card h3{
    font-size:16px;
    margin:0;
}

.secondary-prize-card p{
    display:none;
}

.small-prize-icon{
    margin:0 auto 12px;
}

.secondary-prize-card{
    min-height:140px;
}
    .secret-note{
        font-size:15px;
        padding:18px;
    }

    .prizes-btn{
        width:100%;
        font-size:19px;
        padding:16px 24px;
    }
}
section{
    padding-top:50px !important;
    padding-bottom:50px !important;
}

@media(max-width:768px){
    section{
        padding-top:35px !important;
        padding-bottom:35px !important;
    }
}
.prize-img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
