*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    background:#080808;
    color:white;
    font-family:Arial, sans-serif;
}


html{
    scroll-behavior:smooth;
}


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


/* HEADER */

.header{
    background:#111;
    padding:20px 15px;
    text-align:center;
    border-bottom:2px solid gold;
    position:sticky;
    top:0;
    z-index:1000;
}

.header h1{
    color:gold;
    margin:0;
    font-size:32px;
}


nav{
    margin-top:15px;
}

nav a{
    color:white;
    margin:10px;
    font-size:16px;
}

nav a:hover{
    color:gold;
}



/* HERO */

.hero{
    text-align:center;
    padding:80px 20px;
    background:#111;
    border-bottom:2px solid #333;
}


.hero-content h1{
    color:#ff0000;
    font-size:40px;
}


.hero-content h2{
    font-size:28px;
}


.hero-content p{
    color:#ccc;
    font-size:18px;
    max-width:600px;
    margin:auto;
}


.hero-buttons{
    margin-top:30px;
}



/* BUTTONS */

button{
    border:none;
    padding:14px 25px;
    border-radius:25px;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}


.vip-btn{
    background:#b30000;
    color:white;
}


.vip-btn:hover{
    background:red;
    transform:scale(1.05);
}


.hero-btn{
    background:#333;
    color:white;
}


.hero-btn:hover{
    background:#555;
}



/* SECTIONS */

section{
    padding:30px 15px;
}


section h2{
    text-align:center;
    color:gold;
}



/* VIDEO CARDS */

.video-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}


.video-card{
    position:relative;
    background:#111;
    border:1px solid #333;
    border-radius:15px;
    overflow:hidden;
    width:350px;
    padding:20px;
    transition:.3s;
}


.video-card:hover{
    transform:translateY(-8px);
    border-color:gold;
}


.video-card img{
    width:100%;
    border-radius:12px;
}


.video-card h3{
    color:gold;
}


.video-card p{
    color:#ccc;
}


video{
    width:100%;
    border-radius:12px;
}



.thumbnail{
    width:100%;
    border-radius:12px;
}



/* VIP */

.vip-card{
    border:2px solid #222;
}


.vip-card:hover{
    border-color:red;
    box-shadow:0 0 20px rgba(255,0,0,.5);
}


.vip-card img:hover{
    transform:scale(1.05);
}


.vip-lock{
    color:#ffcc00;
    font-weight:bold;
}


.new-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:red;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
}



/* VIP HERO */

.vip-hero{
    text-align:center;
    padding:50px 20px;
}


.vip-hero h1{
    color:red;
}


.vip-benefits{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}


.benefit-box{
    background:#1b1b1b;
    width:250px;
    padding:20px;
    border-radius:15px;
    border:1px solid #333;
}


.benefit-box h3{
    color:#ffcc00;
}



/* VIP STATS */

.vip-stats{
    text-align:center;
}


.stats-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}


.stat-box{
    background:#1b1b1b;
    width:180px;
    padding:20px;
    border-radius:15px;
    border:2px solid #333;
}


.stat-box h3{
    color:red;
    font-size:28px;
}


.stats-link{
    color:white;
}



/* PAYMENT */

.payment-hero{
    text-align:center;
}


.plans{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}


.plan-card{
    background:#1b1b1b;
    width:260px;
    padding:25px;
    text-align:center;
    border-radius:16px;
    border:2px solid #333;
}


.plan-card:hover{
    transform:translateY(-8px);
    border-color:red;
}


.popular{
    border-color:gold;
}


.popular-badge{
    background:gold;
    color:black;
    padding:6px 12px;
    border-radius:20px;
}



.payment-card{
    background:#1b1b1b;
    padding:20px;
    margin:20px auto;
    max-width:400px;
    border-radius:15px;
    border:1px solid #333;
}



.instructions{
    text-align:center;
}



/* AGE PAGE */

.age-box{
    max-width:700px;
    margin:50px auto;
    padding:25px;
    text-align:center;
}


.age-box h1{
    color:gold;
}


.age-box p{
    color:#ddd;
    line-height:1.6;
}


.btn-enter{
    background:gold;
    color:black;
}


.btn-exit{
    background:red;
    color:white;
}



/* FOOTER */

.footer{
    text-align:center;
    background:#111;
    padding:35px 20px;
    margin-top:40px;
    border-top:2px solid gold;
}


.footer h2,
.footer h3{
    color:gold;
}


.footer p{
    color:#ccc;
}


.footer-links a{
    margin:10px;
}



/* MOBILE */

@media(max-width:600px){

.header h1{
    font-size:26px;
}


.hero-content h1{
    font-size:32px;
}


.hero-content h2{
    font-size:22px;
}


.video-card,
.plan-card,
.stat-box,
.benefit-box{
    width:90%;
}


.plans,
.stats-grid,
.vip-benefits,
.video-grid{
    flex-direction:column;
    align-items:center;
}


.vip-btn,
.hero-btn{
    width:90%;
}

}