/* ===============================
   GLOBAL RESET
================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0f;
    color:#ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height:1.6;
}

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

/* ===============================
   AGE VERIFICATION
================================ */
.age-body{
    background:#000;
}

.age-overlay{
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.age-box{
    background:#111;
    border:2px solid #e60073;
    padding:30px;
    max-width:420px;
    text-align:center;
    border-radius:12px;
}

.age-box h1{
    color:#ff005d;
    margin-bottom:15px;
}

.age-box button{
    margin-top:15px;
    padding:12px 20px;
    background:#e60073;
    border:none;
    color:#fff;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
}

/* ===============================
   COMMON LAYOUT
================================ */
.container{
    width:92%;
    max-width:1200px;
    margin:30px auto;
}

.site-title{
    text-align:center;
    color:#ff005d;
}

.site-subtitle{
    text-align:center;
    color:#aaa;
    margin-bottom:30px;
}

/* ===============================
   ADS
================================ */
.ad-box{
    background:#151515;
    border:1px dashed #333;
    padding:20px;
    margin:20px auto;
    text-align:center;
    color:#777;
}

/* ===============================
   VIDEO GRID
================================ */
.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.video-card{
    background:#111;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
}

.video-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 15px rgba(255,0,93,0.3);
}

.video-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.video-info{
    padding:12px;
}

.video-info h3{
    font-size:16px;
    margin-bottom:6px;
}

.unlock-count{
    font-size:13px;
    color:#999;
}

/* ===============================
   VIDEO PREVIEW
================================ */
.video-preview{
    display:flex;
    justify-content:center;
}

.preview-card{
    background:#111;
    padding:20px;
    max-width:420px;
    text-align:center;
    border-radius:12px;
}

.preview-card img{
    width:100%;
    border-radius:8px;
}

.warning-text{
    color:#ff4d4d;
    margin:15px 0;
}

.unlock-btn{
    padding:12px 20px;
    background:#e60073;
    border:none;
    color:#fff;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
}

/* ===============================
   UNLOCK STEPS
================================ */
.unlock-container{
    max-width:600px;
    text-align:center;
}

.progress-bar{
    background:#222;
    height:10px;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:15px;
}

.progress{
    background:linear-gradient(90deg,#ff005d,#9b00ff);
    height:100%;
    width:0;
}

.step-text{
    color:#aaa;
    margin-bottom:20px;
}

.checkbox{
    font-size:18px;
}

button{
    margin-top:20px;
    padding:12px 22px;
    background:#e60073;
    border:none;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

button:disabled{
    background:#444;
    cursor:not-allowed;
}

.final-link{
    display:inline-block;
    margin-top:20px;
    padding:14px 26px;
    background:#00cc66;
    color:#000;
    font-weight:bold;
    border-radius:8px;
}

.success-text{
    color:#00ff99;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:600px){
    .video-card img{
        height:150px;
    }
}