:root {
    /* Moon/Space Theme */
    --bg-color: #080a10;
    /* Deep Space */
    --card-bg: #11141d;
    --text-primary: #e2e8f0;
    /* Moon Silver */
    --text-secondary: #94a3b8;

    /* Aurora Accents */
    --accent-moon: #f8fafc;
    --accent-green: #00e5ff;
    /* Cyan Blue */
    --accent-red: #0077ff;
    /* Royal Blue */
    --accent-blue: #4400ff;
    /* Deep Purple/Blue */

    --accent-color: var(--accent-green);
    --gradient-main: linear-gradient(135deg, var(--accent-green), var(--accent-blue));

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(57, 255, 20, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 85%, rgba(255, 23, 68, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.03) 0%, transparent 40%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    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;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-oswald);
    /* Use Oswald for buttons too */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-main);
    color: #000;
    /* Black text on bright gradient */
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.btn-outline {
    border-color: var(--accent-moon);
    color: var(--accent-moon);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-full {
    width: 100%;
    text-align: center;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 0;
    z-index: 1000;
    background: rgba(8, 10, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.8) contrast(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 2, 5, 0.2), var(--bg-color));
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 60px; /* Push the block down to compensate for negative image margins */
}

.hero-subtitle {
    font-family: var(--font-oswald);
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    position: relative;
    z-index: 3;
}

.hero-title {
    margin-bottom: 0px; /* Reduced to bring text closer */
    text-align: center;
}

.hero-title-img {
    max-width: 90%;
    width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    margin: -140px auto -110px auto; /* Heavy negative margin to ignore image dimensions completely */
    display: block;
    position: relative;
    z-index: 2;
}

.compact-performances {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-title {
    font-family: var(--font-oswald);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-carousel {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.compact-carousel .carousel-slide img,
.compact-carousel .carousel-slide video {
    max-height: 400px;
}

.compact-carousel .carousel-btn {
    padding: 10px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -30px auto 40px;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Bio Section */
.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.bio-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
    height: auto;
}

.bio-image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #0f172a, #000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(42, 127, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bio-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Carousel Section */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background: #11141d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 10, 16, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

.carousel-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.track-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.track-card:hover {
    border-color: var(--accent-blue);
    background: rgba(42, 127, 255, 0.05);
}

.track-art {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.track-info {
    flex: 1;
}

.track-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.track-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.waveform {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
}

.waveform .bar {
    width: 3px;
    background: var(--accent-red);
    animation: wave 1s infinite ease-in-out;
}

.waveform .bar:nth-child(odd) {
    height: 60%;
    animation-duration: 0.8s;
}

.waveform .bar:nth-child(even) {
    height: 100%;
    animation-duration: 1.2s;
}

@keyframes wave {

    0%,
    100% {
        height: 30%;
        opacity: 0.5;
    }

    50% {
        height: 100%;
        opacity: 1;
    }
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--accent-blue);
    color: #fff;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    border: 1px solid transparent;
}

.platform-link:hover {
    background: rgba(42, 127, 255, 0.1);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
}

.gallery-item:hover img,
.gallery-item:hover video {
    opacity: 1;
    transform: scale(1.02);
}

.compact-releases {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 450px;
}
.compact-platforms {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}
.compact-platforms a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}
.compact-platforms a:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

/* Contact Section Redesign */
.contact-section {
    position: relative;
    padding-bottom: 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 30px;
    align-items: flex-start;
}

.contact-card {
    background: rgba(17, 20, 29, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(57, 255, 20, 0.1);
    background: rgba(17, 20, 29, 0.9);
}

.contact-card h3 {
    font-family: var(--font-oswald);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid var(--accent-green);
    display: inline-block;
    padding-bottom: 5px;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--accent-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover .icon-box {
    background: var(--accent-green);
    color: #000;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.info-text .value {
    color: var(--text-primary);
    font-weight: 500;
}

.social-connect h4 {
    font-family: var(--font-oswald);
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.social-links-large a {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--text-primary);
    border: 1px solid transparent;
}

.social-links-large a:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.3);
}

/* Contact Form */
.form-card {
    background: linear-gradient(145deg, rgba(17, 20, 29, 0.8), rgba(0, 0, 0, 0.6));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.1);
}

.btn-full i {
    transition: transform 0.3s;
}

.btn-full:hover i {
    transform: translateX(5px) translateY(-5px);
}

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

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--accent-green);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #020205;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}