body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #0a0a0a;
    color: #ddd;
    margin: 0;
    padding: 0;
}

/* Age Gate */
.age-gate {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10,10,10,0.98); display: flex;
    align-items: center; justify-content: center; z-index: 9999;
    flex-direction: column; text-align: center; padding: 20px;
}
.age-content h1 { color: #ff1493; font-size: 2.8em; margin-bottom: 15px; }
.age-content p { max-width: 500px; font-size: 1.15em; line-height: 1.5; margin-bottom: 30px; }
button {
    background: #ff1493; color: white; border: none;
    padding: 16px 45px; font-size: 1.1em; border-radius: 6px;
    cursor: pointer; margin: 8px;
}
button:hover { background: #ff69b4; }

/* Main Site */
.main-content { display: none; }
.header {
    text-align: center;
    padding: 25px 0;
    background: linear-gradient(#1a1a1a,#0a0a0a);
    border-bottom: 3px solid #ff1493;
}
h1 { margin: 0; color: #ff1493; font-size: 2.3em; }
.subtitle { color: #aaa; margin-top: 8px; font-size: 1.1em; }

/* SEO intro copy under the header */
.category-intro {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 0 16px;
    color: #999;
    font-size: 0.98em;
    line-height: 1.6;
    text-align: center;
}

/* Broadcaster recruitment banner */
.recruit-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    text-align: center;
    background: linear-gradient(135deg, #ff1493, #ff006a);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.98em;
}
.recruit-banner a {
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    padding: 8px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: transform 0.15s;
}
.recruit-banner a:hover { transform: scale(1.05); }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1920px;
    margin: 20px auto;
    padding: 0 12px;
}
.cam-item {
    background: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.cam-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(255,20,147,0.3);
}
.thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hd-badge {
    position: absolute; top: 8px; right: 8px;
    background: #ff1493; color: white;
    font-size: 10px; padding: 2px 6px; border-radius: 3px; font-weight: bold;
}
.info {
    padding: 12px;
    font-size: 14px;
}
.username {
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.viewers {
    color: #00ff9d;
    font-size: 13px;
}

.error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #ff6666;
}

/* Navigation Bar */
.nav-bar {
    background: #111;
    border-bottom: 2px solid #2a2a2a;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    display: block;
    padding: 14px 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover {
    color: #fff;
    border-bottom-color: #ff1493;
}
.nav-links a.active {
    color: #ff1493;
    border-bottom-color: #ff1493;
}

/* Mobile hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 0;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ddd;
    border-radius: 2px;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-bottom: 2px solid #ff1493;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 16px 24px;
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #222;
    transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
    color: #ff1493;
    background: #111;
}

.nav-wrapper {
    position: relative;
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-bar { justify-content: space-between; }
}

/* Site Footer */
.site-footer {
    background: #111;
    border-top: 2px solid #222;
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #666;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 16px;
}
.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: #ff1493; }
.footer-disclaimer {
    max-width: 820px;
    margin: 10px auto;
    line-height: 1.7;
    color: #555;
    font-size: 12px;
}
.footer-copy { margin-top: 12px; color: #444; font-size: 12px; }
