:root {
    --bg-color: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #7000ff;
    --accent-secondary: #00d2ff;
    --spotify-color: #1db954;
    --apple-color: #fa2d48;
    --tidal-color: #000000;
    /* Tidal is usually black/white, we'll handle differently */
    --youtube-color: #ff0000;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.highlight {
    color: var(--accent-secondary);
}

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

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

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

.cta-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.primary-btn {
    background: white;
    color: var(--bg-color);
}

.primary-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visuals */
.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-primary);
    top: 0;
    left: 0;
    animation: float 6s infinite ease-in-out;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-secondary);
    bottom: 0;
    right: 0;
    animation: float 8s infinite ease-in-out reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: #ff0055;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite ease-in-out;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.glass-card i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
}

.floating-card {
    animation: floatCard 5s infinite ease-in-out;
}

/* Apps Section */
.apps-section {
    padding: 5rem 10%;
    background: linear-gradient(to bottom, var(--bg-color), #0f0f1a);
}

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

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

.app-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: gray;
}

.app-card.spotify::before {
    background: var(--spotify-color);
}

.app-card.apple::before {
    background: var(--apple-color);
}

.app-card.tidal::before {
    background: white;
}

.app-card.youtube::before {
    background: var(--youtube-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

.tidal .card-icon {
    color: white;
}

.youtube .card-icon {
    color: var(--youtube-color);
}

.app-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.app-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.features-list li i {
    color: var(--accent-secondary);
    font-size: 0.8rem;
}

.card-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.card-btn:hover {
    border-color: var(--accent-secondary);
}

/* Features Section */
.features-section {
    padding: 5rem 10%;
    background: #0a0a0f;
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.stat-row {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

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

.feature-visual {
    flex: 1;
    min-width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1) 0%, rgba(10, 10, 15, 0) 70%);
}

.equalizer {
    display: flex;
    gap: 10px;
    height: 150px;
    align-items: flex-end;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, var(--accent-primary), var(--accent-secondary));
    border-radius: 5px;
    animation: equalize 1s infinite ease-in-out alternate;
}

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

.bar:nth-child(2) {
    height: 90%;
    animation-duration: 1.2s;
}

.bar:nth-child(3) {
    height: 50%;
    animation-duration: 1s;
}

.bar:nth-child(4) {
    height: 80%;
    animation-duration: 0.9s;
}

.bar:nth-child(5) {
    height: 40%;
    animation-duration: 1.1s;
}

/* Footer */
.footer {
    padding: 3rem 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-secondary);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes equalize {
    0% {
        height: 20%;
    }

    100% {
        height: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-visual {
        margin-top: 3rem;
        width: 100%;
        height: 300px;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;
        /* Simple hide for mobile for now */
    }
}