/* ============================================
   BITETHEMEDIA - BOLD & CUTTING-EDGE DESIGN
   ============================================ */

:root {
    /* Dark theme with neon accents */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Neon colors */
    --neon-blue: #00f0ff;
    --neon-purple: #bf00ff;
    --neon-green: #00ff88;
    --neon-pink: #ff0080;
    --neon-orange: #ff6b00;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #00f0ff 0%, #bf00ff 50%, #ff0080 100%);
    --gradient-blue-purple: linear-gradient(135deg, #00f0ff 0%, #bf00ff 100%);
    --gradient-purple-pink: linear-gradient(135deg, #bf00ff 0%, #ff0080 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);

    /* Glow effects */
    --glow-blue: 0 0 30px rgba(0, 240, 255, 0.5);
    --glow-purple: 0 0 30px rgba(191, 0, 255, 0.5);
    --glow-green: 0 0 30px rgba(0, 255, 136, 0.5);

    /* Spacing */
    --section-padding: clamp(80px, 15vh, 150px);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-purple) var(--bg-secondary);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

html::-webkit-scrollbar-thumb {
    background: var(--gradient-blue-purple);
    border-radius: 4px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
}

.cursor.hover {
    transform: scale(2);
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-purple);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   NAVIGATION - Floating Glass Style
   ============================================ */

.main-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.75rem 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--glow-purple);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.nav-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--neon-blue));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--bg-primary);
    background: var(--gradient-main);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    margin-left: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--gradient-blue-purple);
    color: var(--bg-primary);
}

.lang-divider {
    display: none;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 100px 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--neon-blue);
    padding-left: 1rem;
}

/* ============================================
   HERO - Immersive Full Screen
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Animated gradient background */
.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    top: -400px;
    left: -300px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -50px) scale(1.1);
    }
    50% {
        transform: translate(50px, 50px) scale(0.9);
    }
    75% {
        transform: translate(-50px, 25px) scale(1.05);
    }
}

/* Grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-logo-wrapper {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(0, 240, 255, 0.5));
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    padding: 0.2em 0;
    letter-spacing: -0.03em;
    overflow: visible;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleReveal 1s ease forwards;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleReveal 1s ease forwards, gradientShift 5s ease infinite;
}

.title-line:nth-child(1) {
    animation-delay: 0.4s, 0s;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s, 0s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(60px) skewY(3deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
        filter: blur(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--neon-blue);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
    transition: all 0.4s ease;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-blue-purple);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.hero-cta:hover {
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.hero-cta:hover::before {
    transform: translateX(0);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateY(3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-blue);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   VISION SECTION - Cards with 3D Hover
   ============================================ */

.vision-section {
    padding: var(--section-padding) 2rem;
    background: var(--bg-primary);
}

.vision-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vision-statement-l1 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.3;
}

.vision-statement-l2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.3;
}

.vision-statement-l1 strong,
.vision-statement-l2 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.pillar-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-main);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.pillar-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: transparent;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--bg-secondary);
    border-radius: 23px;
    z-index: -1;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue-purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--bg-primary);
    box-shadow: var(--glow-blue);
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-purple);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   NUMBERS SECTION - Glowing Stats
   ============================================ */

.numbers-section {
    padding: var(--section-padding) 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 60%);
    opacity: 0.1;
    filter: blur(100px);
}

.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.numbers-intro {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.3;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.number-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.2);
}

.number-card:hover::before {
    transform: scaleX(1);
}

.number-value {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline;
}

.number-suffix {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--neon-green);
}

.number-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 1rem;
}

.number-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ============================================
   CHANNELS OVERVIEW - Logo Marquee
   ============================================ */

.channels-overview {
    padding: var(--section-padding) 2rem;
    background: var(--bg-primary);
}

.channels-overview-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.channels-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.channel-logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.channel-logo-card {
    flex: 0 0 280px;
    padding: 4rem 3rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.channel-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-blue-purple);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.channel-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.channel-logo-card:hover::before {
    opacity: 0.1;
}

.channel-preview-logo {
    max-width: 180px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.channel-logo-card:hover .channel-preview-logo {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px var(--neon-blue));
}

/* ============================================
   CHANNEL SECTIONS - Immersive Layout
   ============================================ */

.channel-section {
    padding: var(--section-padding) 2rem;
    position: relative;
}

.theshemag-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.menderful-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%);
}

.channel-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.channel-container.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.channel-container.reverse .channel-visual {
    order: 2;
}

.channel-container.reverse .channel-info {
    order: 1;
}

.channel-visual {
    position: relative;
}

.channel-video-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    max-width: 350px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bg-tertiary);
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.channel-video-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-main);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    transition: opacity 0.5s ease;
}

.channel-video-wrapper:hover {
    transform: scale(1.02);
}

.channel-video-wrapper:hover::before {
    opacity: 1;
}

.channel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-sound-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--neon-blue);
    transform: scale(1.1);
}

.video-sound-btn.unmuted {
    background: var(--gradient-blue-purple);
    border-color: transparent;
}

.channel-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.channel-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.channel-slogan {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.channel-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.channel-description-secondary {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.channel-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.metric-item {
    flex: 1;
    min-width: 100px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-blue);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

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

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gradient-blue-purple);
    border-color: transparent;
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

/* ============================================
   VIDEO SHOWCASE - Horizontal Scroll
   ============================================ */

.video-showcase {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.showcase-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.showcase-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.carousel-wrapper {
    position: relative;
    padding: 0 4rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--gradient-blue-purple);
    border-color: transparent;
    box-shadow: var(--glow-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.video-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 220px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-tertiary);
    position: relative;
    scroll-snap-align: start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.video-card:hover {
    transform: translateY(-15px) scale(1.05);
}

.video-card:hover::before {
    opacity: 0.2;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover video {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    z-index: 2;
}

.video-views {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.video-channel-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: inline-block;
}

.theshemag-tag {
    background: var(--gradient-blue-purple);
    color: var(--bg-primary);
}

.menderful-tag {
    background: var(--neon-green);
    color: var(--bg-primary);
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands-section {
    padding: var(--section-padding) 2rem;
    background: var(--bg-primary);
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
}

.brands-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 770px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.brand-card {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
}

.brand-card:hover::before {
    opacity: 0.05;
}

.brand-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-purple-pink);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--bg-primary);
    position: relative;
    z-index: 1;
    box-shadow: var(--glow-purple);
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.brand-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.brand-highlight {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-blue);
    background: rgba(0, 240, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    position: relative;
    z-index: 1;
}

.result-guarantee {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.result-guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0.1;
}

.result-guarantee::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 60%);
    opacity: 0.2;
    filter: blur(100px);
}

.guarantee-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.guarantee-text-2 {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    max-width: 700px;
    margin: 0.75rem auto 0;
    line-height: 1.8;
}

.brands-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-blue-purple);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.brands-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

.brands-cta svg {
    transition: transform 0.3s ease;
}

.brands-cta:hover svg {
    transform: translateX(5px);
}

/* ============================================
   CAREERS SECTION
   ============================================ */

.careers-section {
    padding: var(--section-padding) 2rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--neon-blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--neon-purple) 0%, transparent 50%);
    opacity: 0.1;
    filter: blur(100px);
}

.careers-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.careers-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.careers-culture {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 4rem;
}

.careers-looking-for {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}

.looking-for-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.looking-for-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.looking-for-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.looking-for-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.looking-for-list li::before {
    content: '✦';
    color: var(--neon-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-blue-purple);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.careers-email {
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.careers-email a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
}

.careers-email a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: var(--section-padding) 2rem;
    background: var(--bg-primary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.contact-info-item a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-blue);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group label {
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--neon-blue);
    background: var(--bg-secondary);
    padding: 0 0.5rem;
}

.form-consent {
    margin-bottom: 1.5rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding-left: 2rem;
}

.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0.15rem;
    height: 1.25rem;
    width: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.consent-label:hover .checkmark {
    border-color: var(--neon-blue);
}

.consent-label input:checked ~ .checkmark {
    background: var(--gradient-blue-purple);
    border-color: var(--neon-blue);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0.4rem;
    top: 0.15rem;
    width: 0.3rem;
    height: 0.6rem;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-label input:checked ~ .checkmark:after {
    display: block;
}

.consent-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-blue-purple);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.form-success {
    display: none;
    text-align: center;
    color: var(--neon-green);
    font-weight: 500;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.form-success.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 5rem 2rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-blue);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-blue-purple);
    border-color: transparent;
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .channel-container,
    .channel-container.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .channel-container.reverse .channel-visual,
    .channel-container.reverse .channel-info {
        order: unset;
    }

    .channel-video-wrapper {
        max-width: 300px;
    }

    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    /* Hide cursor on touch devices */
    .cursor, .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    .main-nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 16px;
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .lang-switcher {
        margin-left: auto;
    }

    .hero-logo {
        height: 40px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .video-card {
        flex: 0 0 160px;
    }

    section {
        padding: 60px 1.5rem;
    }

    .channel-logos-grid {
        flex-direction: column;
        align-items: center;
    }

    .channel-logo-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .channel-metrics {
        flex-direction: column;
    }

    .looking-for-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .careers-looking-for {
        padding: 2rem;
    }

    .result-guarantee {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 32px;
    }

    .pillar-card, .brand-card {
        padding: 2rem 1.5rem;
    }

    .channel-logo {
        max-width: 160px;
    }

    .video-card {
        flex: 0 0 140px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
