:root {
    --bg-color: #050505;
    --bg-secondary: #0f0f11;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-green: #39ff14;
    --accent-blue: #00f3ff;
    --accent-pink: #ff00ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Background FX */
.background-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.03) 0%, transparent 25%);
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.btn-nav {
    padding: 8px 20px;
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    color: var(--accent-green) !important;
}

.btn-nav:hover {
    background: var(--accent-green);
    color: var(--bg-color) !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--bg-color);
    border: 1px solid var(--accent-blue);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-sm:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Music Section */
.featured-release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
}

.art-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(45deg, #222, #333);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.art-placeholder::after {
    content: 'ARTWORK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.1);
    font-weight: 800;
    font-size: 2rem;
}

.release-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.release-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.spotify:hover {
    color: #1DB954;
}

.soundcloud:hover {
    color: #ff5500;
}

.bandcamp:hover {
    color: #629aa9;
}

.youtube:hover {
    color: #ff0000;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    background: #1a1a1a;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin-bottom: 5px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 15px;
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.center-btn {
    text-align: center;
}

/* Sessions */
.sessions-container {
    display: flex;
    justify-content: center;
}

.session-card {
    background: linear-gradient(145deg, var(--bg-secondary), #151515);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.session-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-pink);
}

.features-list {
    text-align: left;
    margin-bottom: 40px;
    display: inline-block;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list i {
    color: var(--accent-green);
    margin-right: 15px;
}

/* About */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.artist-placeholder {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
}

.artist-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    transform: translate(10px, 10px);
    z-index: -1;
}

/* Contact */
.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-methods {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    min-width: 150px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-green);
}

.contact-item:hover {
    border-color: var(--accent-green);
    background: rgba(57, 255, 20, 0.05);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu to be implemented with JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        margin: 5px 0;
    }

    .featured-release {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .artist-placeholder {
        height: 300px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--text-primary);
}

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

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 50px, 0);
    }

    60% {
        clip: rect(40px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(70px, 9999px, 60px, 0);
    }

    100% {
        clip: rect(20px, 9999px, 80px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 10px, 0);
    }

    40% {
        clip: rect(30px, 9999px, 50px, 0);
    }

    60% {
        clip: rect(90px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 30px, 0);
    }
}