
body { margin:0; font-family:Arial,sans-serif; background:#111; color:#fff; }
body {
    font-size: 16px; /* base size */
    line-height: 1.5;
}

@media (max-width: 768px) {
    .title { font-size: 1rem; }
    .description { font-size: 0.9rem; }
    .cta { font-size: 1rem; padding: 0.8rem; }
}
header { padding:1rem; text-align:center; background:#000; }
header { padding: 0.8rem; }
main { padding: 1rem; }
.cta, .sticky-join a { padding: 1rem; }

main { padding:1rem; max-width:800px; margin:auto; }
.video-container video {
    width: 100%;
    /*max-height: 60vh; !* keeps video visible without forcing scroll *!*/
    border-radius: 6px;
}        .title { font-size:1.2rem; font-weight:bold; margin:0.5rem 0; }
.stars { margin:0.5rem 0; font-size:0.95rem; }
.stars a { color:#ff4444; text-decoration:none; margin-right:8px; }
.stars a:hover { text-decoration:underline; }
.description { font-size:0.95rem; color:#ccc; margin-bottom:1rem; }
.cta { display:block; text-align:center; background:#e50914; color:#fff;
    padding:1rem; border-radius:6px; font-size:1.1rem; text-decoration:none;
    font-weight:bold; margin-top:1rem; }
.cta:hover { background:#ff1a24; }
.join-banner { margin-top:15px; padding:15px; background:#000; color:#fff;
    text-align:center; border-radius:6px; font-size:1rem; }
.join-banner a { color:#ff4444; font-weight:bold; text-decoration:none; }
.categories { margin:0.5rem 0; font-size:0.95rem; }
.categories a { color:#ff9900; text-decoration:none; margin-right:8px; }
.categories a:hover { text-decoration:underline; }
.related-grid {
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:1rem;
}
.related-grid a {
    width:180px;
    text-decoration:none;
    color:#fff;
}
.related-grid img {
    width:100%;
    border-radius:6px;
}
.seo-text {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 1.5rem;
    line-height: 1.5;
}
.seo-text a {
    color: #ff9900;
    text-decoration: none;
}
.seo-text a:hover {
    text-decoration: underline;
}

.signup-box { background:#222; padding:1rem; border-radius:6px; margin-top:1.5rem; text-align:center; }
.signup-box input { padding:0.5rem; width:70%; border-radius:4px; border:none; margin-right:5px; }
.signup-box button { padding:0.5rem 1rem; background:#e50914; border:none; border-radius:4px; color:#fff; font-weight:bold; cursor:pointer; }
.signup-box button:hover { background:#ff1a24; }
#signup-message { margin-top:0.5rem; font-size:0.9rem; color:#0f0; }

.next-video-hint {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #aaa;
}
.next-video-hint a {
    color: #ff9900;
    text-decoration: none;
}
.next-video-hint a:hover {
    text-decoration: underline;
}
/* Floating Join bar (mobile only) */
.sticky-join {
    display: none; /* hidden by default */
}

@media (max-width: 768px) {
    .sticky-join {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #e50914;
        text-align: center;
        padding: 0.8rem;
        z-index: 9999;
    }
    .sticky-join a {
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        font-size: 1.1rem;
        display: block;
    }
    .sticky-join a:hover {
        background: #ff1a24;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}
header {
    padding: 1rem;
    text-align: center;
    background: #000;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    padding: 10px;
}
.video-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease;
}
.video-card:hover {
    transform: scale(1.05);
}
.video-card img {
    width: 100%;
    height: auto;
    display: block;
}
.title {
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #ddd;
}

.video-js {
    width: 100%;
}