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

:root {
    --primary: #00ff88;
    --secondary: #ff0088;
    --dark: #0a0a0a;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text: #ffffff;
    --text-muted: #888888;
}

/* Light Theme */
body.light-theme {
    --primary: #00cc6a;
    --secondary: #cc0066;
    --dark: #f5f5f5;
    --gray: #ffffff;
    --light-gray: #e0e0e0;
    --text: #1a1a1a;
    --text-muted: #666666;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* DOOM Splash Screen */
.doom-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOut 0.5s ease-out 3s forwards;
}

body.light-theme .doom-splash {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 50%, #1a1a2a 100%);
}

.doom-content {
    text-align: center;
}

.doom-text {
    font-size: 4rem;
    font-weight: 800;
    color: #ff0000;
    text-shadow:
        0 0 5px rgba(255, 0, 0, 0.5),
        0 0 10px rgba(255, 0, 0, 0.3),
        3px 3px 0px #000;
    animation: glitchDoom 0.3s infinite alternate;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.loading-bar {
    width: 400px;
    height: 20px;
    background: #1a1a1a;
    border: 3px solid #ff0000;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow:
        0 0 10px rgba(255, 0, 0, 0.5),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #ff6600, #ff0000);
    animation: loading 3s ease-in-out forwards;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.doom-subtitle {
    color: #00ff00;
    font-size: 1.2rem;
    font-family: monospace;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    animation: blink 0.5s infinite;
}

@keyframes glitchDoom {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes loading {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text);
    position: absolute;
    transition: all 0.3s ease;
}

.moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

body.light-theme .moon-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

body.light-theme .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 136, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.glitch {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    animation: glitch 1s infinite;
}

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

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

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

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 31px, 0);
    }
    20% {
        clip: rect(85px, 9999px, 140px, 0);
    }
    40% {
        clip: rect(48px, 9999px, 95px, 0);
    }
    60% {
        clip: rect(120px, 9999px, 73px, 0);
    }
    80% {
        clip: rect(35px, 9999px, 108px, 0);
    }
    100% {
        clip: rect(90px, 9999px, 43px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 119px, 0);
    }
    20% {
        clip: rect(23px, 9999px, 86px, 0);
    }
    40% {
        clip: rect(99px, 9999px, 45px, 0);
    }
    60% {
        clip: rect(11px, 9999px, 137px, 0);
    }
    80% {
        clip: rect(76px, 9999px, 62px, 0);
    }
    100% {
        clip: rect(44px, 9999px, 101px, 0);
    }
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 0;
}

/* Upcoming Release Section */
.upcoming-release {
    background: var(--dark);
    padding: 4rem 0;
}

.upcoming-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
}

.upcoming-image {
    position: relative;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.upcoming-info {
    padding: 3rem;
}

.upcoming-label {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.upcoming-info h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upcoming-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.upcoming-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.track-item {
    color: var(--text);
    font-weight: 600;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

/* About Section */
.about {
    background: var(--gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-text .lead {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 300;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary);
}

/* Releases Section */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.release-card {
    background: var(--gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light-gray);
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: var(--primary);
}

.release-image {
    position: relative;
    padding-bottom: 100%;
    background: linear-gradient(135deg, var(--light-gray), var(--gray));
}

.release-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 0, 136, 0.1));
}

.release-icon {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

.release-info {
    padding: 1.5rem;
}

.release-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.release-type {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.release-year {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.release-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.release-link:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Listen Section */
.listen {
    background: var(--gray);
}

.music-player,
.video-player {
    margin: 3rem 0;
    background: var(--dark);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-gray);
}

.music-player h3,
.video-player h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

body.light-theme .music-player,
body.light-theme .video-player {
    background: var(--gray);
    border-color: var(--light-gray);
}

.platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.platform-icon svg {
    width: 35px;
    height: 35px;
}

.platform-icon.spotify {
    background: #1DB954;
}

.platform-icon.apple {
    background: linear-gradient(135deg, #FA243C, #FE7B00);
}

.platform-icon.soundcloud {
    background: #FF5500;
}

.platform-icon.youtube {
    background: #FF0000;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s;
    border: 2px solid var(--light-gray);
}

.social-link svg {
    width: 25px;
    height: 25px;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.booking {
    margin-top: 3rem;
}

.booking p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--secondary);
}

.phone-number {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--gray);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.footer p {
    color: var(--text-muted);
}

/* Light theme adjustments */
body.light-theme .hero-bg {
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 204, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(204, 0, 102, 0.15) 0%, transparent 50%);
}

body.light-theme .glitch {
    color: var(--primary);
}

body.light-theme .glitch::before {
    text-shadow: -2px 0 var(--secondary);
}

body.light-theme .glitch::after {
    text-shadow: -2px 0 var(--primary);
}

body.light-theme .release-card,
body.light-theme .platform-card,
body.light-theme .social-link {
    border-color: var(--light-gray);
}

body.light-theme .release-card:hover,
body.light-theme .platform-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .release-placeholder {
    background: linear-gradient(135deg, rgba(0, 204, 106, 0.1), rgba(204, 0, 102, 0.1));
}

body.light-theme .cta-button {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .upcoming-banner {
        grid-template-columns: 1fr;
    }

    .upcoming-info {
        padding: 2rem;
    }

    .upcoming-info h2 {
        font-size: 2.5rem;
    }

    .coming-soon-badge {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .doom-text {
        font-size: 2rem;
    }

    .loading-bar {
        width: 280px;
    }

    .doom-subtitle {
        font-size: 0.9rem;
    }

    .theme-toggle {
        width: 35px;
        height: 35px;
    }

    .theme-toggle svg {
        width: 18px;
        height: 18px;
    }

    .nav-right {
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .glitch {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .doom-text {
        font-size: 1.5rem;
    }

    .loading-bar {
        width: 200px;
    }

    .glitch {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-text .lead {
        font-size: 1.2rem;
    }
}
