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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #0c1929 0%, #2d1f4d 50%, #1a3a4a 100%);
    min-height: 100vh;
    color: #f0e6f0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

/* Ambient glow effects */
.glow-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(107, 45, 92, 0.3);
    border-radius: 50%;
    filter: blur(128px);
    pointer-events: none;
}

.glow-2 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(155, 77, 139, 0.2);
    border-radius: 50%;
    filter: blur(128px);
    pointer-events: none;
}

/* Logo */
.logo {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

/* Brand name */
.brand-name {
    position: relative;
    z-index: 10;
    font-size: 3rem;
    font-weight: 300;
    color: #c4a6c4;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 4.5rem;
    }
}

/* Tagline */
.tagline {
    position: relative;
    z-index: 10;
    font-size: 1.125rem;
    color: #f5d0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .tagline {
        font-size: 1.25rem;
    }
}

/* CTA Buttons */
.cta-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #f5d0e0;
    color: #2d1f3d;
}

.btn-primary:hover {
    background-color: #f0c6d4;
}

.btn-outline {
    background-color: transparent;
    color: #f5d0e0;
    border: 1px solid rgba(245, 208, 224, 0.3);
}

.btn-outline:hover {
    background-color: rgba(245, 208, 224, 0.1);
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Floating music notes */
.music-note {
    position: absolute;
    opacity: 0.3;
}

.music-note-1 {
    bottom: 5rem;
    left: 2.5rem;
    animation: bounce 2s infinite;
}

.music-note-2 {
    top: 10rem;
    right: 5rem;
    animation: pulse 2s infinite;
}

.music-note svg {
    color: #f5d0e0;
}

.music-note-2 svg {
    color: #9b4d8b;
    width: 1.5rem;
    height: 1.5rem;
}

/* Animations */
@keyframes bounce {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

/* Social links */
.social-links {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(155, 77, 139, 0.3);
    color: #f0e6f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(245, 208, 224, 0.1);
    border-color: rgba(245, 208, 224, 0.5);
    transform: translateY(-3px);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Spotify Player */
.spotify-player {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.spotify-player iframe {
    border: none;
    width: 100%;
    height: 352px;
    border-radius: 12px;
}

@media (min-width: 640px) {
    .spotify-player {
        max-width: 500px;
    }
}