body {
    background-color: #000;
    color: #ffffff;
    min-height: 100vh;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar-custom {
    background-color: #000;
    border-bottom: 2px solid #0d6efd;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #0d6efd !important;
}
.navbar-custom .navbar-toggler {
    border-color: rgba(255,255,255,0.4);
}
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-link.join-now {
    color: #0d6efd !important;
    font-weight: 600;
}
.nav-link.join-now:hover {
    color: #4dabf7 !important;
}
.nav-link.member-login {
    color: #ffffff !important;
    font-weight: 600;
}
.nav-link.member-login:hover {
    color: #0d6efd !important;
}

/* ── Disclaimer row (new text row under nav links inside navbar) ──────────────── */
.disclaimer-row {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #bbbbbb;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.disclaimer-row p {
    margin: 0;
}

/* Mobile: make it look reasonable when menu is expanded */
@media (max-width: 991.98px) {
    .disclaimer-row {
        margin-top: 1.25rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.12);
        font-size: 0.81rem;
    }
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
    background-color: #000;
    border-top: 1px solid #222;
    color: #ffffff;
    padding: 0.6rem 0 0.6rem;
    margin-top: 0.0rem;
    font-size: 0.92rem;
}

.footer-top {
    font-size: 1rem;
    margin: 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid #333;
}

.footer-bottom {
    font-size: 0.875rem;
    padding-top: 0.4rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1.1rem;
}

.footer-links a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.small-print,
.small-print a {
    color: #ccc;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin: 0 0.9rem;
}

.small-print a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer-legal,
.footer-copyright {
    margin: 0.1rem 0;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    footer {
        margin-top: 1.2rem;
        padding: 1rem 0 0.9rem;
    }
    .footer-top {
        padding: 0.25rem 0;
    }
}

/* Content spacing below fixed navbar (increased slightly for disclaimer row) */
main {
    padding-top: 100px;
    padding-bottom: 40px;
}

.text-warning.fw-bold {
    color: #ffc107 !important;
    font-weight: 700 !important;
}

.card-footer-link.force-yellow-link {
    color: #ffc107 !important;
    text-decoration: underline;
}
.card-footer-link.force-yellow-link:hover {
    color: #ffda6a !important;
}

/* Actors page */
.actor-card {
    transition: all 0.25s ease;
    background-color: #111 !important;
}

.actor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.3);
    border-color: #0d6efd !important;
}

.actor-card img {
    transition: transform 0.3s ease;
}

a:hover .actor-card img {
    transform: scale(1.04);
}

.card-img-top.bg-black {
    background-color: #000;
}

.navbar-collapse .disclaimer-row,
.navbar-collapse .disclaimer-row * {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

.bg-very-dark {
    background-color: #1a1a1a; /* very dark grey - adjust hex as needed, e.g. #111, #151515, #0f0f0f */
}

.accordion-button:hover {
    background-color: rgba(255, 255, 255, 0.08) !important; /* light overlay on hover */
    transition: background-color 0.2s ease;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05) !important; /* slightly different when open */
}