/**
 * User NRU - Bold Neon Style
 * Inspired by vibrant purple/magenta aesthetics
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===========================================
   1. CSS Variables
   =========================================== */
:root {
    /* Primary Colors - Vibrant Neons */
    --color-bg-dark: #0a0a0a;
    --color-bg-purple: #1a0a2e;
    --color-bg-section: #0d0d0d;
    
    /* Neon Accents */
    --neon-purple: #a855f7;
    --neon-magenta: #ec4899;
    --neon-pink: #f472b6;
    --neon-cyan: #22d3ee;
    --neon-yellow: #fde047;
    --neon-green: #4ade80;
    --neon-orange: #fb923c;
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-neon: linear-gradient(90deg, #a855f7, #ec4899, #f472b6);
    --gradient-bg: linear-gradient(180deg, #1a0a2e 0%, #0a0a0a 100%);
    
    /* Text */
    --color-white: #ffffff;
    --color-gray-light: #e5e5e5;
    --color-gray: #a1a1aa;
    --color-gray-dark: #52525b;
    
    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Effects */
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
    --glow-magenta: 0 0 20px rgba(236, 72, 153, 0.5), 0 0 40px rgba(236, 72, 153, 0.3);
    --glow-text: 0 0 10px currentColor, 0 0 20px currentColor;
}

/* ===========================================
   2. Reset & Base
   =========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--neon-magenta);
    color: var(--color-white);
}

/* ===========================================
   3. Geometric Background Pattern
   =========================================== */
.geo-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(45deg, var(--neon-purple) 25%, transparent 25%),
        linear-gradient(-45deg, var(--neon-purple) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--neon-purple) 75%),
        linear-gradient(-45deg, transparent 75%, var(--neon-purple) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

/* Floating geometric shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--neon-purple);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--neon-magenta);
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: var(--neon-cyan);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 18s ease-in-out infinite;
}

.shape-4 {
    top: 30%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: var(--neon-yellow);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float 22s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===========================================
   4. Layout
   =========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.main-content {
    position: relative;
    z-index: 1;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ===========================================
   5. Navigation
   =========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo:hover {
    color: var(--neon-purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ===========================================
   6. Hero Section
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--neon-cyan);
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--color-white);
}

.hero-title .highlight {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================================
   7. Buttons
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--neon-purple);
}

.btn-outline:hover {
    background: var(--neon-purple);
    box-shadow: var(--glow-purple);
}

/* ===========================================
   8. Section Titles
   =========================================== */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-magenta);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 20px;
    color: var(--color-white);
}

.section-title .accent {
    color: var(--neon-purple);
}

/* ===========================================
   9. About Section
   =========================================== */
.about {
    background: var(--color-bg-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: 20px;
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-purple);
    transform: translate(15px, 15px);
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-bg-purple) 0%, var(--color-bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.glitch-text {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--neon-purple);
    opacity: 0.3;
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: 'NRU';
    position: absolute;
    top: 0;
    left: 0;
}

.glitch-text::before {
    animation: glitch-1 2s infinite;
    color: var(--neon-cyan);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2s infinite;
    color: var(--neon-magenta);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(5px, -5px); }
    40% { transform: translate(5px, 5px); }
    60% { transform: translate(-5px, -5px); }
    80% { transform: translate(-5px, 5px); }
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 25px;
    line-height: 1.9;
}

.about-content p.lead::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 15px;
    color: var(--neon-purple);
}

.highlight-box {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), transparent);
    border-left: 3px solid var(--neon-purple);
    padding: 20px 25px;
    margin: 30px 0;
}

.highlight-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.location-tags {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tag {
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--neon-purple);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-purple);
}

/* ===========================================
   10. Music Section
   =========================================== */
.music {
    background: var(--color-bg-section);
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
}

.music-content {
    max-width: 800px;
}

.music-content > p {
    font-size: 1.15rem;
    color: var(--color-gray-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

.music-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.feature-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================================
   11. Album Section
   =========================================== */
.album {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.album-visual {
    position: relative;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0a 50%, #1a0a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--neon-magenta);
    overflow: hidden;
}

.album-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(168, 85, 247, 0.03) 2px,
            rgba(168, 85, 247, 0.03) 4px
        );
    pointer-events: none;
}

.album-title-display {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    line-height: 1.2;
    padding: 20px;
    color: var(--color-white);
}

.album-title-display .line {
    display: block;
}

.album-title-display .accent {
    color: var(--neon-yellow);
}

.album-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 15px;
    background: var(--neon-magenta);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--color-white);
}

.album-content > p {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.album-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.album-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(253, 224, 71, 0.1);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    font-size: 0.9rem;
}

.album-feature::before {
    content: '▸';
}

/* ===========================================
   12. Social Media Section
   =========================================== */
.social-media {
    background: var(--color-bg-dark);
    position: relative;
    display: block;
    visibility: visible;
    opacity: 1;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
}

.socials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    width: 100%;
}

.social-card {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(168, 85, 247, 0.3);
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-8px);
    box-shadow: var(--glow-purple);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.05));
}

.social-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-card-icon.instagram {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}

.social-card-icon.soundcloud {
    background: linear-gradient(135deg, #ff7700, #ff9900);
}

.social-card-icon.spotify {
    background: linear-gradient(135deg, #1db954, #1ed760);
}

.social-card-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-card-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #1991da);
}

.social-card-icon.tiktok {
    background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.social-card-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0a66c2);
}

.social-card-icon.linkedin {
    background: linear-gradient(135deg, #0a66c2, #0950c7);
}

.social-card:hover .social-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.social-card p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.social-arrow {
    font-size: 1.5rem;
    color: var(--neon-purple);
    transition: all 0.3s ease;
    margin-top: auto;
}

.social-card:hover .social-arrow {
    transform: translateX(8px);
    color: var(--neon-magenta);
}

/* ===========================================
   13. Collaboration Section
   =========================================== */
.collab {
    background: var(--color-bg-dark);
    text-align: center;
}

.collab-content {
    max-width: 700px;
    margin: 0 auto;
}

.collab-content p {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-bottom: 25px;
    line-height: 1.9;
}

.collab-keywords {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.keyword {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gray-dark);
    transition: all 0.3s ease;
}

.keyword:hover {
    color: var(--neon-purple);
    text-shadow: var(--glow-text);
}

.keyword::after {
    content: ' ✦';
    color: var(--neon-magenta);
    font-size: 0.8rem;
}

.keyword:last-child::after {
    display: none;
}

/* ===========================================
   13. Contact Section
   =========================================== */
.contact {
    background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg-purple) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.contact-info p {
    color: var(--color-gray);
    margin-bottom: 30px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-decoration: none;
    padding: 20px 30px;
    border: 2px solid var(--neon-cyan);
    transition: all 0.3s ease;
}

.email-link:hover {
    background: var(--neon-cyan);
    color: var(--color-bg-dark);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.social-links h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-white);
}

.social-grid {
    display: grid;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-purple);
    background: rgba(168, 85, 247, 0.1);
    transform: translateX(10px);
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    font-size: 1.2rem;
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
}

.social-handle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 3px;
}

/* ===========================================
   14. Footer
   =========================================== */
.site-footer {
    background: var(--color-bg-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
}

.footer-text {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-text span {
    color: var(--neon-magenta);
}

/* ===========================================
   15. Decorative Elements
   =========================================== */
.pixel-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--neon-magenta);
}

.pixel-corner.top-left {
    top: 0;
    left: 0;
}

.pixel-corner.top-right {
    top: 0;
    right: 0;
}

.pixel-corner.bottom-left {
    bottom: 0;
    left: 0;
}

.pixel-corner.bottom-right {
    bottom: 0;
    right: 0;
}

/* Scanlines effect */
.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
}

/* Neon border animation */
@keyframes neon-border {
    0%, 100% {
        box-shadow: 0 0 5px var(--neon-purple),
                    0 0 10px var(--neon-purple),
                    0 0 20px var(--neon-purple);
    }
    50% {
        box-shadow: 0 0 10px var(--neon-magenta),
                    0 0 20px var(--neon-magenta),
                    0 0 40px var(--neon-magenta);
    }
}

/* ===========================================
   16. Utilities
   =========================================== */
.text-gradient {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    text-shadow: var(--glow-text);
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================
   17. Responsive
   =========================================== */
@media (max-width: 1024px) {
    .about-grid,
    .album-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .album-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 12vw, 8rem);
    }
    
    .music-features {
        grid-template-columns: 1fr;
    }
    
    .album-features {
        justify-content: center;
    }
    
    .collab-keywords {
        flex-direction: column;
        align-items: center;
    }
    
    .keyword::after {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .glitch-text {
        font-size: 5rem;
    }

    .socials-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .social-card {
        padding: 30px 20px;
    }

    .social-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .social-card h3 {
        font-size: 1.2rem;
    }

    .social-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .location-tags {
        justify-content: center;
    }

    .about-content p.lead::first-letter {
        font-size: 3rem;
    }

    .socials-container {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 25px 20px;
    }
}
