/* =========================
   RESET / BASE
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.5;
}

/* =========================
   AGE GATE
========================= */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-container {
    max-width: 420px;
    padding: 30px;
    background: #1b1b1b;
    border-radius: 8px;
    text-align: center;
}

.age-gate-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.age-gate-text {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cccccc;
}

.age-gate-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn-confirm {
    background-color: #e50914;
    color: #ffffff;
}

.btn-exit {
    background-color: #444;
    color: #ffffff;
}

/* =========================
   HEADER
========================= */
.site-header {
    padding: 15px 20px;
    background: #161616;
    border-bottom: 1px solid #222;
}

.site-logo {
    font-size: 20px;
    font-weight: bold;
}

/* =========================
   MAIN CONTENT
========================= */
.site-main {
    padding: 20px;
}

.site-intro {
    margin-bottom: 20px;
    font-size: 14px;
    color: #bbbbbb;
}

/* =========================
   VIDEO GRID
========================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 110px;
    background: #333;
}

.video-title {
    padding: 8px;
    font-size: 13px;
    color: #dddddd;
}

/* Blur thumbnails until age confirmed */
.blurred .video-thumb {
    filter: blur(12px);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    margin-top: 40px;
    padding: 20px;
    background: #161616;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #aaaaaa;
    text-align: center;
}

.site-footer a {
    color: #aaaaaa;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
    .video-thumb {
        height: 90px;
    }

    .age-gate-container {
        width: 90%;
    }
}
