/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.logo:hover {
    color: #06b6d4;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #06b6d4;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.desktop-nav {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    color: #d1d5db;
}

.nav-link:hover, .nav-link.active {
    color: #06b6d4;
    background-color: rgba(6, 182, 212, 0.1);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #d1d5db;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

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

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #000000, #1f2937, #000000);
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background-color: rgba(6, 182, 212, 0.1);
}

.circle-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background-color: rgba(20, 184, 166, 0.1);
    animation-delay: 0.7s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
    padding: 0 1rem;
}

.hero-logo {
    width: 128px;
    height: 128px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    border: 4px solid #06b6d4;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #a5f3fc, #99f6e4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: #d1d5db;
    margin-bottom: 1rem;
}

.hero-style {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #06b6d4;
    border-radius: 12px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 12px;
    background-color: #06b6d4;
    border-radius: 2px;
    margin-top: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #06b6d4;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0891b2;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.btn-outline {
    border: 2px solid #06b6d4;
    color: #06b6d4;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(6, 182, 212, 0.1);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border: 1px solid #06b6d4;
}

.btn-secondary:hover {
    background-color: rgba(6, 182, 212, 0.2);
    transform: scale(1.05);
}

.btn-spotify {
    background-color: #1db954;
    color: #ffffff;
}

.btn-spotify:hover {
    background-color: #1ed760;
}

.btn-youtube {
    background-color: #ff0000;
    color: #ffffff;
}

.btn-youtube:hover {
    background-color: #cc0000;
}

.btn-instagram {
    background-color: #e1306c;
    color: #ffffff;
}

.btn-instagram:hover {
    background-color: #c13584;
}

.btn-tiktok {
    background-color: #06b6d4;
    color: #ffffff;
}

.btn-tiktok:hover {
    background-color: #0891b2;
}

/* Sections */
.featured-section, .cta-section {
    padding: 5rem 0;
}

.featured-section {
    background: linear-gradient(to bottom, #000000, #111827);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #9ca3af;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.track-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #1f2937;
    transition: all 0.5s;
}

.track-card:hover {
    transform: scale(1.05);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.track-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.track-card:hover .track-cover img {
    transform: scale(1.1);
}

.track-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.track-card:hover .track-overlay {
    opacity: 1;
}

.play-icon {
    color: #06b6d4;
    transform: scale(0);
    transition: transform 0.3s;
}

.track-card:hover .play-icon {
    transform: scale(1);
}

.track-info {
    padding: 1.5rem;
}

.track-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.track-card:hover .track-info h3 {
    color: #06b6d4;
}

.track-info p {
    font-size: 0.875rem;
    color: #9ca3af;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom right, #111827, #000000, #111827);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #06b6d4;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links h4, .footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #06b6d4;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #9ca3af;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: #06b6d4;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Utility Classes */
::selection {
    background-color: #06b6d4;
    color: #000000;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f10;
}

::-webkit-scrollbar-thumb {
    background: #06b6d4;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0891b2;
}
