@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --neon: #00f2ff;
    --neon-glow: rgba(0, 242, 255, 0.4);
    --bg-dark: #050505;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Page Background Glow Effects */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.03) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
}

/* Cursor Glow */
#cursor-blur {
    position: fixed;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Enhanced Glassmorphism Card */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.glass:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 255, 0.15);
    transform: translateY(-5px);
}

/* Responsive Navigation */
nav {
    position: fixed; width: 100%; padding: 20px 5%; /* 5% instead of 10% to give more room for premium feel */
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(5,5,5,0.8); backdrop-filter: blur(15px); z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
    transition: padding 0.3s ease, background 0.3s ease;
}

nav.scrolled {
    padding: 15px 5%;
    background: rgba(5,5,5,0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.brand-logo {
    font-family: 'Outfit', sans-serif; 
    color: var(--neon); 
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 15px var(--neon-glow);
}

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { 
    color: var(--text-primary); 
    text-decoration: none; 
    font-size: 0.85rem; 
    font-weight: 600; 
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--neon);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-glow);
}

.nav-links a:hover, .nav-links a.active { color: var(--neon); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.menu-btn span { 
    width: 30px; height: 2px; background: var(--neon); 
    transition: 0.3s all ease;
    border-radius: 2px;
}

.menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Buttons & Links */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--neon);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-glow);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--neon);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(0,242,255,0.1);
    box-shadow: inset 0 0 10px var(--neon-glow);
}

/* Sections */
.main-wrapper {
    padding-top: 100px;
    min-height: calc(100vh - 300px);
}

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

.section-title {
    font-family: 'Outfit', sans-serif;
    color: var(--neon);
    font-size: 2.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,242,255,0.2);
}

/* Layout Grids */
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-glass);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.work-details {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.work-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Typing */
.gradient-text {
    background: linear-gradient(to right, #fff, var(--neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover Icons for Premium feel */
.icon-container {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
    transition: transform 0.3s ease;
}

.glass:hover .icon-container {
    transform: scale(1.1) translateY(-10px);
}

/* Forms */
.contact-form {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--neon);
    box-shadow: 0 0 15px rgba(0,242,255,0.1);
    background: rgba(0,0,0,0.5);
}

/* Global Layout Classes */
.hero-section {
    min-height: 100vh; display: flex; align-items: center; padding: 120px 5% 60px; position: relative; overflow: hidden;
}
.hero-left {
    flex: 1.2; z-index: 2;
}
.hero-buttons {
    display: flex; gap: 25px; align-items: center; flex-wrap: wrap; margin-top: 30px;
}
.stats-container {
    display: flex; gap: 40px; margin-top: 60px; border-top: 1px solid var(--border-glass); padding-top: 35px; flex-wrap: wrap;
}
.hero-right {
    flex: 0.8; display: flex; justify-content: center; align-items: center; position: relative; margin-top: 30px;
}

/* Mobile View Fixes */
@media (max-width: 900px) {
    .works-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
    /* Navbar Mobile Fixes */
    nav { padding: 15px 5%; }
    nav.scrolled { padding: 15px 5%; }
    .menu-btn { display: flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(5,5,5,0.98); flex-direction: column;
        align-items: center; padding: 40px 0; gap: 30px;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
        border-bottom: 1px solid var(--neon);
        height: 100vh;
    }
    .nav-links.active { clip-path: circle(150% at 100% 0); }
    .nav-links a { font-size: 1.2rem; }
    
    .section-title { font-size: 1.8rem; }
    .glass { padding: 25px; }

    /* Layout Specific Mobile Fixes */
    .hero-section {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
    }
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .stats-container {
        justify-content: center;
        gap: 20px;
    }
    .hero-right {
        margin-top: 60px;
        display: none;
    }
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .footer-container > div {
        align-items: center;
    }
}

@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-20px); filter: drop-shadow(0 20px 30px var(--neon-glow)); } 
}
