/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #ff4444;
    --secondary-color: #00ffff;
    --accent-color: #ff00ff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.8);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff4444, #ff00ff);
    --gradient-secondary: linear-gradient(135deg, #00ffff, #0099ff);
    --gradient-accent: linear-gradient(135deg, #ff00ff, #8800ff);
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.logo-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.nav-social a {
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.nav-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ===== MUSIC PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 2s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-cover-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.track-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.track-title {
    font-weight: 600;
    display: block;
}

.track-artist {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.play-pause {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    color: white;
}

.player-streaming {
    display: flex;
    gap: 0.5rem;
}

.streaming-link {
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.streaming-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 68, 68, 0.1), transparent 70%),
                radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1), transparent 50%),
                var(--bg-primary);
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 68, 68, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 0, 255, 0.4) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Logo with Flames */
.hero-logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.logo-background-image {
    width: 400px;
    height: 400px;
    object-fit: contain;
    opacity: 0.3;
    filter: blur(1px) brightness(0.8);
    animation: logoBackgroundFloat 6s ease-in-out infinite;
}

.logo-background-fallback {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.mythical-emblem-bg {
    position: relative;
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 68, 68, 0.4), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.3), transparent 60%),
        linear-gradient(45deg, #1a1a1a, #2a2a2a, #1a1a1a);
    border: 4px solid rgba(255, 68, 68, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoBackgroundFloat 6s ease-in-out infinite;
}

.central-mic-bg {
    position: relative;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.6), rgba(139, 0, 0, 0.4));
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-core-bg {
    font-size: 80px;
    filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.8));
    animation: micBackgroundPulse 3s ease-in-out infinite;
}

/* Large Flame Animation */
.flame-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
}

.flame {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameRise 3s ease-in-out infinite;
    opacity: 0.4;
    filter: blur(2px);
}

.flame-1 {
    left: 50%;
    bottom: 40%;
    transform: translateX(-50%);
    width: 40px;
    height: 80px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 107, 53, 0.7) 40%,
        rgba(255, 0, 0, 0.6) 80%,
        transparent 100%);
    animation-delay: 0s;
}

.flame-2 {
    left: 40%;
    bottom: 35%;
    transform: translateX(-50%);
    width: 35px;
    height: 70px;
    background: linear-gradient(180deg, 
        rgba(255, 107, 53, 0.8) 0%,
        rgba(255, 0, 0, 0.7) 50%,
        transparent 100%);
    animation-delay: 0.4s;
}

.flame-3 {
    left: 60%;
    bottom: 35%;
    transform: translateX(-50%);
    width: 38px;
    height: 75px;
    background: linear-gradient(180deg, 
        rgba(255, 0, 0, 0.8) 0%,
        rgba(255, 107, 53, 0.7) 40%,
        rgba(255, 255, 0, 0.6) 80%,
        transparent 100%);
    animation-delay: 0.8s;
}

.flame-4 {
    left: 30%;
    bottom: 30%;
    transform: translateX(-50%);
    width: 30px;
    height: 60px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 0, 0.7) 0%,
        rgba(255, 107, 53, 0.6) 60%,
        transparent 100%);
    animation-delay: 1.2s;
}

.flame-5 {
    left: 70%;
    bottom: 30%;
    transform: translateX(-50%);
    width: 32px;
    height: 65px;
    background: linear-gradient(180deg, 
        rgba(255, 0, 0, 0.7) 0%,
        rgba(255, 255, 0, 0.6) 70%,
        transparent 100%);
    animation-delay: 1.6s;
}

.flame-6 {
    left: 25%;
    bottom: 45%;
    transform: translateX(-50%);
    width: 25px;
    height: 50px;
    background: linear-gradient(180deg, 
        rgba(255, 107, 53, 0.7) 0%,
        rgba(255, 0, 0, 0.6) 50%,
        transparent 100%);
    animation-delay: 2s;
}

.flame-7 {
    left: 75%;
    bottom: 45%;
    transform: translateX(-50%);
    width: 28px;
    height: 55px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 0, 0.7) 0%,
        rgba(255, 0, 0, 0.6) 60%,
        transparent 100%);
    animation-delay: 2.4s;
}

/* Background Logo Animations */
@keyframes logoBackgroundFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(1deg); 
        opacity: 0.4;
    }
}

@keyframes micBackgroundPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(255, 68, 68, 1)) drop-shadow(0 0 40px rgba(255, 255, 0, 0.6));
    }
}

@keyframes flameRise {
    0% { 
        transform: translateX(-50%) scaleY(1) scaleX(1); 
        opacity: 0.4; 
    }
    25% { 
        transform: translateX(-50%) scaleY(1.3) scaleX(0.8); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateX(-50%) scaleY(0.9) scaleX(1.2); 
        opacity: 0.5; 
    }
    75% { 
        transform: translateX(-50%) scaleY(1.2) scaleX(0.9); 
        opacity: 0.7; 
    }
    100% { 
        transform: translateX(-50%) scaleY(1) scaleX(1); 
        opacity: 0.4; 
    }
}

/* Kalki Logo Container */
.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.kalki-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kalki-logo {
    position: relative;
    z-index: 10;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-main-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.logo-main-image:hover {
    transform: scale(1.05);
}

/* Fallback Logo for Hero */
.logo-fallback-hero {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mythical-emblem-hero {
    position: relative;
    width: 160px;
    height: 160px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 68, 68, 0.3), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.3), transparent 50%),
        linear-gradient(45deg, #1a1a1a, #2a2a2a, #1a1a1a);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(255, 68, 68, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    animation: logoFloat 4s ease-in-out infinite;
}

.central-mic-hero {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: 2px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(255, 68, 68, 1),
        inset 0 0 15px rgba(255, 215, 0, 0.3);
}

.mic-core-hero {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
    animation: micPulse 2s ease-in-out infinite;
}

.brand-ring {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
    letter-spacing: 1px;
}

@keyframes micPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-main-enhanced {
    width: 160px;
    height: 160px;
    position: relative;
    animation: logoFloat 4s ease-in-out infinite;
}

.mythical-logo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-core {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.3), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 68, 68, 0.3), transparent 50%),
        linear-gradient(45deg, #2C2C2C, #1a1a1a, #2C2C2C);
    border: 3px solid #8B4513;
    box-shadow: 
        0 0 30px rgba(255, 68, 68, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.2),
        0 0 60px rgba(255, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-emblem {
    position: relative;
    width: 60px;
    height: 60px;
    background: 
        radial-gradient(circle, rgba(255, 68, 68, 0.8), rgba(139, 0, 0, 0.6)),
        linear-gradient(45deg, #ff4444, #8B0000);
    border-radius: 50%;
    border: 2px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(255, 68, 68, 1),
        inset 0 0 15px rgba(255, 215, 0, 0.4);
    z-index: 5;
}

.mic-center {
    font-size: 30px;
    filter: 
        drop-shadow(0 0 10px rgba(255, 255, 255, 1))
        drop-shadow(0 0 20px rgba(255, 68, 68, 0.8));
    animation: micPulse 2s ease-in-out infinite;
    z-index: 6;
}

.flame-crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 25px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 0, 0.9) 0%,
        rgba(255, 107, 53, 0.9) 30%,
        rgba(255, 0, 0, 0.8) 70%,
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameFlicker 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

.ornate-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #8B4513;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: 
        conic-gradient(from 0deg, 
            rgba(139, 69, 19, 0.6) 0deg,
            rgba(255, 215, 0, 0.3) 45deg,
            rgba(139, 69, 19, 0.6) 90deg,
            rgba(255, 68, 68, 0.3) 135deg,
            rgba(139, 69, 19, 0.6) 180deg,
            rgba(255, 215, 0, 0.3) 225deg,
            rgba(139, 69, 19, 0.6) 270deg,
            rgba(255, 68, 68, 0.3) 315deg,
            rgba(139, 69, 19, 0.6) 360deg);
    animation: ringRotate 15s linear infinite;
    box-shadow: 
        0 0 15px rgba(139, 69, 19, 0.6),
        inset 0 0 15px rgba(255, 215, 0, 0.2);
}

.ring-segment {
    position: absolute;
    width: 8px;
    height: 20px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.segment-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: segmentGlow 2s ease-in-out infinite;
}

.segment-2 {
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    animation: segmentGlow 2s ease-in-out infinite 0.5s;
}

.segment-3 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    animation: segmentGlow 2s ease-in-out infinite 1s;
}

.segment-4 {
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    animation: segmentGlow 2s ease-in-out infinite 1.5s;
}

.sword-element {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.sword-blade {
    width: 6px;
    height: 35px;
    background: linear-gradient(180deg, 
        rgba(192, 192, 192, 0.9),
        rgba(169, 169, 169, 0.8),
        rgba(105, 105, 105, 0.7));
    margin: 0 auto;
    border-radius: 3px 3px 0 0;
    box-shadow: 
        0 0 10px rgba(192, 192, 192, 0.6),
        inset 1px 0 3px rgba(255, 255, 255, 0.3);
    animation: swordGlow 3s ease-in-out infinite;
}

.sword-hilt {
    width: 12px;
    height: 8px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    margin: -2px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.8);
}

/* Enhanced Animations */
@keyframes segmentGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
        background: linear-gradient(90deg, #FFD700, #FFA500);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 1);
        background: linear-gradient(90deg, #FFFF00, #FFD700);
    }
}

@keyframes swordGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(192, 192, 192, 0.6),
            inset 1px 0 3px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(192, 192, 192, 1),
            inset 1px 0 5px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(0, 255, 255, 0.4);
    }
}

/* Mythical Emblem Fallback */
.mythical-emblem {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-mic {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 
        0 0 20px rgba(255, 68, 68, 0.8),
        inset 0 0 20px rgba(255, 215, 0, 0.3);
}

.mic-core {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
    animation: micPulse 2s ease-in-out infinite;
}

.mic-flame {
    position: absolute;
    top: -15px;
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, #ff6b35, #ff0000, #ffff00);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameFlicker 1s ease-in-out infinite;
}

.ring-outer {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 10s linear infinite;
}

.ring-text {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    letter-spacing: 2px;
}




/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes micPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}


@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@keyframes logoGlow {
    from { 
        filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.8));
    }
    to { 
        filter: drop-shadow(0 0 40px rgba(255, 68, 68, 1)) drop-shadow(0 0 60px rgba(255, 0, 255, 0.6));
    }
}

@keyframes logoGlow {
    from { box-shadow: 0 0 30px rgba(255, 68, 68, 0.5); }
    to { box-shadow: 0 0 50px rgba(255, 68, 68, 0.8), 0 0 70px rgba(255, 0, 255, 0.4); }
}

.hero-title {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 3;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
}

.cta-btn.tertiary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--text-secondary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* ===== QUICK ACCESS TILES ===== */
.quick-access {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tile {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.tile:hover::before {
    transform: scaleX(1);
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.tile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tile h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tile p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.tile-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
}

.tile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro h3,
.journey h3,
.vision h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    width: 2px;
    height: 50px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-primary);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

.vision-points {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-point i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.vision-point h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-visual {
    position: relative;
}

.artist-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: var(--transition-fast);
}

.artist-image:hover .image-overlay {
    opacity: 0.2;
}

/* ===== DISCOGRAPHY SECTION ===== */
.discography {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.music-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 68, 68, 0.1);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.music-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.music-cover {
    position: relative;
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.music-card:hover .music-cover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.music-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.5);
}

.music-info {
    padding: 1.5rem;
}

.track-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.track-genre {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 68, 68, 0.1);
}

/* ===== LYRICS SECTION ===== */
.lyrics {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.lyrics-search {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-bar {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#lyrics-search {
    flex: 1;
    padding: 15px 20px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
}

#lyrics-search::placeholder {
    color: var(--text-muted);
}

.search-btn {
    padding: 15px 20px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--gradient-accent);
}

.lyrics-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.lyrics-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lyrics-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.2);
}

.lyrics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.lyrics-header h3 {
    color: var(--text-primary);
}

.genre-tag {
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lyrics-text {
    margin-bottom: 2rem;
}

.highlighted-line {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    color: var(--text-primary);
    font-style: italic;
}

.lyrics-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lyrics-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.stat i {
    color: var(--primary-color);
}

/* ===== STYLES SECTION ===== */
.styles {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.style-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    overflow: hidden;
}

.style-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    transition: var(--transition-fast);
}

.style-card.trap .style-bg {
    background: radial-gradient(circle, #FF00FF, transparent);
}

.style-card.gangsta-rap .style-bg {
    background: radial-gradient(circle, #8B0000, transparent);
}

.style-card.conscious-rap .style-bg {
    background: radial-gradient(circle, #228B22, transparent);
}

.style-card.old-school .style-bg {
    background: radial-gradient(circle, #8B4513, transparent);
}

.style-card.new-school .style-bg {
    background: radial-gradient(circle, #00CED1, transparent);
}

.style-card.mumbale-rap .style-bg {
    background: radial-gradient(circle, #FF6347, transparent);
}

.style-card.alternative-hiphop .style-bg {
    background: radial-gradient(circle, #9370DB, transparent);
}

.style-card.jazz-rap .style-bg {
    background: radial-gradient(circle, #DAA520, transparent);
}

.style-card.crunk .style-bg {
    background: radial-gradient(circle, #FF4500, transparent);
}

.style-card.west-coast .style-bg {
    background: radial-gradient(circle, #FFD700, transparent);
}

.style-card.east-coast .style-bg {
    background: radial-gradient(circle, #4169E1, transparent);
}

.style-card.dirty-south .style-bg {
    background: radial-gradient(circle, #8B4513, transparent);
}

.style-card.cloud-rap .style-bg {
    background: radial-gradient(circle, #87CEEB, transparent);
}

.style-card.drill .style-bg {
    background: radial-gradient(circle, #2C2C2C, transparent);
}

.style-card.grime .style-bg {
    background: radial-gradient(circle, #556B2F, transparent);
}

.style-card.hyphy .style-bg {
    background: radial-gradient(circle, #FF1493, transparent);
}

.style-card.lofi-hiphop .style-bg {
    background: radial-gradient(circle, #FFB6C1, transparent);
}

.style-card.trap-soul .style-bg {
    background: radial-gradient(circle, #DC143C, transparent);
}

.style-card.christian-hiphop .style-bg {
    background: radial-gradient(circle, #4682B4, transparent);
}

.style-card.freestyle-rap .style-bg {
    background: radial-gradient(circle, #32CD32, transparent);
}

.style-card.latin-rap .style-bg {
    background: radial-gradient(circle, #FF6B35, transparent);
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.style-card:hover .style-bg {
    opacity: 0.2;
}

.style-content {
    position: relative;
    z-index: 2;
}

.style-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.style-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.style-card p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.style-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sample-btn {
    padding: 12px 24px;
    background: var(--gradient-secondary);
    border: none;
    color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.sample-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.collab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.collab-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.process-flow h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.flow-step h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.flow-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===== MERCH SECTION ===== */
.merch {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.merch-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(0, 255, 255, 0.1);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.merch-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.item-image {
    position: relative;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.merch-item:hover .item-image img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.merch-item:hover .item-overlay {
    opacity: 1;
}

.quick-view {
    padding: 12px 24px;
    background: var(--gradient-secondary);
    border: none;
    color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.quick-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.item-info {
    padding: 1.5rem;
}

.item-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.add-to-cart:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 68, 68, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.social-connect {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.social-link.youtube:hover { border-color: #FF0000; }
.social-link.instagram:hover { border-color: #E4405F; }
.social-link.twitter:hover { border-color: #1DA1F2; }
.social-link.tiktok:hover { border-color: #000000; }
.social-link.facebook:hover { border-color: #1877F2; }

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    transition: var(--transition-fast);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.footer-logo-icon {
    font-size: 30px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.footer-brand h3 {
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1rem;
        transition: var(--transition-fast);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        top: 70px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-social {
        display: none;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
    }
    
    .tiles-grid,
    .music-grid,
    .styles-grid,
    .services-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .music-filters,
    .merch-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn,
    .category-btn {
        flex-shrink: 0;
    }
    
    .player-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .player-streaming {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .music-player {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .tile,
    .service-card,
    .style-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Intersection Observer Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* ===== UTILITY CLASSES ===== */
.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}