:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(20, 20, 25, 0.7);
    --fire-main: #ff4500;
    --fire-glow: #ff8c00;
    --ice-main: #00ffff;
    --ice-glow: #00bfff;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
}

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

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

html {
    scroll-behavior: smooth;
}

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

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    max-width: 200px;
    object-fit: contain;
}

.text-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.fire { color: var(--fire-main); text-shadow: 0 0 10px rgba(255, 69, 0, 0.5); }
.ice { color: var(--ice-main); text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
.n-split { 
    background: linear-gradient(90deg, var(--fire-main) 50%, var(--ice-main) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ice-main);
}

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

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

.fire-glow {
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at left center, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
}

.ice-glow {
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.fire-text {
    background: linear-gradient(90deg, var(--fire-main), var(--fire-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ice-text {
    background: linear-gradient(90deg, var(--ice-main), var(--ice-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: linear-gradient(90deg, var(--fire-main), var(--ice-main));
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 255, 255, 0.1);
}

/* Sections General */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fire-card h3 {
    color: var(--fire-main);
}

.fire-card {
    border-bottom: 3px solid var(--fire-main);
}

.ice-card h3 {
    color: var(--ice-main);
}

.ice-card {
    border-bottom: 3px solid var(--ice-main);
}

.about-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Showcase Section */
.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-item {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.track-item:hover {
    background: rgba(30, 30, 35, 0.8);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 300px;
}

.track-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-play-btn:hover {
    background: var(--ice-main);
}

.track-play-btn.playing {
    background: var(--fire-main);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid white;
    margin-left: 4px;
}

.track-play-btn.playing .play-icon {
    border: none;
    width: 12px;
    height: 12px;
    background: white;
    margin-left: 0;
}

.track-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.track-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.track-waveform {
    flex-grow: 1;
    height: 40px;
    margin: 0 2rem;
    border-radius: 20px;
    opacity: 0.5;
}

.fire-wave {
    background: linear-gradient(90deg, transparent, var(--fire-main), transparent);
}
.ice-wave {
    background: linear-gradient(90deg, transparent, var(--ice-main), transparent);
}
.dual-wave {
    background: linear-gradient(90deg, transparent, var(--fire-main), var(--ice-main), transparent);
}

.track-duration {
    font-weight: 500;
    color: var(--text-muted);
}

/* Studio CTA */
.studio-cta {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 255, 255, 0.05) 50%, var(--bg-dark) 100%);
}

.studio-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
}

.studio-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.email-protection {
    display: flex;
    justify-content: center;
    min-height: 40px;
    align-items: center;
}

.reveal-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.reveal-btn:hover {
    border-color: var(--ice-main);
    color: var(--ice-main);
    box-shadow: none;
    transform: none;
}

.email-link {
    color: var(--ice-main);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.email-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .track-item { flex-direction: column; gap: 1rem; text-align: center; }
    .track-info { width: 100%; justify-content: center; flex-direction: column; }
    .track-waveform { display: none; }
    .nav { display: none; }
}
