/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --bg-dark: #0c0f12;
    --bg-card: #15191f;
    --bg-card-hover: #1e242d;
    --primary-color: #ff6600;
    --primary-glow: rgba(255, 102, 0, 0.4);
    --secondary-color: #e02d1b;
    --accent-color: #ffb300;
    
    --text-main: #ffffff;
    --text-muted: #a0aab8;
    --text-dark: #06080a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(12, 15, 18, 0.95) 0%, rgba(21, 25, 31, 0.98) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(224, 45, 27, 0.05) 100%);
    
    /* Layout */
    --container-max-width: 1280px;
    --container-max-width-large: 1600px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & GLOBAL ESTYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smart TV & Keyboard Navigation Custom Focus Indicator */
.focusable {
    transition: var(--transition-fast);
}

.focusable:focus-visible,
.focusable.tv-focused {
    outline: 3px solid var(--primary-color) !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 20px var(--primary-color) !important;
    transform: scale(1.03);
    z-index: 10;
}

/* Section Containers */
.section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

/* Text Gradients */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 15, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary-color);
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-item:hover, 
.nav-item.active {
    color: var(--text-main);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Header Socials */
.header-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    font-size: 1.15rem;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--text-main);
    transform: scale(1.1);
}

.social-icon.youtube:hover { background: #ff0000; }
.social-icon.twitch:hover { background: #9146ff; }
.social-icon.spotify:hover { background: #1ed760; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%); }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 30%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(224, 45, 27, 0.04) 0%, transparent 40%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    animation: pulse 1.5s infinite alternate;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-frame-glow {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(255, 102, 0, 0.15);
    border: 2px solid rgba(255, 102, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-banner-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    transition: var(--transition-slow);
}

.logo-frame-glow:hover .hero-banner-img {
    transform: scale(1.02);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================================================
   LIVE STATUS SECTION
   ========================================================================== */
.live-status-section {
    background: #0f1319;
    position: relative;
    z-index: 10;
}

.live-status-section .section-container {
    padding: 30px 24px;
}

.live-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.live-card-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.live-indicator.online .live-dot {
    background-color: #00ff66;
    box-shadow: 0 0 12px #00ff66;
    animation: pulse 1s infinite alternate;
}

.live-indicator.offline .live-dot {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.live-status-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.live-indicator.offline .live-status-text {
    color: var(--primary-color);
}

/* Countdown */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
}

.timer-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-colon {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
}

.btn-live-alert {
    background: #9146ff;
    color: var(--text-main);
}

.btn-live-alert:hover {
    background: #7d33eb;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   EPISODES GRID SECTION
   ========================================================================== */
.episodes-section {
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.episode-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.episode-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 
                0 0 25px rgba(255, 102, 0, 0.05);
}

.episode-thumbnail {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px var(--primary-color);
}

.episode-card:hover .play-btn-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.episode-duration {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.episode-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.episode-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
}

.episode-tag.podcast { background: rgba(255, 102, 0, 0.15); color: var(--primary-color); }
.episode-tag.gaming { background: rgba(0, 255, 102, 0.1); color: #00ff66; }
.episode-tag.tech { background: rgba(0, 180, 255, 0.1); color: #00b4ff; }

.episode-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.episode-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.episode-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.episode-card:hover .read-more-link i {
    transform: translateX(4px);
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* ==========================================================================
   STREAMING PLATFORMS SECTION
   ========================================================================== */
.platforms-section {
    background: #0f1319;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.platform-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    color: var(--text-muted);
}

.platform-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.platform-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Specific Hover Styles for Platforms */
.platform-card:hover .platform-icon.yt { color: #ff0000; }
.platform-card:hover .platform-icon.tw { color: #9146ff; }
.platform-card:hover .platform-icon.sp { color: #1ed760; }
.platform-card:hover .platform-icon.ap { color: #fc3c44; }

.platform-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.pattern-bg-glow {
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, transparent 60%);
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.05);
}

.about-img-decor {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-badge {
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.stats-row {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section {
    background: #0f1319;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(21, 25, 31, 0.8) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
}

.newsletter-glow-decor {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.newsletter-text {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: var(--border-radius-sm);
}

.newsletter-input {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 12px 18px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #090c0f;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-slogan {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ==========================================================================
   SMART TV MODE OVERLAY BADGE
   ========================================================================== */
.tv-mode-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 102, 0, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 102, 0, 0.3);
    display: none; /* Shown dynamically via JS */
    align-items: center;
    gap: 8px;
    z-index: 9999;
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Laptops & Tablets (1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        gap: 32px;
    }
    
    .about-grid {
        gap: 32px;
    }
}

/* Tablets / Portrait Screens (768px) */
@media (max-width: 768px) {
    .section-container {
        padding: 56px 20px;
    }
    
    /* Header menu mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--bg-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px 24px;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-item {
        font-size: 1.25rem;
    }
    
    .header-socials {
        display: none; /* Hide on mobile to clear header */
    }
    
    /* Hero section stack */
    .hero-section {
        padding-top: 73px;
        padding-bottom: 48px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0;
        gap: 0;
    }
    
    .hero-badge {
        margin: 0 auto 20px auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-media {
        order: -1; /* Place image on top */
        width: 100%;
        margin: 0;
    }
    
    .logo-frame-glow {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        animation: none;
    }

    .hero-banner-img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .hero-content {
        padding: 32px 24px 0 24px;
        margin: 0;
    }
    
    /* Live bar adjustments */
    .live-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .live-card-info {
        justify-content: center;
        gap: 20px;
    }
    
    /* Grid stack */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-img-decor {
        width: 240px;
        height: 240px;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand .footer-slogan {
        margin: 0 auto;
    }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .countdown-timer {
        gap: 6px;
    }
    
    .timer-val {
        font-size: 1.4rem;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        padding: 32px 20px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        background: none;
        border: none;
        padding: 0;
        gap: 12px;
    }
    
    .newsletter-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--border-radius-sm);
    }
}

/* ==========================================================================
   SMART TV OPTIMIZED STYLES (Ultra Wide / Big Screen Mode)
   ========================================================================== */
@media (min-width: 2200px) {
    html {
        font-size: 24px; /* Upscale everything for TVs */
    }
    
    .section-container {
        max-width: var(--container-max-width-large);
        padding: 100px 48px;
    }
    
    .main-header .header-container {
        max-width: var(--container-max-width-large);
        padding: 24px 48px;
    }
    
    .hero-container {
        max-width: var(--container-max-width-large);
        gap: 80px;
    }
    
    .logo-frame-glow {
        max-width: 500px;
    }
    
    .about-img-decor {
        width: 450px;
        height: 450px;
    }
}

/* ==========================================================================
   FLOATING ADMIN BUTTON
   ========================================================================== */
.floating-admin-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(21, 25, 31, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: var(--text-muted);
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: var(--transition-fast);
}

.floating-admin-btn:hover {
    color: var(--text-main);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.2);
    transform: translateY(-2px);
}

.floating-admin-btn i {
    font-size: 1rem;
    color: var(--primary-color);
}
