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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
    overflow-x: hidden;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.container {
    max-width: 500px;
    width: 90%;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.station-header {
    text-align: center;
    margin-bottom: 40px;
}

.station-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(181, 23, 158, 0.2));
}

.station-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1a1a1a, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.station-location {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.player-section {
    text-align: center;
    margin-bottom: 30px;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(181, 23, 158, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(181, 23, 158, 0.4);
}

.play-button:active {
    transform: translateY(0);
}

.play-button.playing {
    background: linear-gradient(135deg, #B5179E, #E91E63);
    border-color: transparent;
}

.play-icon, .pause-icon {
    width: 20px;
    height: 20px;
    fill: #B5179E;
    transition: fill 0.3s ease;
}

.play-button.playing .play-icon,
.play-button.playing .pause-icon {
    fill: white;
}

.pause-icon {
    display: none;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(181, 23, 158, 0.2);
    border-top: 2px solid #B5179E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.play-button.loading .loading-spinner {
    display: block;
    border-top-color: white;
    border-left-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.play-button.loading {
    background: linear-gradient(135deg, #B5179E, #E91E63);
    border-color: transparent;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.volume-section {
    margin: 30px 0;
}

.volume-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.volume-control {
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B5179E, #E91E63);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(181, 23, 158, 0.3);
}

.volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B5179E, #E91E63);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(181, 23, 158, 0.3);
}

.status-section {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    animation: pulse 2s infinite;
}

.status-dot.live {
    background: linear-gradient(135deg, #B5179E, #E91E63);
    box-shadow: 0 0 10px rgba(181, 23, 158, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(181, 23, 158, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(181, 23, 158, 0.1);
}

.now-playing-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.now-playing-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

/* Social Media Section */
.social-media-section {
    margin-top: 15px;
    text-align: center;
}

.social-media-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 500;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.twitter {
    background: #1da1f2;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-icon.youtube {
    background: #ff0000;
    color: white;
}

/* Urban 96 FM - Purple (#6A0DAD, #8A2BE2) Social Media Icons */
.container.urban96 .social-media-label {
    color: #6A0DAD;
    font-weight: 600;
}

.container.urban96 .social-icon {
    background: rgba(106, 13, 173, 0.1);
    border: 2px solid rgba(106, 13, 173, 0.2);
    color: #6A0DAD;
}

.container.urban96 .social-icon:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
}

.container.urban96 .social-icon.facebook:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

.container.urban96 .social-icon.twitter:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

.container.urban96 .social-icon.instagram:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

.container.urban96 .social-icon.youtube:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

.container.urban96 .social-icon.phone:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

.container.urban96 .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

/* SoundCity FM - Purple mixed with Orange (#8A2BE2, #FF6B35) Social Media Icons */
.container.soundcity .social-media-label {
    color: #8A2BE2;
    font-weight: 600;
}

.container.soundcity .social-icon {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid rgba(138, 43, 226, 0.2);
    color: #8A2BE2;
}

.container.soundcity .social-icon:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.container.soundcity .social-icon.facebook:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

.container.soundcity .social-icon.twitter:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

.container.soundcity .social-icon.instagram:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

.container.soundcity .social-icon.youtube:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

.container.soundcity .social-icon.phone:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

.container.soundcity .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

/* Correct FM - Orange (#FF6B35, #FF8C42) Social Media Icons */
.container.correct .social-media-label {
    color: #FF6B35;
    font-weight: 600;
}

.container.correct .social-icon {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    color: #FF6B35;
}

.container.correct .social-icon:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.container.correct .social-icon.facebook:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.container.correct .social-icon.twitter:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.container.correct .social-icon.instagram:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.container.correct .social-icon.youtube:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.container.correct .social-icon.phone:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.container.correct .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

/* RadioX FM - Lime Green and Black (#32CD32, #000000) Social Media Icons */
.container.radiox .social-media-label {
    color: #32CD32;
    font-weight: 600;
}

.container.radiox .social-icon {
    background: rgba(50, 205, 50, 0.1);
    border: 2px solid rgba(50, 205, 50, 0.2);
    color: #32CD32;
}

.container.radiox .social-icon:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.container.radiox .social-icon.facebook:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
}

.container.radiox .social-icon.twitter:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
}

.container.radiox .social-icon.instagram:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
}

.container.radiox .social-icon.youtube:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
}

.container.radiox .social-icon.phone:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
}

.container.radiox .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #32CD32, #000000);
}

/* Spice FM - Black and White (#000000, #FFFFFF) Social Media Icons */
.container.spice .social-media-label {
    color: #000000;
    font-weight: 600;
}

.container.spice .social-icon {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: #000000;
}

.container.spice .social-icon:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    border-color: transparent;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.container.spice .social-icon.facebook:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    color: #000000;
}

.container.spice .social-icon.twitter:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    color: #000000;
}

.container.spice .social-icon.instagram:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    color: #000000;
}

.container.spice .social-icon.youtube:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    color: #000000;
}

.container.spice .social-icon.phone:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    color: #000000;
}

.container.spice .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    color: #000000;
}

/* Access24 - Red and Yellow (#FF0000, #FFD700) Social Media Icons */
.container.access24 .social-media-label {
    color: #FF0000;
    font-weight: 600;
}

.container.access24 .social-icon {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.container.access24 .social-icon:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.container.access24 .social-icon.facebook:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

.container.access24 .social-icon.twitter:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

.container.access24 .social-icon.instagram:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

.container.access24 .social-icon.youtube:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

.container.access24 .social-icon.phone:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

.container.access24 .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

/* LegendsOnly - Yellow and White (#FFD700, #FFFFFF) Social Media Icons */
.container.legendsonly .social-media-label {
    color: #FFD700;
    font-weight: 600;
}

.container.legendsonly .social-icon {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.container.legendsonly .social-icon:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-color: transparent;
    color: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.container.legendsonly .social-icon.facebook:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.legendsonly .social-icon.twitter:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.legendsonly .social-icon.instagram:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.legendsonly .social-icon.youtube:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.legendsonly .social-icon.phone:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.legendsonly .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

/* Irawo - Yellow and White (#FFD700, #FFFFFF) Social Media Icons */
.container.irawo .social-media-label {
    color: #FFD700;
    font-weight: 600;
}

.container.irawo .social-icon {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.container.irawo .social-icon:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-color: transparent;
    color: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.container.irawo .social-icon.facebook:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.irawo .social-icon.twitter:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.irawo .social-icon.instagram:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.irawo .social-icon.youtube:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.irawo .social-icon.phone:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}

.container.irawo .social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    color: #FFD700;
}
/* Station Cards Styles */
.stations-section {
    width: 100%;
    max-width: 1500px;
    padding: 0 20px;
}

.stations-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.stations-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
    user-select: none; /* Prevent text selection during drag */
}

.stations-grid::-webkit-scrollbar {
    height: 8px;
}

.stations-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

.stations-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #B5179E, #E91E63);
    border-radius: 4px;
}

.stations-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #A0147C, #D81B60);
}

.station-card {
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    padding: 25px;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.station-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    border-radius: 16px;
    transition: opacity 0.3s ease;
}

.station-card:hover::before {
    opacity: 0.15;
}

.station-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.station-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    overflow: hidden;
    position: relative;
}

/* Image styling within the icon container */
.station-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Alternative: If you want to maintain some padding around the image */
.station-card-icon img.padded {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.station-card-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.station-card-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.station-card-location {
    font-size: 14px;
    color: #666;
}

.station-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Station-specific gradient backgrounds and card overlays */

/* Urban 96 FM - Purple */
.station-card.urban96::before {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
}

.station-card.urban96:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.3);
}

/* SoundCity FM - Purple mixed with Orange */
.station-card.soundcity::before {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
}

.station-card.soundcity:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
}

/* Correct FM - Orange */
.station-card.correct::before {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.station-card.correct:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

/* RadioX FM - Lime Green and Black */
.station-card.radiox::before {
    background: linear-gradient(135deg, #32CD32, #000000);
}

.station-card.radiox:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(50, 205, 50, 0.3);
}

/* Spice FM - Black and White */
.station-card.spice::before {
    background: linear-gradient(135deg, #000000, #FFFFFF);
}

.station-card.spice:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Access24 - Red and Yellow */
.station-card.access24::before {
    background: linear-gradient(135deg, #FF0000, #FFD700);
}

.station-card.access24:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

/* LegendsOnly - Yellow and White */
.station-card.legendsonly::before {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
}

.station-card.legendsonly:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

/* Irawo - Yellow and White */
.station-card.irawo::before {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
}

.station-card.irawo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}


/* Urban 96 FM - Purple (#6A0DAD, #8A2BE2) */
.container.urban96 .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(106, 13, 173, 0.2));
}

.container.urban96 .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(106, 13, 173, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.urban96 .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(106, 13, 173, 0.4);
}

.container.urban96 .play-button.playing {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
    border-color: transparent;
}

.container.urban96 .play-icon,
.container.urban96 .pause-icon {
    width: 20px;
    height: 20px;
    fill: #6A0DAD;
    transition: fill 0.3s ease;
}

.container.urban96 .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(106, 13, 173, 0.2);
    border-top: 2px solid #6A0DAD;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.urban96 .play-button.loading {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
    border-color: transparent;
}

.container.urban96 .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(106, 13, 173, 0.3);
}

.container.urban96 .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(106, 13, 173, 0.3);
}

.container.urban96 .status-dot.live {
    background: linear-gradient(135deg, #6A0DAD, #8A2BE2);
    box-shadow: 0 0 10px rgba(106, 13, 173, 0.4);
}

.container.urban96 .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(106, 13, 173, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(106, 13, 173, 0.1);
}

/* SoundCity FM - Purple mixed with Orange (#8A2BE2, #FF6B35) */
.container.soundcity .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(138, 43, 226, 0.2));
}

.container.soundcity .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(138, 43, 226, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.soundcity .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(138, 43, 226, 0.4);
}

.container.soundcity .play-button.playing {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
    border-color: transparent;
}

.container.soundcity .play-icon,
.container.soundcity .pause-icon {
    width: 20px;
    height: 20px;
    fill: #8A2BE2;
    transition: fill 0.3s ease;
}

.container.soundcity .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-top: 2px solid #8A2BE2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.soundcity .play-button.loading {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
    border-color: transparent;
}

.container.soundcity .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(138, 43, 226, 0.3);
}

.container.soundcity .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(138, 43, 226, 0.3);
}

.container.soundcity .status-dot.live {
    background: linear-gradient(135deg, #8A2BE2, #FF6B35);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.container.soundcity .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

/* Correct FM - Orange (#FF6B35, #FF8C42) */
.container.correct .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
}

.container.correct .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.correct .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(255, 107, 53, 0.4);
}

.container.correct .play-button.playing {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-color: transparent;
}

.container.correct .play-icon,
.container.correct .pause-icon {
    width: 20px;
    height: 20px;
    fill: #FF6B35;
    transition: fill 0.3s ease;
}

.container.correct .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 2px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.correct .play-button.loading {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-color: transparent;
}

.container.correct .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.container.correct .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.container.correct .status-dot.live {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

.container.correct .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

/* RadioX FM - Lime Green and Black (#32CD32, #000000) */
.container.radiox .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(50, 205, 50, 0.2));
}

.container.radiox .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(50, 205, 50, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.radiox .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(50, 205, 50, 0.4);
}

.container.radiox .play-button.playing {
    background: linear-gradient(135deg, #32CD32, #000000);
    border-color: transparent;
}

.container.radiox .play-icon,
.container.radiox .pause-icon {
    width: 20px;
    height: 20px;
    fill: #32CD32;
    transition: fill 0.3s ease;
}

.container.radiox .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(50, 205, 50, 0.2);
    border-top: 2px solid #32CD32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.radiox .play-button.loading {
    background: linear-gradient(135deg, #32CD32, #000000);
    border-color: transparent;
}

.container.radiox .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32CD32, #000000);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(50, 205, 50, 0.3);
}

.container.radiox .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32CD32, #000000);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(50, 205, 50, 0.3);
}

.container.radiox .status-dot.live {
    background: linear-gradient(135deg, #32CD32, #000000);
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.4);
}

.container.radiox .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(50, 205, 50, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(50, 205, 50, 0.1);
}

/* Spice FM - Black and White (#000000, #FFFFFF) */
.container.spice .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.container.spice .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.spice .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(0, 0, 0, 0.4);
}

.container.spice .play-button.playing {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    border-color: transparent;
}

.container.spice .play-icon,
.container.spice .pause-icon {
    width: 20px;
    height: 20px;
    fill: #000000;
    transition: fill 0.3s ease;
}

.container.spice .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.spice .play-button.loading {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    border-color: transparent;
}

.container.spice .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000, #FFFFFF);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.container.spice .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000, #FFFFFF);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.container.spice .status-dot.live {
    background: linear-gradient(135deg, #000000, #FFFFFF);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.container.spice .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Access24 - Red and Yellow (#FF0000, #FFD700) */
.container.access24 .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.2));
}

.container.access24 .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(255, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.access24 .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(255, 0, 0, 0.4);
}

.container.access24 .play-button.playing {
    background: linear-gradient(135deg, #FF0000, #FFD700);
    border-color: transparent;
}

.container.access24 .play-icon,
.container.access24 .pause-icon {
    width: 20px;
    height: 20px;
    fill: #FF0000;
    transition: fill 0.3s ease;
}

.container.access24 .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-top: 2px solid #FF0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.access24 .play-button.loading {
    background: linear-gradient(135deg, #FF0000, #FFD700);
    border-color: transparent;
}

.container.access24 .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF0000, #FFD700);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.3);
}

.container.access24 .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF0000, #FFD700);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.3);
}

.container.access24 .status-dot.live {
    background: linear-gradient(135deg, #FF0000, #FFD700);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.container.access24 .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

/* LegendsOnly - Yellow and White (#FFD700, #FFFFFF) */
.container.legendsonly .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
}

.container.legendsonly .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.legendsonly .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(255, 215, 0, 0.4);
}

.container.legendsonly .play-button.playing {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-color: transparent;
}

.container.legendsonly .play-icon,
.container.legendsonly .pause-icon {
    width: 20px;
    height: 20px;
    fill: #FFD700;
    transition: fill 0.3s ease;
}

.container.legendsonly .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-top: 2px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.legendsonly .play-button.loading {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-color: transparent;
}

.container.legendsonly .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.container.legendsonly .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.container.legendsonly .status-dot.live {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.container.legendsonly .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Irawo - Yellow and White (#FFD700, #FFFFFF) */
.container.irawo .station-logo img {
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2));
}

.container.irawo .play-button {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.container.irawo .play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(255, 215, 0, 0.4);
}

.container.irawo .play-button.playing {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-color: transparent;
}

.container.irawo .play-icon,
.container.irawo .pause-icon {
    width: 20px;
    height: 20px;
    fill: #FFD700;
    transition: fill 0.3s ease;
}

.container.irawo .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-top: 2px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.container.irawo .play-button.loading {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    border-color: transparent;
}

.container.irawo .volume-control::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.container.irawo .volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.container.irawo .status-dot.live {
    background: linear-gradient(135deg, #FFD700, #FFFFFF);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.container.irawo .now-playing {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}


/* Ensure icons are white when playing for all stations */
.container .play-button.playing .play-icon,
.container .play-button.playing .pause-icon {
    fill: white;
}

/* Ensure loading spinner is white when loading for all stations */
.container .play-button.loading .loading-spinner {
    border-top-color: white;
    border-left-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}


@media (max-width: 480px) {
    .container .play-button {
        width: 60px;
        height: 60px;
    }
    
    .container .play-icon,
    .container .pause-icon {
        width: 18px;
        height: 18px;
    }
    
    .container .loading-spinner {
        width: 18px;
        height: 18px;
    }
}
/* Mobile Responsiveness */
@media (max-width: 480px) {
   
    .station-name {
        font-size: 24px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }

    .stations-section {
        padding: 0 10px;
    }

   

    .stations-title {
        font-size: 20px;
    }

    .station-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .station-card-icon img {
        border-radius: 10px;
    }
    
    .station-card-icon img.padded {
        border-radius: 10px;
    }

    .social-media-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}
