/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-primary: #00ff88;
    --accent-secondary: #ff0055;
    --accent-neon: #00ffff;
    --spotify-green: #1DB954;
    --youtube-red: #FF0000;
    --apple-pink: #fc3c44;
    --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    --twitter-blue: #000000;
    --border-color: #222222;
    --card-bg: rgba(20, 20, 20, 0.8);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
}

.logo:hover {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-medium);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all var(--transition-medium);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Section Styling */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-primary);
    margin: 20px auto 0;
}

/* Artist Section */
.artist-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.artist-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.artist-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.artist-image {
    position: relative;
}

.artist-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.artist-image img:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.artist-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.artist-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 255, 136, 0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.artist-name {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.artist-bio {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-medium);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.spotify:hover {
    border-color: var(--spotify-green);
    color: var(--spotify-green);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.2);
}

.social-link.instagram:hover {
    border-color: #e1306c;
    color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
}

.social-link.twitter:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
}

/* Releases Section */
.releases-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.release-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.release-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.release-card:hover {
    border-color: var(--accent-primary);
}

.release-badge {
    position: absolute;
    top: -1px;
    left: 40px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.release-badge.album {
    background: var(--accent-secondary);
}

.release-artwork {
    position: relative;
}

.release-artwork img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.release-artwork img:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: scale(1.02);
}

.artwork-placeholder {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.artwork-placeholder.neon {
    background: linear-gradient(135deg, #001a1a 0%, #003333 50%, #001a1a 100%);
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
    text-shadow: 0 0 20px var(--accent-neon);
}

.artwork-placeholder.neon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 136, 0.2) 0%, transparent 50%);
}

.artwork-placeholder.youngsta {
    background: linear-gradient(135deg, #1a0a1a 0%, #330033 50%, #1a0a1a 100%);
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
    text-shadow: 0 0 20px var(--accent-secondary);
}

.artwork-placeholder.youngsta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 85, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 100, 150, 0.2) 0%, transparent 50%);
}

.release-title {
    font-size: 3rem;
    margin-bottom: 8px;
}

.release-artist {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.release-type {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

/* Streaming Links */
.streaming-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-medium);
}

.stream-btn svg {
    width: 18px;
    height: 18px;
}

.stream-btn.spotify:hover {
    background: var(--spotify-green);
    border-color: var(--spotify-green);
    color: #000;
}

.stream-btn.youtube:hover {
    background: var(--youtube-red);
    border-color: var(--youtube-red);
    color: #fff;
}

.stream-btn.apple:hover {
    background: var(--apple-pink);
    border-color: var(--apple-pink);
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-medium);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

.contact-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.contact-btn.email {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
}

.contact-btn.email:hover {
    background: var(--accent-neon);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.contact-btn.instagram {
    border-color: #e1306c;
    color: #e1306c;
}

.contact-btn.instagram:hover {
    background: #e1306c;
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .artist-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .artist-image {
        display: flex;
        justify-content: center;
    }
    
    .artist-bio {
        margin: 0 auto 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .release-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .release-artwork {
        display: flex;
        justify-content: center;
    }
    
    .artwork-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .release-artwork img {
        width: 300px;
        height: 300px;
    }
    
    .streaming-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right var(--transition-medium);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .artist-placeholder,
    .artwork-placeholder {
        width: 250px;
        height: 250px;
        font-size: 2.5rem;
    }
    
    .artist-image img {
        width: 250px;
        height: 250px;
    }
    
    .release-artwork img {
        width: 250px;
        height: 250px;
    }
    
    .release-card {
        padding: 30px 20px;
    }
    
    .release-badge {
        left: 20px;
    }
    
    .stream-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.3em;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.8rem;
    }
    
    .artist-placeholder,
    .artwork-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2rem;
    }
    
    .artist-image img {
        width: 200px;
        height: 200px;
    }
    
    .release-artwork img {
        width: 200px;
        height: 200px;
    }
    
    .social-link,
    .stream-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
}
