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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Music notes container */
#music-notes-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.music-note {
    position: absolute;
    font-size: 44px;
    opacity: 0.55;
    background: linear-gradient(120deg, #7f53ac 0%, #647dee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow:
        2px 2px 12px #7f53ac77,
        -2px -2px 10px #647dee88;
    will-change: transform, opacity;
    user-select: none;
    pointer-events: none;
    transition: opacity 0.6s;
}

/* Pulsing circles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.container {
    background: none;
    padding: 40px 20px;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo-section {
    margin-bottom: 25px;
    flex-shrink: 0;
    position: relative;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 0;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0;
    margin: 0 auto;
    display: block;
    transition: none;
    animation: none;
}

.welcome-section {
    margin-bottom: 50px;
    flex-shrink: 0;
}

.welcome-section p {
    font-size: 20px;
    color: white;
    font-style: italic;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
    flex-grow: 1;
    justify-content: center;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 105, 180, 0.5);
    backdrop-filter: blur(5px);
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    position: relative;
    overflow: visible;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    cursor: pointer;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background: rgba(255, 105, 180, 0.7);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.link-button:active {
    transform: translateY(-1px) scale(1.01);
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
    flex-shrink: 0;
}

.icon i {
    font-size: 20px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.platform-icon {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    object-fit: contain;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

/* STREAMING SERVICES STYLES - OPEN BY DEFAULT */
.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 8px;
    transition: all 0.4s ease;
    max-height: 1000px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.streaming-links.hidden {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    gap: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.streaming-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.streaming-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.streaming-button:hover::before {
    left: 100%;
}

.streaming-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.streaming-button:active {
    transform: translateY(-1px) scale(1.01);
}

.streaming-button .platform-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-left: 0;
    flex-shrink: 0;
}

.streaming-toggle {
    position: relative;
    background: rgba(255, 105, 180, 0.6) !important;
}

.streaming-toggle:hover {
    background: rgba(255, 105, 180, 0.8) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 360px) {
    .container {
        padding: 30px 15px;
    }
    .logo {
        width: 160px;
        height: 160px;
    }
    .welcome-section p {
        font-size: 17px;
    }
    .link-button {
        padding: 15px 25px;
        font-size: 16px;
    }
    .links-section {
        gap: 18px;
    }
    .platform-icon {
        width: 20px;
        height: 20px;
        margin: 0 8px;
    }
    .streaming-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    .streaming-button .platform-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    .icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
    .icon i {
        font-size: 18px;
    }
}

/* Larger mobile screens */
@media (min-width: 480px) {
    .logo {
        width: 240px;
        height: 240px;
    }
    .links-section {
        max-width: 400px;
    }
}

/* Landscape mode for mobile devices */
@media (orientation: landscape) and (max-height: 600px) {
    .container {
        padding: 20px;
        justify-content: flex-start;
    }
    .logo {
        width: 120px;
        height: 120px;
    }
    .logo-section {
        margin-bottom: 15px;
    }
    .welcome-section {
        margin-bottom: 30px;
    }
    .links-section {
        gap: 15px;
    }
    .link-button {
        padding: 12px 25px;
    }
    .platform-icon {
        width: 18px;
        height: 18px;
        margin: 0 6px;
    }
    .streaming-button {
        padding: 8px 12px;
        font-size: 14px;
    }
    .streaming-button .platform-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    .icon {
        width: 18px;
        height: 18px;
        font-size: 16px;
    }
    .icon i {
        font-size: 16px;
    }
}
