/* JOIShows.com Custom Styles - RED & BLACK THEME */

:root {
    --primary-color: #dc3545;
    --secondary-color: #8b0000;
    --dark-bg: #0d0d0d;
    --darker-bg: #000000;
    --light-text: #f5f5f5;
    --muted-text: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #000 !important;
    background-image:
        radial-gradient(ellipse at top, rgba(220, 53, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--light-text) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Force all sections to dark gradient background */
section {
    background-color: transparent !important;
}

/* Hero section - PornHub style */
section.hero-section {
    background: linear-gradient(135deg, #dc3545 0%, #000000 100%) !important;
    padding: 20px 0;
    margin-bottom: 0;
}

.hero-section h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Category Pills - PornHub style */
.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0;
}

.category-pills::-webkit-scrollbar {
    height: 6px;
}

.category-pills::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.category-pill {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-transform: lowercase;
}

.category-pill:hover {
    background: #dc3545;
    color: #fff;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
}

/* Stats Card */
.stats-card {
    background: rgba(220, 53, 69, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.stat-item {
    margin-bottom: 20px;
}

.stat-item h3 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-text);
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Video Cards - PornHub Style */
.video-card {
    background: transparent !important;
    border: none;
    margin-bottom: 20px;
}

.video-card a {
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    background: #1a1a1a !important;
    aspect-ratio: 16/9;
    border-radius: 4px;
    margin-bottom: 8px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s;
}

.video-thumbnail:hover img {
    opacity: 0.85;
}

.duration-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color) !important;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.badge-domme {
    background: #9c27b0 !important;
}

.category-badge.badge-edging {
    background: #ff5722 !important;
}

.category-badge.badge-roleplay {
    background: #2196f3 !important;
}

.category-badge.badge-cei {
    background: #ff9800 !important;
}

.category-badge.badge-asmr {
    background: #4caf50 !important;
}

.video-info {
    padding: 0;
    background: transparent !important;
}

.video-title {
    margin-bottom: 5px;
}

.video-title a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.video-title a:hover {
    color: #dc3545;
}

/* Related videos section titles should be smaller */
.related-videos-section .video-title a {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.video-stats {
    font-size: 0.8rem;
    color: #999;
}

.video-stats i {
    margin-right: 4px;
    font-size: 0.75rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    color: #fff !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

.btn-outline-light:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
}

/* Live Section */
.live-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Categories */
.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg) !important;
    padding: 30px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s;
    text-align: center;
}

.category-box:hover {
    background: var(--primary-color) !important;
    transform: translateY(-5px);
    color: #fff;
}

.category-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.category-box span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* AD Zones */
.ad-zone {
    margin: 20px 0;
    min-height: 90px;
    background: rgba(220, 53, 69, 0.05) !important;
}

.ad-placeholder {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 2px dashed rgba(220, 53, 69, 0.3) !important;
    padding: 20px;
    border-radius: 8px;
}

/* Footer */
.footer {
    margin-top: 50px;
    background: #000 !important;
}

.footer a {
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .stats-card {
        margin-top: 30px;
    }
}

/* Featured Section */
.featured-section {
    background: #000 !important;
}

/* Individual Video Page Styles - Sexier & Darker */
.video-page-header {
    background: linear-gradient(135deg, #dc3545 0%, #000 100%) !important;
    padding: 40px 0;
    margin-bottom: 30px;
    box-shadow:
        0 4px 30px rgba(220, 53, 69, 0.4),
        inset 0 -1px 0 rgba(220, 53, 69, 0.3);
    border-bottom: 2px solid rgba(220, 53, 69, 0.5);
}

.video-player-wrapper {
    background: #000 !important;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow:
        0 0 40px rgba(220, 53, 69, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.video-player-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000 !important;
}
.video-player-placeholder > .text-center {
    width: 100%;
    flex: 1 1 100%;
}

.watch-full-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.related-videos-section {
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 40px 0;
    border-radius: 12px;
    border: 1px solid rgba(220, 53, 69, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(220, 53, 69, 0.1);
    backdrop-filter: blur(10px);
}

.sidebar-ad {
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(220, 53, 69, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

/* Sexy dark boxes */
.bg-dark {
    background: rgba(0, 0, 0, 0.85) !important;
    border: 1px solid rgba(220, 53, 69, 0.25) !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(220, 53, 69, 0.15),
        inset 0 1px 0 rgba(220, 53, 69, 0.1) !important;
    backdrop-filter: blur(10px);
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.video-tag {
    background: rgba(220, 53, 69, 0.15) !important;
    color: #dc3545;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(220, 53, 69, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.video-tag:hover {
    background: var(--primary-color) !important;
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.5);
    transform: translateY(-2px);
}

/* Override all Bootstrap white/light backgrounds */
.bg-white,
.bg-light {
    background-color: #000 !important;
}

/* Ensure all text is visible */
h1, h2, h3, h4, h5, h6, p {
    color: var(--light-text);
}

/* Ensure all cards are dark */
.card {
    background-color: var(--dark-bg) !important;
    color: var(--light-text) !important;
}

/* Black/red age verification and cookie banner overrides */
.cookie-consent-banner {
    background: rgba(0, 0, 0, 0.95) !important;
    border-top: 2px solid #dc3545 !important;
}
