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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('HRCStage.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(20, 0, 0, 0.8) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Decorative guitar silhouettes */
.guitar-left,
.guitar-right {
    position: fixed;
    width: 200px;
    height: 600px;
    opacity: 0.03;
    z-index: 1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 300"><path d="M45 20 Q30 10 30 0 L70 0 Q70 10 55 20 L55 180 Q60 185 60 200 Q60 220 50 220 Q40 220 40 200 Q40 185 45 180 Z M35 200 Q35 230 50 230 Q65 230 65 200 Q65 180 50 180 Q35 180 35 200 Z" fill="%23FFD700"/></svg>') center no-repeat;
    background-size: contain;
}

.guitar-left {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.guitar-right {
    top: 10%;
    right: 5%;
    transform: rotate(15deg) scaleX(-1);
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 650px;
    padding: 20px;
}

/* Logo Section */
.logo-container {
    margin-bottom: 50px;
    animation: fadeInDown 1.2s ease-out;
}

.logo-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.circle-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
    border: 3px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    animation: rotateBadge 20s linear infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guitar-icon {
    width: 40px;
    height: 40px;
    color: #000;
    animation: rotateGuitar 20s linear infinite reverse;
}

@keyframes rotateGuitar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hard-rock {
    display: block;
    color: #FFD700;
    font-size: 3rem;
    text-shadow: 
        2px 2px 0 #8b0000,
        4px 4px 0 rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.5);
}

.stage {
    display: block;
    color: #DC143C;
    font-size: 2.3rem;
    text-shadow: 
        2px 2px 0 #000,
        0 0 15px rgba(220, 20, 60, 0.6);
    letter-spacing: 8px;
}

.radio {
    display: block;
    color: #C9A961;
    font-size: 2rem;
    text-shadow: 
        1px 1px 0 #000,
        0 0 10px rgba(201, 169, 97, 0.5);
}

.tagline {
    color: #C9A961;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Player Card - Elegant Design */
.player-container {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.player-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(20, 0, 0, 0.85) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.player-card:hover {
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

/* Corner Ornaments */
.corner-ornament {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #C9A961;
    opacity: 0.5;
}

.corner-ornament.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.corner-ornament.top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.corner-ornament.bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.corner-ornament.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

/* Vinyl Record */
.player-header {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.vinyl-record {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        #1a1a1a 0%, 
        #0d0d0d 30%, 
        #1a1a1a 35%,
        #0d0d0d 40%,
        #1a1a1a 45%,
        #000 50%);
    position: relative;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
    animation: spinVinyl 4s linear infinite paused;
}

.vinyl-record.spinning {
    animation-play-state: running;
}

@keyframes spinVinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 20, 60, 0.15);
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #DC143C;
    border-radius: 50%;
    box-shadow: 0 0 10px #DC143C;
    animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px #DC143C;
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
        box-shadow: 0 0 20px #DC143C;
    }
}

.live-text {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    font-family: 'Arial', sans-serif;
}

/* Play Button - Premium Design */
.player-controls {
    margin: 35px 0;
}

.play-button {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #C9A961 100%);
    border: 4px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3),
        inset 0 3px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5),
        inset 0 -3px 10px rgba(0, 0, 0, 0.4),
        inset 0 3px 10px rgba(255, 255, 255, 0.4);
    border-color: rgba(220, 20, 60, 0.5);
}

.play-button:active {
    transform: scale(1.03);
}

.play-icon,
.pause-icon {
    width: 55px;
    height: 55px;
    color: #000;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hidden {
    display: none;
}

/* Volume Control - Elegant Style */
.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}

.volume-icon,
.volume-icon-high {
    width: 24px;
    height: 24px;
    color: #C9A961;
    filter: drop-shadow(0 0 5px rgba(201, 169, 97, 0.5));
}

.volume-slider {
    width: 220px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, 
        #C9A961 0%, 
        #C9A961 80%, 
        rgba(201, 169, 97, 0.2) 80%, 
        rgba(201, 169, 97, 0.2) 100%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.2);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #C9A961);
    cursor: pointer;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 2px 5px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.7),
        0 3px 8px rgba(0, 0, 0, 0.6);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #C9A961);
    cursor: pointer;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 2px 5px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.7),
        0 3px 8px rgba(0, 0, 0, 0.6);
}

/* Waveform Visualization */
.waveform {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
    margin-top: 30px;
}

.wave-bar {
    width: 6px;
    background: linear-gradient(to top, #DC143C, #FFD700);
    border-radius: 3px;
    animation: waveAnimate 1s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(220, 20, 60, 0.4);
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }

@keyframes waveAnimate {
    0%, 100% { height: 8px; }
    50% { height: 45px; }
}

/* Footer */
.footer-text {
    margin-top: 30px;
    color: #C9A961;
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.8rem;
    }
    
    .hard-rock {
        font-size: 2.3rem;
    }
    
    .stage {
        font-size: 1.8rem;
    }
    
    .radio {
        font-size: 1.5rem;
    }
    
    .player-card {
        padding: 40px 25px;
    }
    
    .play-button {
        width: 110px;
        height: 110px;
    }
    
    .play-icon,
    .pause-icon {
        width: 45px;
        height: 45px;
    }
    
    .volume-slider {
        width: 160px;
    }
    
    .vinyl-record {
        width: 80px;
        height: 80px;
    }
    
    .guitar-left,
    .guitar-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .logo-container {
        margin-bottom: 35px;
    }
    
    .circle-badge {
        width: 60px;
        height: 60px;
    }
    
    .guitar-icon {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .hard-rock {
        font-size: 1.8rem;
    }
    
    .stage {
        font-size: 1.5rem;
    }
    
    .radio {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .player-card {
        padding: 35px 20px;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .volume-slider {
        width: 130px;
    }
}
