* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg-primary: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-tertiary: #141414;
    --color-border: #1a1a1a;
    --color-border-hover: #333333;
    --color-text-primary: #ffffff;
    --color-text-secondary: #999999;
    --color-text-tertiary: #666666;
    --color-accent: #ffffff;
    --radius-small: 4px;
    --radius-medium: 6px;
    --radius-large: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    font-weight: 400;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    overflow-x: hidden;
    letter-spacing: -0.02em;
}

/* ===================================
   AGE VERIFICATION
   =================================== */

#ageVerification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

#ageVerification.hidden {
    display: none;
}

.age-modal {
    background: var(--color-bg-primary);
    padding: 80px;
    border-radius: var(--radius-medium);
    text-align: center;
    max-width: 600px;
    border: 1px solid var(--color-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

.age-modal h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.age-modal p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.age-btn.yes {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    border: 1px solid var(--color-text-primary);
}

.age-btn.yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.age-btn.no {
    background: transparent;
    color: var(--color-text-tertiary);
    border: 1px solid var(--color-border-hover);
}

.age-btn.no:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
    color: var(--color-text-secondary);
}

/* ===================================
   MAIN CONTENT WRAPPER
   =================================== */

#mainContent {
    display: none;
}

#mainContent.visible {
    display: block;
}

/* ===================================
   NAVIGATION
   =================================== */


/* Subdomain Switcher */
.subdomain-switcher {
    display: flex;
    gap: 8px;
    margin-left: auto;
    margin-right: 40px;
}

.subdomain-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subdomain-btn:hover {
    background: var(--color-border);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.subdomain-btn.active {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    border-color: var(--color-text-primary);
}

.subdomain-icon {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 968px) {
    .subdomain-switcher {
        margin-right: 20px;
    }
    
    .subdomain-btn span:last-child {
        display: none; /* Hide text on mobile, show only emoji */
    }
}

@media (max-width: 768px) {
    .subdomain-switcher {
        gap: 4px;
    }
    
    .subdomain-btn {
        padding: 6px 10px;
    }
}


nav {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 60px;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-text-primary);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 100px;
    border-bottom: 1px solid var(--color-border);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.hero-background video {
    opacity: 1;
}

.hero-background.loaded {
    opacity: 0.25;
}

/* Subtle scan line effect for tech feel */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.01) 0px,
        rgba(255, 255, 255, 0.01) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

/* ===================================
   FEATURED VIDEO CARD
   =================================== */

.featured-card {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    overflow: hidden;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
    transform: translateY(-50%) translateX(4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.featured-badge {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

.featured-thumbnail {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.featured-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-thumbnail img {
    transform: scale(1.08);
}

.featured-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.featured-info {
    padding: 20px;
}

.featured-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.featured-info p {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    border: none;
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-btn:hover {
    background: var(--color-text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
    .featured-card {
        left: 40px;
        width: 260px;
    }
}

@media (max-width: 968px) {
    .featured-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 40px;
        width: 90%;
        max-width: 320px;
    }
    
    .featured-card:hover {
        transform: translateY(-4px);
    }
    
    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 60px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    border: none;
    padding: 18px 48px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* ===================================
   PAGE SECTIONS
   =================================== */

.page {
    display: none;
}

.page.active {
    display: block;
}

.section-header {
    margin: 80px 60px 40px;
}

.section-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header p {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-tertiary);
    letter-spacing: 0;
}

/* ===================================
   CATEGORY SECTIONS & SLIDESHOWS
   =================================== */

.category-section {
    margin: 80px 60px;
    display: block;
    visibility: visible;
}

.category-header {
    margin-bottom: 30px;
}

.category-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.category-header p {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-tertiary);
}

.slideshow-container {
    position: relative;
    padding: 0 60px;
}

.slideshow-wrapper {
    overflow: hidden;
}

.slideshow {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   VIDEO CARDS
   =================================== */

.video-card {
    min-width: 300px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-medium);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-text-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-color: var(--color-border-hover);
}

.video-card:hover::before {
    opacity: 1;
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-info {
    padding: 20px;
    background: var(--color-bg-primary);
}

.video-info h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.video-info p {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   SCROLL BUTTONS
   =================================== */

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--color-bg-primary);
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scroll-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background: var(--color-text-primary);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

/* ===================================
   VIDEO PLAYER PAGE
   =================================== */

.player-page-content {
    padding: 40px 60px;
}

.back-btn {
    background: var(--color-text-primary);
    color: var(--color-bg-primary);
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius-small);
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.vr-controls {
    max-width: 1400px;
    margin: 0 auto 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.vr-control-btn {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vr-control-btn:hover {
    background: var(--color-border);
    border-color: var(--color-border-hover);
}

/* ===================================
   PLAYER CONTAINER & SIDE ADS
   =================================== */

.player-container {
    max-width: 1400px;
    margin: 0 auto 30px;
    flex: 1;
}

.player-with-side-ads {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1800px;
    margin: 0 auto 30px;
}

.side-ad {
    width: 160px;
    min-height: 600px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.side-ad.left-ad {
    order: 1;
}

.side-ad.right-ad {
    order: 3;
}

.player-with-side-ads .player-container {
    order: 2;
    margin: 0;
}

#juicyadsLeftAd,
#juicyadsRightAd {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1400px) {
    .side-ad {
        display: none;
    }
    
    .player-with-side-ads {
        justify-content: center;
    }
    
    .player-with-side-ads .player-container {
        max-width: 1400px;
    }
}

.player-wrapper {
    position: relative;
}

#mainVideoPlayer {
    width: 100%;
    border-radius: var(--radius-medium);
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
}

/* ===================================
   QUALITY SELECTOR
   =================================== */

.quality-selector {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.quality-control {
    position: relative;
}

.quality-btn {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quality-btn:hover {
    background: var(--color-border);
    border-color: var(--color-border-hover);
}

.quality-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    min-width: 180px;
    display: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.quality-menu.active {
    display: block;
}

.quality-option {
    padding: 14px 20px;
    color: var(--color-text-tertiary);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
}

.quality-option:last-child {
    border-bottom: none;
}

.quality-option:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-primary);
}

.quality-option.active {
    color: var(--color-text-primary);
    background: var(--color-bg-secondary);
    font-weight: 500;
}

/* ===================================
   AD CONTAINERS
   =================================== */

.ad-strip-container {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.ad-strip-content {
    background: var(--color-bg-tertiary);
    padding: 30px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#juicyadsAdStrip,
#juicyadsCategoryAd {
    width: 100%;
    text-align: center;
    min-height: 90px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-page-ad {
    max-width: 1400px;
    margin: 40px auto 80px;
    padding: 0 60px;
}

.category-ad-content {
    background: var(--color-bg-tertiary);
    padding: 30px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ===================================
   SUGGESTIONS SECTION
   =================================== */

.suggestions-section {
    max-width: 1400px;
    margin: 0 auto;
}

.suggestions-section h2 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* ===================================
   INFO PAGES (COMMISSIONS, CONTACT)
   =================================== */

.info-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.info-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.info-page h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 60px 0 24px;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.info-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.info-page p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.info-page ul {
    margin: 24px 0;
    padding-left: 24px;
}

.info-page li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.contact-info {
    background: var(--color-bg-tertiary);
    padding: 40px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: var(--color-text-secondary);
    border-bottom-color: var(--color-text-secondary);
}

/* ===================================
   UPDATES SECTION
   =================================== */

.updates-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 60px;
}

.updates-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.update-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.update-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.update-card.has-image {
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.update-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.update-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: opacity 0.3s, transform 0.3s;
}

.update-card:hover .update-image {
    opacity: 0.45;
    transform: scale(1.03);
}

.update-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.update-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.update-card.has-image .update-content {
    background: transparent;
}

.update-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.update-card.has-image .update-date {
    color: var(--color-text-secondary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.update-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.update-card.has-image .update-title {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.update-description {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.update-card.has-image .update-description {
    color: #d0d0d0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 60px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    flex: 1;
    letter-spacing: -0.01em;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-text-tertiary);
    margin-left: 24px;
    transition: transform 0.3s, color 0.3s;
}

.faq-item:hover .faq-icon {
    color: var(--color-text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 28px 28px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    nav {
        padding: 0 40px;
    }
    
    .section-header,
    .category-section,
    .updates-section,
    .faq-section,
    .category-page-ad {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-content h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 11px;
    }
    
    .hero-section {
        height: 50vh;
        margin-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .age-modal {
        padding: 40px;
        margin: 20px;
    }
    
    .suggestions-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 20px;
    }
    
    .section-header,
    .category-section,
    .updates-section,
    .faq-section,
    .player-page-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .slideshow-container {
        padding: 0 50px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .video-card {
        min-width: 250px;
    }
    
    .age-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .age-btn {
        width: 100%;
    }
}