
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --neon-green: #00ff41;
    --neon-green-light: #39ff6e;
    --dark-green: #003d1a;
    --bg-dark: #0a0e0d;
    --bg-darker: #050707;
    --bg-card: #0f1412;
    --text-light: #ffffff;
    --text-gray: #c5c5c5;
    --text-dark-gray: #8b9299;
    --border-color: rgba(0, 255, 65, 0.15);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    overflow-y: auto;
}

#main-content {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===================================
   SECTION TRANSITION LOADER
   =================================== */
.section-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    overflow: hidden;
}

.section-loader.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.section-loader-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(0, 255, 65, 0.2);
    border-top-color: var(--neon-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.6),
                0 0 80px rgba(0, 255, 65, 0.4);
    position: relative;
    z-index: 10;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Particle Animation */
.section-loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 255, 65, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(0, 255, 65, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(2px 2px at 15% 90%, rgba(0, 255, 65, 0.2), transparent);
    background-size: 200% 200%;
    animation: particles 8s linear infinite;
    opacity: 0.6;
}

.section-loader::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 40% 20%, rgba(0, 255, 65, 0.2), transparent),
        radial-gradient(2px 2px at 75% 45%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(1px 1px at 25% 60%, rgba(0, 255, 65, 0.2), transparent),
        radial-gradient(2px 2px at 85% 85%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(1px 1px at 10% 40%, rgba(0, 255, 65, 0.2), transparent),
        radial-gradient(2px 2px at 55% 15%, rgba(0, 255, 65, 0.3), transparent),
        radial-gradient(1px 1px at 70% 95%, rgba(0, 255, 65, 0.2), transparent);
    background-size: 200% 200%;
    animation: particles 10s linear infinite reverse;
    opacity: 0.5;
}

@keyframes particles {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, -100% -100%, 50% 100%, 100% 0%, -50% -50%, 100% 50%, 0% 100%;
    }
}

/* Glow effect around spinner */
.section-loader-spinner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ===================================
   FLOATING SUBMIT BUTTON
   =================================== */
.floating-submit-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--neon-green) 0%, #00cc33 100%);
    color: var(--bg-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 255, 65, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-submit-btn:hover {
    background: linear-gradient(135deg, #00ff55 0%, #00dd44 100%);
    box-shadow: 0 12px 50px rgba(0, 255, 65, 0.8);
    transform: translateY(-5px) scale(1.05);
}

.floating-submit-btn svg {
    animation: musicBounce 2s ease-in-out infinite;
}

.floating-submit-btn span {
    white-space: nowrap;
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 255, 65, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 255, 65, 0.7), 0 0 60px rgba(0, 255, 65, 0.3);
    }
}

@keyframes musicBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-5deg);
    }
    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

/* Mobile Floating Button */
@media (max-width: 768px) {
    .floating-submit-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .floating-submit-btn span {
        display: none;
    }
    
    .floating-submit-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .floating-submit-btn svg {
        margin: 0;
    }
}

/* ===================================
   NAVIGATION
   =================================== */
/* ===================================
   NAVBAR STYLES
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 14, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.6));
    transition: all 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(0, 255, 65, 0.9));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4), 
                inset 0 0 15px rgba(0, 255, 65, 0.1);
    font-weight: 700;
    border-radius: 8px;
    transform: translateY(-2px);
}

.nav-link.active::before {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 15px var(--neon-green), 
                0 0 30px rgba(0, 255, 65, 0.6),
                0 2px 10px rgba(0, 255, 65, 0.8);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--neon-green), 
                    0 0 30px rgba(0, 255, 65, 0.6),
                    0 2px 10px rgba(0, 255, 65, 0.8);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-green), 
                    0 0 40px rgba(0, 255, 65, 0.8),
                    0 2px 15px rgba(0, 255, 65, 1);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Legacy classes for compatibility */
.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    letter-spacing: 2px;
}

.hamburger {
    display: none;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px;
    width: 100%;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 65, 0.08) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Responsive Hero Logo */
.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-logo {
    width: clamp(250px, 40vw, 500px);
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.6));
    animation: heroLogoGlow 4s ease-in-out infinite alternate;
    will-change: opacity;
}

@media (max-width: 768px) {
    .hero-logo {
        width: clamp(200px, 60vw, 350px);
    }
    
    .hero {
        padding: 120px 1rem 60px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: clamp(180px, 70vw, 300px);
    }
}

@keyframes heroLogoGlow {
    0%   { opacity: 0.9; }
    100% { opacity: 1; }
}

/* Legacy neon-logo - static, no animation */
.neon-logo {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
    letter-spacing: -0.05em;
    line-height: 1;
}

.star {
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    word-wrap: break-word;
    max-width: 100%;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-weight: 500;
    word-wrap: break-word;
    max-width: 100%;
}

.subtitle {
    font-size: clamp(0.85rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    word-wrap: break-word;
    max-width: 100%;
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.hero-stat-plus {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--neon-green);
    margin-left: 2px;
    vertical-align: super;
}

.hero-stat-label {
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 255, 65, 0.25);
    flex-shrink: 0;
}

/* ── Audio Waveform ── */
.hero-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-top: 0.8rem;
    width: 100%;
}

.hero-waveform span {
    display: inline-block;
    width: 3px;
    border-radius: 3px;
    background: var(--neon-green);
    opacity: 0.7;
    animation: waveBar 1.2s ease-in-out infinite;
}

.hero-waveform span:nth-child(1) { height: 10px; animation-delay: 0s; }
.hero-waveform span:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.hero-waveform span:nth-child(3) { height: 35px; animation-delay: 0.3s; }
.hero-waveform span:nth-child(4) { height: 20px; animation-delay: 0.45s; }
.hero-waveform span:nth-child(5) { height: 38px; animation-delay: 0.6s; }
.hero-waveform span:nth-child(6) { height: 25px; animation-delay: 0.75s; }
.hero-waveform span:nth-child(7) { height: 32px; animation-delay: 0.9s; }
.hero-waveform span:nth-child(8) { height: 16px; animation-delay: 1.05s; }
.hero-waveform span:nth-child(9) { height: 28px; animation-delay: 1.2s; }

@keyframes waveBar {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%       { transform: scaleY(1);   opacity: 1; }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    white-space: nowrap;
    box-sizing: border-box;
}

.cta-button.primary {
    background: var(--neon-green);
    color: var(--bg-dark);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}

.cta-button.primary:hover {
    background: var(--neon-green-light);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.6);
    transform: translateY(-3px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.4);
    transform: translateY(-3px);
}

.cta-button.submit-song {
    background: linear-gradient(135deg, #00ff41 0%, #00cc33 100%);
    color: var(--bg-dark);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.cta-button.submit-song::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button.submit-song:hover::before {
    left: 100%;
}

.cta-button.submit-song:hover {
    background: linear-gradient(135deg, #00ff55 0%, #00dd44 100%);
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.8), 0 0 100px rgba(0, 255, 65, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.cta-button.submit-song svg {
    animation: musicNote 2s ease-in-out infinite;
}

@keyframes musicNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Navbar Submit Link Styling */
.nav-link-submit {
    background: linear-gradient(135deg, var(--neon-green) 0%, #00cc33 100%) !important;
    color: var(--bg-dark) !important;
    font-weight: 700 !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    position: relative;
    overflow: hidden;
}

.nav-link-submit::before {
    display: none !important;
}

.nav-link-submit:hover {
    background: linear-gradient(135deg, #00ff55 0%, #00dd44 100%) !important;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Navbar Admin Link Styling */
.nav-link-admin {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.nav-link-admin::before {
    display: none !important;
}

.nav-link-admin:hover {
    background: linear-gradient(135deg, #7c8ff5 0%, #8b5cb8 100%) !important;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Hide admin link on mobile */
@media (max-width: 768px) {
    .nav-admin-item {
        display: none;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--neon-green), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* SECTIONS */
section {
    padding: 5rem 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Exception for popular-music-section - has its own slider with transform */
section.popular-music-section.visible,
section.popular-music-section {
    transform: none !important;
}

/* Initial state for animation - DISABLED for better UX */
section {
    opacity: 1;
    transform: none;
}

section.animate-in:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-label {
    display: inline-block;
    color: var(--neon-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
    word-wrap: break-word;
    max-width: 100%;
}

.section-description {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    word-wrap: break-word;
}

/* Smooth Scroll Animation */
@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);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ABOUT SECTION */
.about {
    background: var(--bg-darker);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-main {
    margin-bottom: 3rem;
}

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    animation: scaleIn 0.6s ease-out;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.4s ease;
    opacity: 1;
    transform: none;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
    background: rgba(0, 255, 65, 0.08);
}

.feature-icon {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    position: relative;
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 1;
    transform: none;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
    background: rgba(0, 255, 65, 0.03);
}

.service-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 255, 65, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.service-icon {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* PORTFOLIO SECTION */
.portfolio {
    background: var(--bg-darker);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.portfolio-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1;
    transform: none;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .portfolio-item {
        height: 320px;
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .portfolio-item {
        height: 280px;
        min-height: 250px;
    }
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 61, 26, 0.3) 100%);
    z-index: 1;
}

.portfolio-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    z-index: 2;
    background: linear-gradient(to top, rgba(5, 7, 7, 0.95) 0%, transparent 100%);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(5, 7, 7, 0.98) 0%, rgba(0, 255, 65, 0.1) 100%);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.3);
    border-color: var(--neon-green);
}

.portfolio-content {
    position: relative;
    z-index: 3;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.portfolio-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    font-size: 0.75rem;
    color: var(--text-gray);
    background: rgba(0, 255, 65, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-weight: 500;
}

/* CONTACT SECTION */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ SECTION */
.faq {
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
}

.faq-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--neon-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--neon-green);
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-dark-gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background: var(--neon-green);
    color: var(--bg-dark);
    border: 2px solid var(--neon-green);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.submit-button:hover:not(:disabled) {
    background: var(--neon-green-light);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* FOOTER */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* FOOTER */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.5));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.8));
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: var(--text-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(0, 255, 65, 0.03);
}

.social-link:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    color: var(--text-gray);
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    font-size: 0.9rem;
}

/* Legacy styles for compatibility */
.neon-logo-small {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
    transition: all 0.3s ease;
}

.footer-logo:hover .neon-logo-small {
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.9));
    transform: scale(1.05);
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.footer-logo p {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.copyright {
    text-align: center;
    color: var(--text-gray);
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 13, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, rgba(0, 255, 65, 0.3) 0%, rgba(0, 255, 65, 0.1) 100%);
        border-left: 5px solid var(--neon-green);
        box-shadow: inset 0 0 25px rgba(0, 255, 65, 0.3),
                    0 0 15px rgba(0, 255, 65, 0.4);
        font-weight: 700;
        position: relative;
    }
    
    .nav-link.active::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: var(--neon-green);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--neon-green),
                    0 0 20px rgba(0, 255, 65, 0.6);
        animation: pulse-dot 1.5s ease-in-out infinite;
    }
    
    @keyframes pulse-dot {
        0%, 100% {
            transform: translateY(-50%) scale(1);
            opacity: 1;
        }
        50% {
            transform: translateY(-50%) scale(1.3);
            opacity: 0.7;
        }
    }
    
    .nav-link-submit {
        margin: 1rem 2rem;
        width: calc(100% - 4rem) !important;
        border-radius: 8px !important;
        border-bottom: none !important;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .hero {
        padding: 100px 1rem 60px;
        min-height: 90vh;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .hero-logo {
        width: clamp(200px, 60vw, 350px);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 0.15em;
    }
    
    .tagline {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
    
    .subtitle {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .arrow-down {
        height: 22px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        box-sizing: border-box;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .about-features,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        height: 320px;
        min-height: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .artist-card {
        padding: 1.5rem 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 100%;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .hero {
        padding: 90px 1rem 50px;
        max-width: 100vw;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-logo {
        width: clamp(180px, 70vw, 280px);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 0.2em;
        word-wrap: break-word;
    }
    
    .tagline {
        font-size: clamp(1rem, 3vw, 1.3rem);
        word-wrap: break-word;
    }
    
    .subtitle {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        word-wrap: break-word;
    }
    
    section {
        padding: 3rem 0;
        max-width: 100vw;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        word-wrap: break-word;
    }
    
    .section-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        word-wrap: break-word;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .service-number {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    .portfolio-item {
        height: 280px;
        min-height: 250px;
        max-width: 100%;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    .portfolio-content p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .artist-card {
        padding: 1.2rem 0.8rem;
        max-width: 100%;
    }
    
    .artist-icon {
        font-size: 2rem;
    }
    
    .artist-card h4 {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .contact-item {
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .cta-buttons {
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 100px 1rem 40px;
    }
    
    .hero-logo {
        width: clamp(200px, 30vw, 300px);
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: 100%;
    }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artists-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-logo {
        width: clamp(400px, 35vw, 600px);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* FLOATING MUSIC ELEMENTS */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.float-item {
    position: absolute;
    color: var(--neon-green);
    opacity: 0.15;
    filter: drop-shadow(0 0 10px var(--neon-green));
    transition: transform 0.3s ease-out;
    animation: floatUpDown 6s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.float-item:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.float-item:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.float-item:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-delay: 0.5s;
}

.float-item:nth-child(6) {
    top: 50%;
    right: 8%;
    animation-delay: 2.5s;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.float-item:hover {
    opacity: 0.3;
    filter: drop-shadow(0 0 20px var(--neon-green));
}

/* Hide floating elements on mobile for performance */
@media (max-width: 768px) {
    .floating-elements {
        display: none;
    }
}


/* STATS COUNTER ANIMATION */
.stat-number {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 
        0 0 30px rgba(0, 255, 65, 0.8),
        0 0 40px rgba(0, 255, 65, 0.6);
}

/* Pulse animation when counting */
@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-number.counting {
    animation: statPulse 0.5s ease-in-out;
}


/* LOGO RESPONSIVE */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
}


/* ARTISTS & PARTNERS SECTION */
.artists-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.section-header-small {
    text-align: center;
    margin-bottom: 3rem;
}

.artists-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.artists-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-gray);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

.artist-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.artist-card:hover::before {
    transform: translateX(100%);
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    background: rgba(0, 255, 65, 0.05);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.2);
}

.artist-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.artist-card:hover .artist-icon {
    filter: grayscale(0);
    transform: scale(1.2) rotate(5deg);
}

.artist-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.artist-card:hover h4 {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.artist-photo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.artist-card:hover .artist-photo-img {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    transform: scale(1.05);
}

.artist-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.artist-link:hover {
    color: var(--neon-green);
}

.artist-link svg {
    width: 14px;
    height: 14px;
}

/* Responsive Artists Grid */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .artist-card {
        padding: 1.5rem 1rem;
    }
    
    .artist-icon {
        font-size: 2rem;
    }
    
    .artist-card h4 {
        font-size: 0.9rem;
    }
    
    .artists-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.artist-card:nth-child(1) { animation-delay: 0.1s; }
.artist-card:nth-child(2) { animation-delay: 0.15s; }
.artist-card:nth-child(3) { animation-delay: 0.2s; }
.artist-card:nth-child(4) { animation-delay: 0.25s; }
.artist-card:nth-child(5) { animation-delay: 0.3s; }
.artist-card:nth-child(6) { animation-delay: 0.35s; }
.artist-card:nth-child(7) { animation-delay: 0.4s; }
.artist-card:nth-child(8) { animation-delay: 0.45s; }
.artist-card:nth-child(9) { animation-delay: 0.5s; }
.artist-card:nth-child(10) { animation-delay: 0.55s; }


/* ============================================
   ADMIN LINK IN FOOTER
   ============================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.admin-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   SIMPLE HIDDEN ADMIN BUTTON
   ============================================ */

.simple-admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green) 0%, #00cc33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    color: var(--bg-dark);
}

.simple-admin-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.simple-admin-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 255, 65, 0.6);
}

.simple-admin-btn svg {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .simple-admin-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

/* Hide floating button on mobile */
@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .copyright {
        width: 100%;
        text-align: center;
    }
}


/* ============================================
   NEWS SECTION STYLES
   ============================================ */

.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(10, 14, 13, 0.98) 0%, 
        rgba(15, 20, 18, 0.95) 50%,
        rgba(0, 61, 26, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 65, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.news-empty {
    text-align: center;
    padding: 80px 20px;
}

.news-empty svg {
    color: rgba(0, 255, 65, 0.3);
    margin-bottom: 20px;
}

.news-empty p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: rgba(15, 20, 18, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

.news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 255, 65, 0.5);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.news-author,
.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.news-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-light) 100%);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.5);
    gap: 15px;
}

/* ============================================
   NEWS LIST PAGE STYLES
   ============================================ */

.news-list-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(10, 14, 13, 0.98) 0%, 
        rgba(15, 20, 18, 0.95) 50%,
        rgba(0, 61, 26, 0.9) 100%);
}

.page-header-news {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.news-empty-large {
    text-align: center;
    padding: 100px 20px;
}

.news-empty-large svg {
    color: rgba(0, 255, 65, 0.3);
    margin-bottom: 30px;
}

.news-empty-large h2 {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.news-empty-large p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.btn-home {
    display: inline-block;
    padding: 12px 30px;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

.news-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.news-card-large {
    background: rgba(15, 20, 18, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: all 0.4s ease;
}

.news-card-large:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

.news-image-large {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-large:hover .news-image-large img {
    transform: scale(1.1);
}

.news-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 255, 65, 0.5);
}

.news-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.news-date-badge {
    background: rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-weight: 600;
}

.news-content-large {
    padding: 30px;
}

.news-meta-large {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.meta-author,
.meta-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title-large {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt-large {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--neon-green);
    color: var(--bg-dark);
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

/* ============================================
   NEWS DETAIL PAGE STYLES
   ============================================ */

.news-detail-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(10, 14, 13, 0.98) 0%, 
        rgba(15, 20, 18, 0.95) 50%,
        rgba(0, 61, 26, 0.9) 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.meta-item svg {
    color: var(--neon-green);
}

.meta-item strong {
    color: var(--text-white);
    font-weight: 600;
}

.article-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.facebook {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-3px);
}

.share-btn.twitter {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-3px);
}

.share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
    transform: translateY(-3px);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

/* Related News */
.related-news {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(0, 255, 65, 0.2);
}

.related-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-card {
    background: rgba(15, 20, 18, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.1);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 15px 30px rgba(0, 255, 65, 0.2);
}

.related-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 255, 65, 0.5);
}

.related-content {
    padding: 20px;
}

.related-date {
    display: block;
    font-size: 12px;
    color: var(--neon-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.related-content h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-link {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-link:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid,
    .news-grid-large {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   RESPONSIVE STYLES - PUBLIC PAGES
   Mobile First Approach
   ============================================ */

/* ============================================
   TABLET & BELOW (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    /* Navbar */
    nav .container {
        padding: 0 1.5rem;
    }
    
    nav .nav-links {
        gap: 1.5rem;
    }
    
    nav .nav-links a {
        font-size: 14px;
    }
    
    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* News */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ============================================
   MOBILE LANDSCAPE & TABLET PORTRAIT (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Navbar */
    nav {
        padding: 1rem 0;
    }
    
    nav .logo {
        height: 40px;
    }
    
    nav .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid var(--border-color);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    nav .nav-links.active {
        right: 0;
    }
    
    nav .nav-links a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }
    
    nav .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1000;
        padding: 5px;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--neon-green);
        border-radius: 2px;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Mobile overlay */
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 998;
        backdrop-filter: blur(4px);
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 1rem 0 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* About */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        width: 100%;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* News */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ */
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Submit Song Page */
    .submit-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        width: 100%;
    }
}

/* ============================================
   MOBILE PORTRAIT (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    /* Navbar */
    nav .logo {
        height: 35px;
    }
    
    nav .nav-links {
        width: 100%;
        right: -100%;
        padding: 70px 20px 20px;
    }
    
    nav .nav-links a {
        padding: 12px 0;
        font-size: 15px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    /* Hero */
    .hero {
        min-height: 50vh;
        padding: 70px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin: 1rem 0 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Services */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* About */
    .about-image {
        max-width: 100%;
    }
    
    /* Portfolio */
    .portfolio-card {
        padding: 1rem;
    }
    
    .portfolio-info h3 {
        font-size: 1rem;
    }
    
    .portfolio-info p {
        font-size: 0.85rem;
    }
    
    /* News */
    .news-card {
        padding: 1rem;
    }
    
    .news-content h3 {
        font-size: 1rem;
    }
    
    .news-meta {
        font-size: 0.8rem;
    }
    
    /* FAQ */
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding-right: 2rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact-info-item {
        padding: 1.25rem;
    }
    
    .contact-info-item h3 {
        font-size: 1rem;
    }
    
    .contact-info-item p,
    .contact-info-item a {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-logo {
        height: 50px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding: 1.5rem 0;
    }
    
    /* Submit Song Page */
    .submit-header h1 {
        font-size: 1.75rem;
    }
    
    .submit-header p {
        font-size: 0.9rem;
    }
    
    .submit-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
    
    /* Track Submission Page */
    .track-container {
        padding: 1.5rem 1rem;
    }
    
    .status-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* News Detail Page */
    .news-detail-header h1 {
        font-size: 1.75rem;
    }
    
    .news-detail-meta {
        font-size: 0.85rem;
    }
    
    .news-detail-content {
        font-size: 0.95rem;
    }
}

/* ============================================
   SMALL MOBILE (max-width: 375px)
   ============================================ */
@media (max-width: 375px) {
    /* Hero */
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Service cards */
    .service-icon {
        font-size: 2.25rem;
        width: 60px;
        height: 60px;
    }
    
    /* Forms */
    .form-control {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION (Mobile)
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin: 0.75rem 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn,
    nav .nav-links a,
    .faq-question,
    .contact-info-item a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Remove hover effects */
    .btn:hover,
    .service-card:hover,
    .portfolio-card:hover,
    .news-card:hover {
        transform: none;
    }
    
    /* Add active states */
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active,
    .portfolio-card:active,
    .news-card:active {
        transform: scale(0.99);
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */
@media (prefers-contrast: high) {
    :root {
        --border-color: rgba(0, 255, 65, 0.5);
    }
    
    .btn,
    .service-card,
    .portfolio-card,
    .news-card,
    .contact-info-item {
        border: 2px solid var(--neon-green);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    nav,
    .hero-buttons,
    .footer,
    .btn,
    .mobile-menu-toggle,
    .mobile-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .service-card,
    .portfolio-card,
    .news-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   UTILITY CLASSES FOR RESPONSIVE
   ============================================ */

/* Hide/Show on mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
    
    .show-desktop {
        display: block !important;
    }
}

/* Text alignment responsive */
@media (max-width: 768px) {
    .text-mobile-center {
        text-align: center !important;
    }
    
    .text-mobile-left {
        text-align: left !important;
    }
}

/* Spacing responsive */
@media (max-width: 768px) {
    .mb-mobile-0 {
        margin-bottom: 0 !important;
    }
    
    .mb-mobile-1 {
        margin-bottom: 1rem !important;
    }
    
    .mb-mobile-2 {
        margin-bottom: 2rem !important;
    }
    
    .p-mobile-0 {
        padding: 0 !important;
    }
    
    .p-mobile-1 {
        padding: 1rem !important;
    }
    
    .p-mobile-2 {
        padding: 2rem !important;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.testimonials-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
    transform: translateX(100%);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    background: rgba(0, 255, 65, 0.05);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.testimonial-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.testimonial-photo-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
}

.testimonial-photo-placeholder svg {
    width: 24px;
    height: 24px;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.testimonial-position {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.testimonial-position .separator {
    color: var(--neon-green);
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
    color: #fbbf24;
}

.testimonial-rating svg {
    width: 14px;
    height: 14px;
}

.testimonial-message {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-style: italic;
    position: relative;
}

.no-testimonials {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

.no-testimonials svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-testimonials p {
    font-size: 1.1rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-photo,
    .testimonial-photo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-photo-placeholder svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-info h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-position {
        font-size: 0.8rem;
    }
    
    .testimonial-rating svg {
        width: 12px;
        height: 12px;
    }
    
    .testimonial-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-header {
        gap: 0.6rem;
    }
    
    .testimonial-photo,
    .testimonial-photo-placeholder {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-info h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-position {
        font-size: 0.75rem;
    }
    
    .testimonial-message {
        font-size: 0.85rem;
    }
}


/* ============================================
   ADDITIONAL CONTENT STYLES - ABOUT PAGE
   ============================================ */

/* About Mission Section */
.about-mission {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--neon-green);
    border-radius: 8px;
}

.about-mission h4 {
    color: var(--neon-green);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
}

.about-mission h4:first-child {
    margin-top: 0;
}

.about-mission p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-mission ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-mission ul li {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.about-mission ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 18px;
}

/* Team Section */
.team-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.section-header-small {
    text-align: center;
    margin-bottom: 50px;
}

.team-title,
.equipment-title,
.pricing-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-subtitle,
.equipment-subtitle,
.pricing-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.member-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--neon-green);
    transition: all 0.4s ease;
}

.team-member:hover .member-icon {
    background: rgba(0, 255, 65, 0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.4);
}

.team-member h4 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-role {
    color: var(--neon-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Equipment Section */
.equipment-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.equipment-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}

.equipment-category:hover {
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.equipment-category h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.equipment-category h4 svg {
    color: var(--neon-green);
}

.equipment-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-category ul li {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.equipment-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 20px;
    line-height: 1.4;
}

/* ============================================
   ADDITIONAL CONTENT STYLES - SERVICES PAGE
   ============================================ */

/* Pricing Section */
.pricing-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-green) 0%, #00cc33 100%);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.4);
}

.pricing-card h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.price-label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.price-amount {
    display: block;
    color: var(--neon-green);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-period {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 18px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 50px;
    color: var(--neon-green);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.pricing-note {
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 255, 65, 0.05);
    border-left: 4px solid var(--neon-green);
    border-radius: 8px;
}

.pricing-note p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.pricing-note strong {
    color: var(--neon-green);
}

/* Services CTA Section */
.services-cta {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 204, 51, 0.05) 100%);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    text-align: center;
}

.services-cta h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-cta p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: var(--neon-green);
    color: var(--bg-dark);
    border: 2px solid var(--neon-green);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid rgba(0, 255, 65, 0.3);
}

.cta-btn.secondary:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - ADDITIONAL CONTENT
   ============================================ */

@media (max-width: 768px) {
    /* About Page */
    .about-mission {
        padding: 20px;
    }
    
    .about-mission h4 {
        font-size: 18px;
    }
    
    .team-section,
    .equipment-section,
    .pricing-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .team-title,
    .equipment-title,
    .pricing-title {
        font-size: 24px;
    }
    
    .team-grid,
    .equipment-categories,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-icon {
        width: 80px;
        height: 80px;
    }
    
    .team-member h4 {
        font-size: 20px;
    }
    
    /* Services Page */
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .services-cta {
        padding: 40px 20px;
    }
    
    .services-cta h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* Reduced Motion Support - Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable specific animations */
    .section-loader-spinner,
    .hero-logo,
    .floating-submit-btn,
    .slider-track,
    .music-slide {
        animation: none !important;
    }
}

/* Performance Optimizations */
.slider-track {
    will-change: transform;
}

.music-slide {
    will-change: transform, opacity;
}

.nav-link::before {
    will-change: width;
}

.play-btn {
    will-change: transform;
}

/* Remove will-change when not animating */
.slider-track:not(.animating),
.music-slide:not(.active-slide),
.nav-link:not(:hover)::before,
.play-btn:not(:hover) {
    will-change: auto;
}

/* GPU Acceleration for smooth animations */
.service-card,
.portfolio-item,
.music-card,
.news-card,
.cta-button {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize font rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent layout shift */
img,
video {
    max-width: 100%;
    height: auto;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

/* Hide focus outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ===================================
   CSS VARIABLES FOR ANIMATIONS
   =================================== */
:root {
    /* Transition speeds */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animation durations */
    --animation-fast: 0.3s;
    --animation-normal: 0.6s;
    --animation-slow: 1s;
    
    /* Easing functions */
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    /* Hide non-essential elements */
    .navbar,
    .floating-submit-btn,
    .section-loader,
    .slider-nav,
    .slider-dots,
    footer {
        display: none !important;
    }
    
    /* Optimize for print */
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
    
    /* Show URLs after links */
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* ===================================
   END OF STYLESHEET
   =================================== */

/* ===================================
   HERO RESPONSIVE & STATS OVERRIDE
   =================================== */

/* ── Semua perangkat: hero selalu penuh layar ── */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
}

/* ── Desktop besar ≥1440px ── */
@media (min-width: 1440px) {
    .hero {
        padding: 140px 4rem 100px;
    }
    .hero-stats {
        gap: 0;
    }
    .hero-stat-item {
        padding: 0 3rem;
    }
    .hero-waveform {
        height: 50px;
    }
}

/* ── Tablet landscape / desktop kecil 1024px–1439px ── */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero {
        padding: 130px 3rem 90px;
    }
    .hero-stat-item {
        padding: 0 2.5rem;
    }
}

/* ── Tablet portrait 769px–1023px ── */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero {
        padding: 110px 2rem 70px;
    }
    .hero-logo {
        width: clamp(220px, 45vw, 380px);
    }
    .hero-stat-item {
        padding: 0 1.8rem;
    }
    .hero-waveform {
        height: 36px;
    }
}

/* ── Mobile landscape ── */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 70px 2rem 30px;
    }
    .hero-logo {
        width: clamp(120px, 25vw, 200px);
        margin-bottom: 0.8rem;
    }
    .logo-container {
        margin-bottom: 0.8rem;
    }
    .hero-title {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
        margin-bottom: 0.4rem;
    }
    .tagline {
        font-size: clamp(0.8rem, 2vw, 1rem);
        margin-bottom: 0.3rem;
    }
    .subtitle {
        font-size: clamp(0.7rem, 1.8vw, 0.9rem);
        margin-bottom: 1rem;
    }
    .hero-stats {
        margin-bottom: 0.8rem;
    }
    .hero-stat-number {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    .hero-stat-label {
        font-size: 0.6rem;
    }
    .hero-stat-item {
        padding: 0 1rem;
    }
    .hero-stat-divider {
        height: 24px;
    }
    .hero-waveform {
        height: 28px;
    }
}

/* ── Mobile portrait ≤768px ── */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        padding: 90px 1.5rem 50px;
        justify-content: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-logo {
        width: clamp(180px, 58vw, 320px);
    }
    .hero-stat-item {
        padding: 0 1.2rem;
    }
    .hero-stat-divider {
        height: 30px;
    }
    .hero-waveform {
        height: 36px;
    }
}

/* ── Mobile kecil ≤480px ── */
@media (max-width: 480px) {
    .hero {
        padding: 80px 1rem 40px;
    }
    .hero-logo {
        width: clamp(160px, 68vw, 280px);
    }
    .hero-title {
        font-size: clamp(1.3rem, 5.5vw, 1.8rem);
        letter-spacing: 0.15em;
    }
    .tagline {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    .subtitle {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
        margin-bottom: 1.5rem;
    }
    .hero-stats {
        gap: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    .hero-stat-item {
        padding: 0 0.8rem;
    }
    .hero-stat-number {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .hero-stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }
    .hero-stat-divider {
        height: 26px;
    }
    .hero-waveform {
        height: 30px;
        gap: 3px;
    }
    .hero-waveform span {
        width: 2px;
    }
}

/* ── HP sangat kecil ≤360px ── */
@media (max-width: 360px) {
    .hero {
        padding: 75px 0.8rem 35px;
    }
    .hero-logo {
        width: clamp(140px, 72vw, 240px);
    }
    .hero-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        letter-spacing: 0.1em;
    }
    .hero-stat-item {
        padding: 0 0.6rem;
    }
    .hero-stat-number {
        font-size: clamp(1.2rem, 4.5vw, 1.6rem);
    }
    .hero-stat-label {
        font-size: 0.55rem;
    }
    .hero-waveform span {
        width: 2px;
    }
    .hero-waveform {
        gap: 2px;
        height: 26px;
    }
    .scroll-indicator {
        bottom: 12px;
        font-size: 0.65rem;
    }
    .arrow-down {
        height: 18px;
    }
}
