@font-face {font-family:'Cinzel';src:url(gfonts/cinzel_v26.woff2) format('woff2')}
@font-face {font-family:'Inter';src:url(gfonts/inter_v20.woff2) format('woff2')}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html, body {
    height: 100%;
    height: 100dvh; /* Dynamic viewport height for mobile */
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #0B0F14;
    color: #A6CBD1;
}

body {
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 27, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 20, 47, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(183, 139, 68, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0A0D12 0%, #1A142F 30%, #2D1B3D 60%, #1A142F 85%, #0A0D12 100%);
    background-attachment: fixed;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(28, 21, 51, 0.9);
    color: #A6CBD1;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(166, 203, 209, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.SkyContainer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    user-select: none;
    pointer-events: none;
}

.SkyContainer, .SkyContent, #SkyUniverse {
    width: 100%;
    height: 100%;
    height: 100dvh; /* Dynamic viewport height for mobile */
}

/* Main Card Container */
.main-card {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Logo Section */
.logo-section {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.logo-icon {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
    filter: 
        brightness(1.2) 
        contrast(1.1) 
        drop-shadow(0 0 20px rgba(166, 203, 209, 0.5))
        drop-shadow(0 0 40px rgba(183, 139, 68, 0.3));
    animation: iconGlow 4s ease-in-out infinite alternate;
    will-change: filter, transform;
    transition: filter 0.3s ease, transform 0.3s ease;
    pointer-events:none;
}

.logo-icon:hover {
    transform: scale(1.1);
    filter: 
        brightness(1.4) 
        contrast(1.2) 
        drop-shadow(0 0 30px rgba(166, 203, 209, 0.8))
        drop-shadow(0 0 60px rgba(183, 139, 68, 0.6));
}

@keyframes iconGlow {
    0% {
        filter: 
            brightness(1.2) 
            contrast(1.1) 
            drop-shadow(0 0 20px rgba(166, 203, 209, 0.6))
            drop-shadow(0 0 40px rgba(183, 139, 68, 0.4));
    }
    100% {
        filter: 
            brightness(1.4) 
            contrast(1.2) 
            drop-shadow(0 0 30px rgba(166, 203, 209, 0.8))
            drop-shadow(0 0 60px rgba(183, 139, 68, 0.6));
    }
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #A6CBD1;
    text-shadow: 
        0 0 20px rgba(166, 203, 209, 0.5),
        0 0 40px rgba(166, 203, 209, 0.3);
    animation: crystalGlow 3s ease-in-out infinite alternate;
    will-change: text-shadow;
}

@keyframes crystalGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(166, 203, 209, 0.5),
            0 0 40px rgba(166, 203, 209, 0.3);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(166, 203, 209, 0.7),
            0 0 60px rgba(166, 203, 209, 0.4),
            0 0 80px rgba(183, 139, 68, 0.2);
    }
}

.crystal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(166, 203, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    will-change: transform, opacity;
}

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

/* Player Section */
.player-section {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}

.player-container {
    position: relative;
    background: rgba(28, 21, 51, 0.5);
    border: 1px solid rgba(166, 203, 209, 0.7);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 
        0 0 30px rgba(183, 139, 68, 0.1),
        inset 0 0 30px rgba(166, 203, 209, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Phoenix Overlay */
.phoenix-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phoenix-image {
    width: 120%;
    height: auto;
    opacity: 0.08;
    transform: rotate(-8deg) translateY(5%) scale(1.1);
    animation: phoenixFloat 25s ease-in-out infinite;
    mix-blend-mode: screen;
    position: absolute;
    top: -50%;
    left: 0;
    transform-origin: center;
    will-change: transform, opacity, filter;
}

@keyframes phoenixFloat {
    0%, 100% {
        transform: rotate(-8deg) translateY(5%) scale(1.1);
        opacity: 0.08;
        filter: brightness(1.2);
    }
    20% {
        transform: rotate(-6deg) translateY(2%) scale(1.18);
        opacity: 0.12;
        filter: brightness(1.4);
    }
    40% {
        transform: rotate(-10deg) translateY(8%) scale(1.15);
        opacity: 0.06;
        filter: brightness(1.0);
    }
    60% {
        transform: rotate(-7deg) translateY(3%) scale(1.05);
        opacity: 0.10;
        filter: brightness(1.3);
    }
    80% {
        transform: rotate(-9deg) translateY(6%) scale(1.14);
        opacity: 0.07;
        filter: brightness(1.1);
    }
}

.now-playing {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 2rem;
}

.track-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #A6CBD1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(166, 203, 209, 0.3);
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.track-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}

.artist-name {
    display: block;
    font-size: 0.9rem;
    color: #8C8F93;
    font-weight: 300;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.artist-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}

.track-title:hover,
.artist-name:hover {
    color: #B78B44;
    text-shadow: 0 0 15px rgba(183, 139, 68, 0.5);
}

.player-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: linear-gradient(135deg, #B78B44, #A6CBD1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(183, 139, 68, 0.3),
        inset 0 0 20px rgba(166, 203, 209, 0.2);
    position: relative;
    overflow: hidden;
    user-select:none;
    will-change: transform, box-shadow;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(183, 139, 68, 0.5),
        inset 0 0 30px rgba(166, 203, 209, 0.3);
}

body:not([stream-active]) .play-pause-btn {
    animation: playerPulse 2s ease-in-out infinite, buttonBreath 3s ease-in-out infinite;
    will-change: box-shadow, transform;
    position: relative;
}

body:not([stream-active]) .play-pause-btn::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 139, 68, 0.3), rgba(166, 203, 209, 0.2));
    filter: blur(8px);
    animation: buttonGlow 2.5s ease-in-out infinite;
    will-change: opacity, transform;
    pointer-events: none;
}

body:not([stream-active]) .play-pause-btn::after {
    content: 'PLAY';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 500;
    color: #B78B44;
    text-shadow: 0 0 10px rgba(183, 139, 68, 0.8);
    animation: textFade 3s ease-in-out infinite;
    will-change: opacity;
    pointer-events: none;
    letter-spacing: 0.1em;
}

@keyframes playerPulse {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(183, 139, 68, 0.4),
            0 0 50px rgba(183, 139, 68, 0.2),
            inset 0 0 25px rgba(166, 203, 209, 0.3);
    }
    50% {
        box-shadow: 
            0 0 45px rgba(183, 139, 68, 0.7),
            0 0 80px rgba(183, 139, 68, 0.4),
            inset 0 0 45px rgba(166, 203, 209, 0.5);
    }
}

@keyframes buttonBreath {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes textFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.play-icon, .pause-icon {
    position: absolute;
    transition: opacity 0.3s ease;
}

.play-icon {
    opacity: 1;
}

.pause-icon {
    opacity: 0;
}

body[stream-active] .play-pause-btn .play-icon {
    opacity: 0;
}

body[stream-active] .play-pause-btn .pause-icon {
    opacity: 1;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid #0B0F14;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.pause-icon .bar {
    width: 4px;
    height: 20px;
    background: #0B0F14;
    margin: 0 2px;
    border-radius: 2px;
}

.pause-icon {
    display: flex;
    align-items: center;
}

/* Volume Controls */
.volume-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mute-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #8C8F93;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    will-change: transform, color, background;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.mute-btn:hover {
    color: #A6CBD1;
    background: rgba(166, 203, 209, 0.1);
    transform: scale(1.1);
}

.mute-btn.muted {
    color: #B78B44;
}

.mute-btn.muted svg {
    opacity: 0.7;
}

.mute-btn svg {
    width: 25px;
    height: 25px;
}

.volume-slider-container {
    position: relative;
    width: 100px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    background: rgba(140, 143, 147, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.4s ease;
    will-change: background;
    transform: translateY(-4px);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    border: none;
}

.volume-slider:hover {
    background: rgba(140, 143, 147, 0.5);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #B78B44, #A6CBD1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(183, 139, 68, 0.5);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: box-shadow;
}

.volume-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 15px rgba(183, 139, 68, 0.99);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #B78B44, #A6CBD1);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(183, 139, 68, 0.5);
    transition: box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: box-shadow;
}

.volume-slider::-moz-range-thumb:hover {
    box-shadow: 0 0 15px rgba(183, 139, 68, 0.99);
}

.player-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--pulse-scale, 1));
    width: 120px;
    height: 120px;
    pointer-events: none;
    will-change: transform, opacity;
    opacity: var(--pulse-opacity);
    /* Master controls:
       --pulse-scale: 0.8 (smaller) to 1.5 (larger)
       --pulse-opacity: 0.2 (subtle) to 0.6 (prominent)
    */
    --pulse-scale: 1.6;
    --pulse-opacity: 0.5;
    z-index: -1;
    filter: blur(7px);
}

/* Easy size control classes */
.player-pulse.small {
    --pulse-scale: 0.7;
}

.player-pulse.medium {
    --pulse-scale: 1;
}

.player-pulse.large {
    --pulse-scale: 1.3;
}

.player-pulse.xlarge {
    --pulse-scale: 1.6;
}

/* Easy opacity control classes */
.player-pulse.subtle {
    --pulse-opacity: 0.2;
}

.player-pulse.normal {
    --pulse-opacity: 0.3;
}

.player-pulse.prominent {
    --pulse-opacity: 0.5;
}

.player-pulse.bright {
    --pulse-opacity: 0.7;
}

.player-pulse::before,
.player-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

.player-pulse::before {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(183, 139, 68, 1);
    filter: blur(4px);
    opacity: 1;
    animation: ripple1 4s ease-out infinite;
}

.player-pulse::after {
    width: 170px;
    height: 170px;
    border: 2px solid rgba(166, 203, 209, 1);
    filter: blur(6px);
    opacity: 0.8;
    animation: ripple2 4s ease-out infinite 0.5s;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

.pulse-ring-1 {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(183, 139, 68, 1);
    filter: blur(3px);
    opacity: 1;
    animation: ripple3 3.5s ease-out infinite 0.2s;
}

.pulse-ring-2 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(166, 203, 209, 1);
    filter: blur(4px);
    opacity: 0.9;
    animation: ripple4 4.2s ease-out infinite 0.8s;
}

.pulse-ring-3 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(183, 139, 68, 1);
    filter: blur(5px);
    opacity: 0.7;
    animation: ripple5 5s ease-out infinite 1.2s;
}

@keyframes ripple1 {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
        filter: blur(8px);
    }
    15% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
        filter: blur(6px);
    }
    40% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
        filter: blur(4px);
    }
    70% {
        transform: translate(-50%, -50%) scale(2.0);
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        transform: translate(-50%, -50%) scale(3.0);
        opacity: 0;
        filter: blur(1px);
    }
}

@keyframes ripple2 {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0;
        filter: blur(10px);
    }
    20% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
        filter: blur(8px);
    }
    45% {
        transform: translate(-50%, -50%) scale(1.0);
        opacity: 0.8;
        filter: blur(6px);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.5;
        filter: blur(3px);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.8);
        opacity: 0;
        filter: blur(1px);
    }
}

@keyframes ripple3 {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0;
        filter: blur(12px);
    }
    25% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 1;
        filter: blur(8px);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
        filter: blur(5px);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        filter: blur(1px);
    }
}

@keyframes ripple4 {
    0% {
        transform: translate(-50%, -50%) scale(0.05);
        opacity: 0;
        filter: blur(15px);
    }
    30% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.9;
        filter: blur(10px);
    }
    55% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.9;
        filter: blur(6px);
    }
    80% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
        filter: blur(3px);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
        filter: blur(1px);
    }
}

@keyframes ripple5 {
    0% {
        transform: translate(-50%, -50%) scale(0.02);
        opacity: 0;
        filter: blur(20px);
    }
    35% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0.7;
        filter: blur(12px);
    }
    60% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
        filter: blur(8px);
    }
    85% {
        transform: translate(-50%, -50%) scale(1.0);
        opacity: 0.5;
        filter: blur(4px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        filter: blur(1px);
    }
}

/* Tagline */
.tagline {
    text-align: center;
    margin-bottom: 3rem;
}

.tagline p {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #8C8F93;
    text-shadow: 0 0 10px rgba(140, 143, 147, 0.3);
    letter-spacing: 0.1em;
}

/* Social Media */
.social-media {
    position: fixed;
    bottom: max(2rem, env(safe-area-inset-bottom, 2rem));
    left: max(2rem, env(safe-area-inset-left, 2rem));
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C8F93;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(28, 21, 51, 0.7);
    border: 1px solid rgba(166, 203, 209, 0.1);
    will-change: transform, color, background, box-shadow;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.social-link:hover {
    color: #A6CBD1;
    background: rgba(166, 203, 209, 0.1);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(166, 203, 209, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Share Button */
.share-btn {
    position: fixed;
    bottom: max(2rem, env(safe-area-inset-bottom, 2rem));
    right: max(2rem, env(safe-area-inset-right, 2rem));
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #B78B44, #A6CBD1);
    color: #0B0F14;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(183, 139, 68, 0.3),
        inset 0 0 20px rgba(166, 203, 209, 0.2);
    z-index: 20;
    will-change: transform, box-shadow;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(183, 139, 68, 0.5),
        inset 0 0 30px rgba(166, 203, 209, 0.3);
}

.share-btn svg {
    width: 24px;
    height: 24px;
}

/* Info Toggle */
.info-toggle {
    position: fixed;
    top: max(2rem, env(safe-area-inset-top, 2rem));
    right: max(2rem, env(safe-area-inset-right, 2rem));
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(28, 21, 51, 1);
    color: #8C8F93;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(166, 203, 209, 0.1);
    z-index: 20;
    will-change: transform, color, background;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.info-toggle:hover {
    color: #A6CBD1;
    background: rgba(166, 203, 209, 0.1);
    transform: scale(1.1);
}

.info-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.circle {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.question-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 12px;
}

/* Info Panel */
.info-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 20, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.info-panel.active {
    opacity: 1;
    visibility: visible;
}

.info-content {
    max-width: 500px;
    padding: 3rem;
    background: rgba(28, 21, 51, 0.8);
    border: 1px solid rgba(166, 203, 209, 0.2);
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 0 50px rgba(183, 139, 68, 0.2),
        inset 0 0 50px rgba(166, 203, 209, 0.05);
    transform: scale(0.9);
    transition: transform 0.5s ease;
    will-change: transform;
}

.info-panel.active .info-content {
    transform: scale(1);
}

.info-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #A6CBD1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(166, 203, 209, 0.5);
}

.info-content p {
    color: #8C8F93;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(183, 139, 68, 0.2);
    color: #B78B44;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(183, 139, 68, 0.3);
    transition: all 0.3s ease;
    will-change: transform, background;
}

.tag:hover {
    background: rgba(183, 139, 68, 0.3);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-card {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .player-container {
        padding: 1.5rem;
    }
    
    .phoenix-image {
        width: 110%;
        opacity: 0.05;
    }
    
    .player-controls {
        gap: 1.5rem;
    }
    
    .volume-slider-container {
        width: 80px;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
    }
    
    .triangle {
        border-left: 12px solid #0B0F14;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    
    .pause-icon .bar {
        width: 3px;
        height: 16px;
    }
    
    .social-media {
        bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
        left: max(1.5rem, env(safe-area-inset-left, 1.5rem));
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .share-btn {
        bottom: max(1.5rem, env(safe-area-inset-bottom, 1.5rem));
        right: max(1.5rem, env(safe-area-inset-right, 1.5rem));
        width: 45px;
        height: 45px;
    }
    
    .share-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .info-toggle {
        top: max(1.5rem, env(safe-area-inset-top, 1.5rem));
        right: max(1.5rem, env(safe-area-inset-right, 1.5rem));
        width: 35px;
        height: 35px;
    }
    
    .info-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .info-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .crystal-glow {
        display: none;
    }

    .pulse-ring-1, .pulse-ring-3 {
        display: none;
    }

    .main-card {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .logo {
        font-size: 1.8rem;
        animation: unset;
    }

    .player-container {
        padding: 1rem;
    }
    
    .phoenix-image {
        width: 123%;
        opacity: 0.05;
        /* animation: unset; */
    }
    
    .player-controls {
        gap: 1rem;
    }
    
    .volume-slider-container {
        width: 60px;
    }
    
    .track-title {
        font-size: 1rem;
    }
    
    .artist-name {
        font-size: 0.8rem;
    }
    
    .tagline p {
        font-size: 1rem;
    }
    
    .social-media {
        bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
        left: max(1rem, env(safe-area-inset-left, 1rem));
    }
    
    .share-btn {
        bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
        right: max(1rem, env(safe-area-inset-right, 1rem));
    }
    
    .info-toggle {
        top: max(1rem, env(safe-area-inset-top, 1rem));
        right: max(1rem, env(safe-area-inset-right, 1rem));
    }
}
