* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 640px;
    margin: 0 auto;
}

/* Header Section */
.header-section {
    margin-bottom: 20px;
}

.station-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.logo-container {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.station-info {
    flex: 1;
    margin-left: 20px;
}

.station-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 3px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.tagline {
    font-size: 13px;
    color: #cccccc;
}

.live-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.live-badge {
    background: #ff4444;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255, 68, 68, 0); }
}

.listener-count {
    font-size: 13px;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Player Section */
.player-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.control-btn {
    background: #2a2a2a;
    border: 2px solid #d4af37;
    color: #d4af37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: #d4af37;
    color: #000;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.play-btn:hover {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.control-btn.playing {
    background: #d4af37;
    animation: playingPulse 2s infinite;
}

@keyframes playingPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.volume-icon {
    color: #d4af37;
    font-size: 20px;
}

.volume-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d4af37;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d4af37;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.volume-percentage {
    color: #d4af37;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.action-btn {
    background: transparent;
    border: 2px solid #444;
    color: #999;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.action-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

/* Now Playing Section */
.now-playing-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.now-playing-content {
    display: flex;
    gap: 25px;
    align-items: center;
}

.album-art {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.track-info {
    flex: 1;
}

.track-title {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 6px;
    font-weight: 700;
}

.track-artist {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 12px;
}

.track-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: #2a2a2a;
    color: #d4af37;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #d4af37;
    font-weight: 600;
}

.live-tag {
    background: #d4af37;
    color: #000;
}

/* Comments Section */
.comments-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.comments-header .section-title {
    margin-bottom: 0;
}

.toggle-comments-list-btn {
    background: #2a2a2a;
    border: 2px solid #444;
    color: #999;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toggle-comments-list-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.toggle-comments-list-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.comment-form {
    margin-bottom: 25px;
}

.comment-input,
.comment-textarea {
    width: 100%;
    background: #2a2a2a;
    border: 2px solid #444;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.comment-input:focus,
.comment-textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.comment-textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-comment-btn {
    background: #d4af37;
    border: none;
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-comment-btn:hover {
    background: #f4cf6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.submit-comment-btn:active {
    transform: translateY(0);
}

.comments-list {
    max-height: 400px;
    overflow-y: auto;
}

.comments-list::-webkit-scrollbar {
    width: 8px;
}

.comments-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-comments i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-comments p {
    font-size: 14px;
}

.comment-item {
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

.comment-time {
    color: #666;
    font-size: 12px;
}

.comment-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Stream Quality Section */
.quality-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.quality-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quality-label {
    color: #cccccc;
    font-size: 15px;
}

.quality-btn {
    background: #2a2a2a;
    border: 2px solid #444;
    color: #999;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.quality-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.quality-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.section-title {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content {
    line-height: 1.8;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.highlight-box p {
    color: #ffffff;
    font-size: 15px;
    text-align: center;
}

.about-text {
    color: #cccccc;
    font-size: 15px;
    margin-bottom: 20px;
}

.submission-box {
    background: rgba(212, 175, 55, 0.05);
    border: 2px dashed #d4af37;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.submission-box p {
    color: #d4af37;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-card {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-card i {
    font-size: 30px;
    color: #d4af37;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.support-card {
    background: linear-gradient(135deg, #d4af37 0%, #f4cf6b 100%);
    border-color: #d4af37;
}

.support-card i {
    color: #000;
}

.support-card .contact-label,
.support-card .contact-value {
    color: #000;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #2a2a2a;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.footer-title {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-copyright {
    color: #999;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .station-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .station-info {
        margin-left: 0;
    }

    .live-info {
        align-items: center;
    }

    .now-playing-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quality-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .station-info h1 {
        font-size: 22px;
    }

    .track-title {
        font-size: 20px;
    }

    .player-controls {
        gap: 15px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }
}
