:root {
    --bg-dark: #07070a;
    --bg-dark-2: #0d0d12;
    --text-light: #f4f4f5;
    --primary: #8a2be2;
    --secondary: #00ffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --spotify: #1DB954;
    --soundcloud: #ff5500;
    --apple: #fc3c44;
    --youtube: #FF0000;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

body {
    overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links li a:hover {
    color: var(--secondary);
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7,7,10,0.4), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.reveal-text {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 1s forwards 0.3s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
}

/* Hero Quick Platform Links */
.hero-platforms {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s forwards 1.6s;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.platform-link .fa-spotify:hover { color: var(--spotify); }
.platform-link .fa-soundcloud:hover { color: var(--soundcloud); }
.platform-link .fa-apple:hover { color: var(--apple); }
.platform-link .fa-youtube:hover { color: var(--youtube); }

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary), #b366ff);
    color: white;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary);
}

.secondary-btn:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.soundcloud-btn {
    background: var(--soundcloud);
    color: white;
    margin-top: 15px;
    justify-content: center;
}

.soundcloud-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 85, 0, 0.5);
}

.apple-btn {
    background: linear-gradient(45deg, var(--apple), #ff6b8a);
    color: white;
    margin-top: 10px;
    justify-content: center;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.apple-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(252, 60, 68, 0.5);
}

.youtube-btn {
    background: var(--youtube);
    color: white;
    margin-top: 20px;
    justify-content: center;
}

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

/* General Sections */
.section {
    padding: 100px 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Spotify Grid */
.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.spotify-main {
    border: 1px solid var(--spotify);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.15);
}

.listeners {
    font-size: 0.85rem;
    color: #888;
}

/* Other Platforms */
.platforms-section {
    background: var(--bg-dark-2);
}

.platforms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.apple-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.apple-links .btn {
    flex: 1;
    min-width: 180px;
}

.apple-color {
    color: var(--apple);
}

/* Platform Cards */
.platform-card {
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.platform-header i {
    font-size: 2rem;
}

.spotify-color {
    color: var(--spotify);
}

.soundcloud-color {
    color: var(--soundcloud);
}

.player-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* YouTube Section */
.youtube-section {
    text-align: center;
}

.youtube-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
}

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

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 20px;
}

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

.about-text em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-credit {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .spotify-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 7, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid var(--glass-border);
    }

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

    .hamburger {
        display: block;
    }

    .reveal-text {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-platforms {
        gap: 12px;
    }

    .platform-link {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

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

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

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

    .platform-card {
        padding: 15px;
    }

    .about-content {
        padding: 30px 20px;
    }

    .apple-links {
        flex-direction: column;
    }

    .apple-links .btn {
        min-width: 100%;
    }
}

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

    .section {
        padding: 60px 4%;
    }
}
