/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-bg: #1a1a1a;
    --neon-cyan: #00ffff;
    --neon-purple: #8b5cf6;
    --neon-pink: #ff0080;
    --neon-green: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    --gradient-secondary: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    --gradient-bg: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0a0a0a 100%);
    
    /* Shadows */
    --glow-cyan: 0 0 20px var(--neon-cyan);
    --glow-purple: 0 0 20px var(--neon-purple);
    --glow-pink: 0 0 20px var(--neon-pink);
    
    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 5rem;
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Exo 2', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Video Background */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -3;
    opacity: 0.8;
}

/* Parallax Video Background */
.parallax-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.25;
    will-change: transform;
}

/* Enhanced Stars - Multiple Layers */
.stars-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 160px 30px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 120px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 250px 50px, #ffffff, transparent),
        radial-gradient(1px 1px at 300px 90px, rgba(255,255,255,0.6), transparent);
    background-size: 300px 200px;
    animation: twinkle-slow 25s linear infinite;
    z-index: -1;
}

.stars-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 50px 100px, var(--neon-cyan), transparent),
        radial-gradient(2px 2px at 150px 200px, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 250px 150px, var(--neon-cyan), transparent),
        radial-gradient(1px 1px at 350px 50px, rgba(0, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 450px 180px, var(--neon-cyan), transparent),
        radial-gradient(1px 1px at 550px 80px, rgba(0, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 650px 220px, var(--neon-cyan), transparent),
        radial-gradient(2px 2px at 750px 120px, rgba(0, 255, 255, 0.7), transparent);
    background-size: 400px 300px;
    animation: twinkle-medium 15s linear infinite;
    z-index: -1;
}

.stars-layer-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 80px 60px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 180px 160px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(2px 2px at 280px 40px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 380px 140px, rgba(139, 92, 246, 0.6), transparent),
        radial-gradient(1px 1px at 480px 80px, var(--neon-purple), transparent),
        radial-gradient(2px 2px at 580px 200px, rgba(139, 92, 246, 0.9), transparent),
        radial-gradient(1px 1px at 680px 100px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 780px 180px, rgba(139, 92, 246, 0.7), transparent);
    background-size: 500px 400px;
    animation: twinkle-fast 10s linear infinite;
    z-index: -1;
}

.nebula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    animation: nebula-drift 30s ease-in-out infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, var(--neon-cyan), transparent),
        radial-gradient(1px 1px at 100px 100px, var(--neon-purple), transparent),
        radial-gradient(1px 1px at 150px 150px, var(--neon-pink), transparent);
    background-size: 200px 200px;
    animation: particle-float 25s linear infinite;
}

/* Additional Cosmic Effects */
.cosmic-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.5px 0.5px at 30px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(0.5px 0.5px at 70px 90px, rgba(0, 255, 255, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 110px 20px, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 150px 130px, rgba(255, 0, 128, 0.2), transparent),
        radial-gradient(0.5px 0.5px at 190px 60px, rgba(0, 255, 136, 0.2), transparent);
    background-size: 250px 250px;
    animation: dust-drift 40s linear infinite;
    z-index: -1;
}

.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 128, 0.03) 0%, transparent 70%);
    animation: energy-pulse 15s ease-in-out infinite;
    z-index: -1;
}

/* Enhanced Star Animations */
@keyframes twinkle-slow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    25% { opacity: 0.8; transform: scale(1.1); }
    50% { opacity: 0.4; transform: scale(0.9); }
    75% { opacity: 1; transform: scale(1.05); }
}

@keyframes twinkle-medium {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    20% { opacity: 0.9; transform: scale(1.2); }
    40% { opacity: 0.5; transform: scale(0.8); }
    60% { opacity: 1; transform: scale(1.1); }
    80% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes twinkle-fast {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    10% { opacity: 1; transform: scale(1.3); }
    20% { opacity: 0.6; transform: scale(0.7); }
    30% { opacity: 0.9; transform: scale(1.1); }
    40% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
    60% { opacity: 0.7; transform: scale(0.8); }
    70% { opacity: 0.9; transform: scale(1.05); }
    80% { opacity: 0.5; transform: scale(0.95); }
    90% { opacity: 1; transform: scale(1.15); }
}

@keyframes dust-drift {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(20px) translateY(-10px) rotate(90deg); }
    50% { transform: translateX(-10px) translateY(20px) rotate(180deg); }
    75% { transform: translateX(15px) translateY(5px) rotate(270deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

@keyframes energy-pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    25% { 
        opacity: 0.6; 
        transform: scale(1.1) rotate(90deg); 
    }
    50% { 
        opacity: 0.4; 
        transform: scale(0.9) rotate(180deg); 
    }
    75% { 
        opacity: 0.8; 
        transform: scale(1.05) rotate(270deg); 
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes nebula-drift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(30px) translateY(-20px); }
    66% { transform: translateX(-20px) translateY(30px); }
}

@keyframes particle-float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 1rem 0;
}

.logo {
    text-align: center;
}

.logo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: avatar-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.avatar-image:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-purple);
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--neon-cyan),
        var(--neon-purple),
        var(--neon-pink),
        var(--neon-cyan)
    );
    opacity: 0;
    animation: avatar-glow-rotate 4s linear infinite;
    z-index: 1;
}

.avatar-container:hover .avatar-glow {
    opacity: 0.6;
}

.avatar-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.avatar-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 
        0 0 6px var(--neon-cyan),
        40px 20px 0 2px rgba(139, 92, 246, 0.6),
        80px 40px 0 1px rgba(255, 0, 128, 0.4);
    animation: avatar-particle-float 8s ease-in-out infinite;
}

.avatar-particles::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 20%;
    width: 2px;
    height: 2px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 
        0 0 4px var(--neon-purple),
        -30px 15px 0 1px rgba(0, 255, 255, 0.4),
        -60px 30px 0 1px rgba(255, 0, 128, 0.3);
    animation: avatar-particle-float 6s ease-in-out infinite reverse;
}

.logo-text-container {
    flex: 1;
    min-width: 300px;
}

@keyframes avatar-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-5px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg); 
    }
}

@keyframes avatar-glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes avatar-particle-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

.avatar-clicked {
    animation: avatar-click-pulse 0.3s ease-out;
}

@keyframes avatar-click-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.avatar-random-glow .avatar-glow {
    opacity: 1 !important;
    animation: avatar-glow-pulse 1s ease-in-out;
}

@keyframes avatar-glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    position: relative;
}

.glitch {
    position: relative;
    color: var(--text-primary);
    text-shadow: 
        0.05em 0 0 var(--neon-cyan),
        -0.05em -0.025em 0 var(--neon-purple),
        0.025em 0.05em 0 var(--neon-pink);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--neon-cyan);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--neon-purple);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-cyan);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.cta-button:hover {
    background: var(--neon-cyan);
    color: var(--primary-bg);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* ===== CYBER ORB ===== */
.cyber-orb {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 
        var(--glow-cyan),
        inset 0 0 20px rgba(0, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.orb-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.6;
}

.ring-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: -75px;
    animation: rotate 10s linear infinite;
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.ring-3 {
    width: 250px;
    height: 250px;
    top: -125px;
    left: -125px;
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-section,
.social-section,
.releases-section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: rgba(17, 17, 17, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.news-section {
    background: rgba(17, 17, 17, 0.35);
}

.social-section {
    background: rgba(17, 17, 17, 0.4);
}

/* ===== NEWS SECTION ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.news-card {
    position: relative;
    min-height: 350px;
    height: auto;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-20px) rotateX(5deg);
}

.news-card-inner {
    position: relative;
    width: 100%;
    min-height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
}

.news-card:hover .news-card-inner {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 30px 60px rgba(0, 255, 255, 0.2),
        0 0 40px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.news-date {
    position: relative;
    z-index: 2;
}

.news-date-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: 
        linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.news-date-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: rotate-glow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-date-glow {
    opacity: 1;
}

.news-day {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.news-month {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0.3rem 0;
    position: relative;
    z-index: 1;
}

.news-year {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.news-icon {
    position: relative;
    z-index: 2;
}

.news-icon-inner {
    width: 35px;
    height: 35px;
    background: 
        linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover .news-icon-inner {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.news-icon svg {
    width: 18px;
    height: 18px;
    color: white;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.news-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.news-card:hover .news-title {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news-card:hover .news-text {
    color: var(--text-primary);
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    flex-shrink: 0;
}

.news-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.news-card:hover .news-tag {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ===== NEWS LINKS ===== */
.news-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-shrink: 0;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-link:hover::before {
    left: 100%;
}

.news-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--neon-purple);
    color: var(--text-primary);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.news-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.news-link-svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.news-link:hover .news-link-svg {
    transform: scale(1.1);
}

.news-link-svg.spotify {
    color: #1db954;
}

.news-link-svg.youtube {
    color: #ff0000;
}

.news-link-svg.instagram {
    color: #e4405f;
}

.news-link-svg.external {
    color: var(--neon-cyan);
}

.news-link-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.news-card:hover .news-glow-effect {
    opacity: 1;
}

.news-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.news-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--neon-cyan),
        60px 30px 0 2px rgba(139, 92, 246, 0.6),
        120px 60px 0 1px rgba(255, 0, 128, 0.4),
        180px 20px 0 3px rgba(0, 255, 136, 0.5);
    animation: particle-float-news 8s ease-in-out infinite;
}

.news-particles::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 3px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 
        0 0 8px var(--neon-purple),
        -40px 20px 0 2px rgba(0, 255, 255, 0.4),
        -80px 40px 0 1px rgba(255, 0, 128, 0.3);
    animation: particle-float-news 6s ease-in-out infinite reverse;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle-float-news {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.news-clicked {
    animation: news-click-pulse 0.3s ease-out;
}

@keyframes news-click-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
    border-color: var(--neon-cyan);
}

.social-link.youtube:hover {
    box-shadow: 0 0 20px #ff0000;
    border-color: #ff0000;
}

.social-link.spotify:hover {
    box-shadow: 0 0 20px #1db954;
    border-color: #1db954;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.social-info {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* ===== RELEASES GRID ===== */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.release-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-purple);
    border-color: var(--neon-purple);
}

.release-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-card:hover .release-cover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-cyan);
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.release-info {
    padding: 1.5rem;
}

.release-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

.release-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.release-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

.footer-info p {
    color: var(--text-muted);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== TRACK DETAILS ===== */
.track-info-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .track-info-overlay {
    opacity: 1;
}

.track-duration,
.track-genre {
    background: rgba(0, 0, 0, 0.8);
    color: var(--neon-cyan);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.track-details {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.bpm,
.key {
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== LOAD MORE BUTTON ===== */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    position: relative;
    background: transparent;
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.load-more-btn:hover {
    background: var(--neon-purple);
    color: var(--primary-bg);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

/* ===== MODAL STYLES ===== */
.youtube-modal,
.soundscape-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--secondary-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--glow-cyan);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 128, 0.2);
    color: var(--neon-pink);
}

/* ===== YOUTUBE PLAYER ===== */
.player-container {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.player-info h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.player-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.player-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn:hover {
    background: var(--neon-cyan);
    color: var(--primary-bg);
}

.control-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== SOUNDSCAPE MODAL ===== */
.soundscape-content {
    max-width: 600px;
}

.soundscape-header {
    text-align: center;
    margin-bottom: 2rem;
}

.soundscape-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.soundscape-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.soundscape-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.soundscape-option {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.soundscape-option:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.soundscape-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.soundscape-option:hover::before {
    left: 100%;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.soundscape-option h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.soundscape-option p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ENHANCED VISUAL EFFECTS ===== */
/* Video background overlay for better text readability */
.video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Parallax video overlay for depth effect */
.parallax-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Improved parallax performance */
.parallax-video-bg,
.stars-layer-1,
.stars-layer-2,
.stars-layer-3,
.nebula,
.particles,
.cosmic-dust,
.energy-waves {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Enhanced star glow effects */
.stars-layer-1::before,
.stars-layer-2::before,
.stars-layer-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(1px);
    opacity: 0.5;
    z-index: -1;
}

/* Additional cosmic particles */
.cosmic-dust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(0.3px 0.3px at 25px 35px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(0.3px 0.3px at 65px 85px, rgba(0, 255, 255, 0.3), transparent),
        radial-gradient(0.3px 0.3px at 105px 15px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(0.3px 0.3px at 145px 125px, rgba(255, 0, 128, 0.3), transparent),
        radial-gradient(0.3px 0.3px at 185px 55px, rgba(0, 255, 136, 0.3), transparent);
    background-size: 300px 300px;
    animation: dust-drift 50s linear infinite reverse;
}

/* Energy wave enhancements */
.energy-waves::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(255, 0, 128, 0.06) 0%, transparent 60%);
    animation: energy-pulse 20s ease-in-out infinite reverse;
}

/* Mobile optimizations for video background */
@media (max-width: 768px) {
    .video-bg {
        opacity: 0.6;
    }
    
    .parallax-video-bg {
        opacity: 0.25;
    }
    
    .stars-layer-1,
    .stars-layer-2,
    .stars-layer-3 {
        background-size: 200px 150px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 184px;
        min-height: calc(100vh - 20px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .avatar-container {
        width: 60px;
        height: 60px;
    }
    
    .logo-text-container {
        min-width: auto;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .cyber-orb {
        width: 250px;
        height: 250px;
    }
    
    .news-section {
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-card {
        min-height: 320px;
        height: auto;
    }
    
    .news-card:hover {
        transform: translateY(-10px) rotateX(2deg);
    }
    
    .news-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .news-date-inner {
        padding: 1rem;
    }
    
    .news-day {
        font-size: 2rem;
    }
    
    .news-icon-inner {
        width: 30px;
        height: 30px;
    }
    
    .news-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .news-links {
        margin-top: 0.8rem;
    }
    
    .news-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .news-link-icon {
        width: 18px;
        height: 18px;
    }
    
    .news-link-svg {
        width: 14px;
        height: 14px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hide any hamburger menu elements */
    .hamburger,
    .menu-toggle,
    .mobile-menu-toggle,
    .nav-toggle,
    .burger,
    [class*="hamburger"],
    [class*="menu-toggle"],
    [class*="burger"],
    button[aria-label*="menu"],
    button[aria-label*="Menu"],
    .navbar-toggler,
    .menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Hide any mobile navigation menus */
    .mobile-menu,
    .nav-menu,
    .navbar-menu,
    .navigation-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Hide any navigation elements that might appear in mobile */
    nav:not(.social-links),
    .navigation,
    .navbar,
    .header-nav,
    .main-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Ensure header only shows logo content */
    .header {
        display: block !important;
    }
    
    .header .container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .header .logo {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 204px;
        min-height: calc(100vh - 40px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .cyber-orb {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
