/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Neon Color Palette */
    --primary-color: #00f0ff;
    --primary-dark: #00b8cc;
    --primary-light: #33f3ff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    
    --dark-bg: #0a0e27;
    --dark-bg-2: #1a1f3a;
    --dark-bg-3: #252b48;
    
    --light-bg: #0a0e27;
    --light-bg-2: #1a1f3a;
    --light-bg-3: #252b48;
    
    --text-dark: #ffffff;
    --text-light: #ffffff;
    --text-gray: #8892b0;
    --text-gray-light: #ccd6f6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing - Просторные отступы */
    --section-padding: 120px 0;
    --container-padding: 40px;
    
    /* Neon Glow Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-yellow: 0 0 20px rgba(255, 255, 0, 0.5), 0 0 40px rgba(255, 255, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Glassmorphism эффект */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Неоновое свечение для акцентов */
.neon-cyan {
    box-shadow: var(--glow-cyan);
    border: 1px solid var(--primary-color);
}

.neon-magenta {
    box-shadow: var(--glow-magenta);
    border: 1px solid var(--secondary-color);
}

.neon-yellow {
    box-shadow: var(--glow-yellow);
    border: 1px solid var(--accent-color);
}

/* ===========================
   Disclaimer Banner
   =========================== */
.disclaimer-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 1rem 0;
    z-index: 2147483646 !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    flex-wrap: wrap;
}

.disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.disclaimer-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.disclaimer-text strong {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

/* Adjust header position when disclaimer is present */
body.has-disclaimer .header {
    top: 60px;
}

body.has-disclaimer .hero-geometric,
body.has-disclaimer .hero-section {
    padding-top: 200px;
}

/* Additional pages hero sections - adjust for fixed header */
body.has-disclaimer .about-hero,
body.has-disclaimer .podcasts-hero,
body.has-disclaimer .contact-hero,
body.has-disclaimer .resources-hero {
    padding-top: 180px !important;
}

@media (max-width: 768px) {
    .disclaimer-banner {
        padding: 0.75rem 0;
    }
    
    .disclaimer-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
    }
    
    .disclaimer-icon {
        font-size: 1.25rem;
    }
    
    body.has-disclaimer .header {
        top: 80px;
    }
    
    body.has-disclaimer .hero-geometric,
    body.has-disclaimer .hero-section {
        padding-top: 220px;
    }
    
    body.has-disclaimer .about-hero,
    body.has-disclaimer .podcasts-hero,
    body.has-disclaimer .contact-hero,
    body.has-disclaimer .resources-hero {
        padding-top: 200px !important;
    }
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647 !important;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.9);
    box-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: var(--glow-cyan);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.burger-menu {
    border: none;
    background: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-base);
}

.burger-menu:focus {
    outline: none;
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: var(--glow-cyan);
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: 20%;
    right: 15%;
    animation-delay: 7s;
    box-shadow: var(--glow-magenta);
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
    box-shadow: var(--glow-yellow);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 3rem;
    animation: slideInDown 0.8s ease;
    box-shadow: var(--glow-cyan);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease;
    font-weight: 900;
    background: linear-gradient(90deg, #00f0ff 0%, #ff00ff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--glow-cyan);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-text span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.5s both;
    color: var(--text-gray-light);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.platform-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.badge-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.platform-icons {
    display: flex;
    gap: 1rem;
}

.platform-icons i {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: var(--transition-base);
}

.platform-icons i:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.podcast-card-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

.podcast-card {
    position: absolute;
    width: 320px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-base);
    cursor: pointer;
}

.podcast-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--primary-color);
    box-shadow: var(--glow-cyan);
}

.podcast-card.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: cardFloat 6s ease-in-out infinite;
}

.podcast-card.card-2 {
    top: 80px;
    left: 60px;
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite 2s;
}

.podcast-card.card-3 {
    top: 160px;
    left: 120px;
    z-index: 1;
    animation: cardFloat 6s ease-in-out infinite 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.episode-number {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.podcast-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.episode-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.hero-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.hero-image {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: fadeIn 1s ease 1.5s both;
}

.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* ===========================
   GEOMETRIC HERO SECTION
   =========================== */
.hero-geometric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Контейнер для геометрических форм */
.hero-shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

/* Базовые стили для геометрических форм */
.geo-shape {
    position: absolute;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.shape-inner {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

/* КРУГ */
.geo-shape.circle {
    width: 60vmin;
    height: 60vmin;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.geo-shape.circle .shape-inner {
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    mix-blend-mode: screen;
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.6),
                inset 0 0 80px rgba(0, 240, 255, 0.3);
    animation: shapeFloat1 8s ease-in-out infinite;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-geometric:hover .geo-shape.circle .shape-inner {
    opacity: 0.7;
    box-shadow: 0 0 100px rgba(0, 240, 255, 0.8),
                inset 0 0 100px rgba(0, 240, 255, 0.4);
}

/* ТРЕУГОЛЬНИК */
.geo-shape.triangle {
    width: 55vmin;
    height: 55vmin;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.geo-shape.triangle .shape-inner {
    width: 0;
    height: 0;
    border-left: 27.5vmin solid transparent;
    border-right: 27.5vmin solid transparent;
    border-bottom: 48vmin solid var(--secondary-color);
    opacity: 0.6;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 0 60px rgba(255, 0, 255, 0.7));
    animation: shapeFloat2 10s ease-in-out infinite;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.hero-geometric:hover .geo-shape.triangle .shape-inner {
    opacity: 0.75;
    filter: drop-shadow(0 0 80px rgba(255, 0, 255, 0.9));
}

/* КВАДРАТ */
.geo-shape.square {
    width: 50vmin;
    height: 50vmin;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.geo-shape.square .shape-inner {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.55;
    mix-blend-mode: screen;
    box-shadow: 0 0 70px rgba(255, 255, 0, 0.6),
                inset 0 0 70px rgba(255, 255, 0, 0.3);
    animation: shapeFloat3 12s ease-in-out infinite;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-geometric:hover .geo-shape.square .shape-inner {
    opacity: 0.7;
    box-shadow: 0 0 90px rgba(255, 255, 0, 0.8),
                inset 0 0 90px rgba(255, 255, 0, 0.4);
}

/* Анимации плавания форм */
@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-25px, 15px) rotate(5deg); }
    66% { transform: translate(15px, -25px) rotate(-5deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(15px, 25px) scale(1.05) rotate(5deg); }
    66% { transform: translate(-20px, -15px) scale(0.95) rotate(-5deg); }
}

/* Контент hero секции */
.hero-content-geo {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1400px;
    padding: 0 40px;
}

/* Текст с эффектом "протекания" через формы */
.hero-text-flow {
    margin-bottom: 3rem;
    position: relative;
}

.flow-word {
    margin-bottom: 1rem;
    opacity: 0;
    animation: flowIn 0.8s ease forwards;
}

.flow-word:nth-child(1) { animation-delay: 0.2s; }
.flow-word:nth-child(2) { animation-delay: 0.4s; }
.flow-word:nth-child(3) { animation-delay: 0.6s; }

@keyframes flowIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-mega-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--secondary-color) 50%, 
                var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
    position: relative;
    mix-blend-mode: difference;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

/* Эффект изменения в местах пересечения */
.flow-word:nth-child(1) .hero-mega-title {
    background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                rgba(0, 240, 255, 0.7) 50%, 
                var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: contrast(1.2) brightness(1.1) drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
    text-shadow: 0 0 50px rgba(0, 240, 255, 0.6);
}

.flow-word:nth-child(2) .hero-mega-title {
    background: linear-gradient(135deg, 
                var(--secondary-color) 0%, 
                rgba(255, 0, 255, 0.8) 50%, 
                var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: contrast(1.3) brightness(1.2) drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
    text-shadow: 0 0 50px rgba(255, 0, 255, 0.6);
}

.flow-word:nth-child(3) .hero-mega-title {
    background: linear-gradient(135deg, 
                var(--accent-color) 0%, 
                rgba(255, 255, 0, 0.75) 50%, 
                var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: contrast(1.1) brightness(1.15) drop-shadow(0 0 30px rgba(255, 255, 0, 0.5));
    text-shadow: 0 0 50px rgba(255, 255, 0, 0.6);
}

/* Дополнительный эффект свечения при hover секции */
.hero-geometric:hover .flow-word:nth-child(1) .hero-mega-title {
    filter: contrast(1.4) brightness(1.3) drop-shadow(0 0 40px rgba(0, 240, 255, 0.8));
}

.hero-geometric:hover .flow-word:nth-child(2) .hero-mega-title {
    filter: contrast(1.5) brightness(1.4) drop-shadow(0 0 40px rgba(255, 0, 255, 0.8));
}

.hero-geometric:hover .flow-word:nth-child(3) .hero-mega-title {
    filter: contrast(1.3) brightness(1.35) drop-shadow(0 0 40px rgba(255, 255, 0, 0.8));
}

/* Подзаголовок */
.hero-subtitle-geo {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-gray-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

/* CTA кнопки */
.hero-cta-geo {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

/* Статистика */
.hero-stats-geo {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.stat-item-geo {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item-geo:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    z-index: 2;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-hint i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-geometric {
        padding: 120px 0 60px;
    }
    
    .geo-shape.circle {
        width: 70vmin;
        height: 70vmin;
        left: 20%;
    }
    
    .geo-shape.triangle {
        width: 65vmin;
        height: 65vmin;
    }
    
    .geo-shape.square {
        width: 60vmin;
        height: 60vmin;
        left: 80%;
    }
    
    .hero-cta-geo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats-geo {
        gap: 2rem;
    }
    
    .stat-item-geo {
        min-width: 100px;
        padding: 1rem;
    }
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-family: 'Courier New', monospace;
}

.section-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-gray-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Episodes Section
   =========================== */
.episodes-section {
    background: var(--dark-bg);
    position: relative;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.episode-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.episode-card.featured-episode {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.episode-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-episode .episode-image {
    aspect-ratio: unset;
    height: 100%;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.episode-card:hover .episode-image img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition-base);
}

.episode-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-base);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.episode-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.episode-content {
    padding: 2rem;
}

.episode-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.episode-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-bg-2);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.episode-duration {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.episode-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.episode-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.episode-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-bg-2);
}

.host-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.host-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-date {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ===========================
   Hosts Section
   =========================== */
.hosts-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.hosts-section .section-label {
    color: var(--secondary-color);
}

.hosts-section .section-title,
.hosts-section .section-description {
    color: var(--text-light);
}

.hosts-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.host-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.host-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--glow-cyan);
}

.host-card.primary-host {
    grid-row: span 2;
}

.host-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.primary-host .host-image-wrapper {
    aspect-ratio: 1/1.2;
}

.host-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.host-card:hover .host-image-wrapper img {
    transform: scale(1.1);
}

.host-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-base);
}

.host-card:hover .host-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.host-info {
    padding: 2rem;
}

.host-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.host-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.host-bio {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.host-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.host-stats strong {
    color: var(--secondary-color);
    display: block;
}

/* ===========================
   Topics Section
   =========================== */
.topics-section {
    background: var(--light-bg-2);
}

.topics-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.topics-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.accordion-item.active .accordion-header {
    background: var(--light-bg-2);
}

.accordion-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.accordion-title-wrapper {
    flex-grow: 1;
}

.accordion-title-wrapper h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.episode-count {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.accordion-toggle {
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: var(--transition-base);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: var(--light-bg-2);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===========================
   Subscribe Section
   =========================== */
.subscribe-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
}

.subscribe-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: var(--shadow-xl);
}

.subscribe-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subscribe-description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.subscribe-form {
    margin-bottom: 2rem;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
}

.form-group-inline .form-control {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group-inline .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group-inline .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.form-check-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-check-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.subscribe-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.platform-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.platform-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.platform-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.platform-link:hover {
    gap: 0.75rem;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    background: var(--light-bg);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex: 0 0 400px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    background: var(--dark-bg-2);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg-3);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
}

.stat-content .stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-content .stat-label {
    font-size: 1rem;
    color: var(--text-gray-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    background: var(--light-bg-2);
}

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-content a,
.info-content p {
    color: var(--text-gray);
    transition: var(--transition-base);
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-media h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: var(--transition-base);
}

.social-link.twitter { background: #1DA1F2; }
.social-link.linkedin { background: #0077B5; }
.social-link.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.facebook { background: #1877F2; }

.social-link:hover {
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-bg-3);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-main {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-description {
    color: var(--text-gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray-light);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact h5 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray-light);
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.contact-list a {
    color: var(--text-gray-light);
    transition: var(--transition-base);
}

.contact-list a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-gray-light);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.badge-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
}

.btn-outline-primary {
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-bg);
    border-color: white;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===========================
   Back to Top
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 9999;
    box-shadow: var(--glow-cyan);
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    padding: 1.5rem 0;
    z-index: 1001;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: var(--transition-base);
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Ensure footer appears above decorative overlays when needed */
footer.footer {
    position: relative;
    z-index: 2147483646 !important;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .hosts-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .podcast-card-stack {
        height: 300px;
    }
    
    .podcast-card {
        width: 240px;
        padding: 1.5rem;
    }
    
    .episode-card.featured-episode {
        grid-template-columns: 1fr;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .hosts-mosaic {
        grid-template-columns: 1fr;
    }
    
    .host-card.primary-host {
        grid-row: span 1;
    }
    
    .topics-stats {
        grid-template-columns: 1fr;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .subscribe-wrapper {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        border: 1px solid rgba(0, 240, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--glow-cyan);
    }
    
    .navbar-collapse .nav-link {
        color: var(--text-light) !important;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .subscribe-title,
    .contact-title {
        font-size: 1.75rem;
    }
}

/* ===========================
   Podcasts page specific styles
   =========================== */
.hero-split {
    padding: 60px 0;
    background: linear-gradient(180deg,#071028 0%, #041425 100%);
    color: #e6f7ff;
}
.hero-split h1 { color: #fff; }
.hero-split .small { color: rgba(230,247,255,0.7); }
.hero-split .btn-outline-light { border-color: rgba(255,255,255,0.08); color: #e6f7ff; }
.hero-split .btn-outline-light:hover { background: rgba(255,255,255,0.04); }
.promo-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(2,10,30,0.6), 0 0 30px rgba(0,180,255,0.06);
    border: 1px solid rgba(255,255,255,0.03);
}

/* Series cards */
.card.h-100 { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015)); border: none; }
.card .card-img-top { height: 180px; object-fit: cover; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.card .card-body { padding: 1rem; }
.card .card-title { font-size: 1.05rem; margin-bottom: .25rem; }
.card .card-text { color: rgba(220,230,255,0.8); font-size: .95rem; }
.card-footer { background: transparent; border-top: none; padding: .75rem 1rem 1rem; }
.card.h-100:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0,240,255,0.04); transition: var(--transition-fast); }

/* Filters & search */
.hero-split .btn-group .btn { border-radius: 999px; padding: .35rem .75rem; }
.hero-split input[type="text"], .hero-split .form-control { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.04); color: #e6f7ff; }
.hero-split input::placeholder { color: rgba(230,247,255,0.5); }

/* Featured episodes list */
.list-group-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.03); color: #e9f6ff; }
.list-group-item:hover { background: rgba(0,240,255,0.03); transform: translateY(-3px); box-shadow: var(--glow-cyan); }
.list-group-item h5 { margin-bottom: .35rem; }
.list-group-item p { color: rgba(230,247,255,0.7); }

/* small responsive tweaks */
@media (max-width: 992px) {
    .promo-video { height: 120px; }
    .card .card-img-top { height: 150px; }
}

@media (max-width: 576px) {
    .hero-split { padding: 40px 0; }
    .hero-split input.form-control { width: 100% !important; margin-top: .5rem; }
    .card .card-img-top { height: 120px; }
}

/* Small utility for subtle separators in podcasts list */
.podcast-sep { height:1px; background: rgba(255,255,255,0.03); margin: .75rem 0; }
