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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* equalizer animation */
@keyframes equalizing {
    0%, 100% { height: 12px; }
    50% { height: 28px; }
}

/* custom scroll */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #E3007E; border-radius: 10px; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #0f0f0f;
    border-bottom: 1px solid #1f1f1f;
}

.logo-img {
    height: 60px;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: white;
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #e5e5e5;
}

.btn-secondary {
    background: #E3007E;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #c0006a;
}

/* Swiper slides */
.swiper-slide {
    border-radius: 3rem;
    overflow: hidden;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    padding-top: 25vh;
    padding: 3rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.slide-subtitle {
    color: #E3007E;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Swiper pagination & navigation colors */
.swiper-pagination-bullet {
    background: #E3007E !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #E3007E !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #E3007E !important;
    background: rgba(0,0,0,0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(227,0,126,0.3);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .slide-content {
        height: 350px;
        padding: 2rem;
        padding-top: 20vh;
    }
    .slide-title {
        font-size: 1.8rem;
    }
    .slide-subtitle {
        font-size: 0.9rem;
    }
}

/* Section title */
.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.section-title-line {
    background: #E3007E;
    width: 40px;
    height: 2px;
}

/* Radio Grid */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.radio-card {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.radio-card:hover {
    transform: translateY(-8px);
}

.radio-logo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
    background: #111;
}

.radio-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.radio-card:hover .radio-logo {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.radio-card.active .radio-logo-wrapper {
    border-color: #E3007E;
    box-shadow: 0 0 20px rgba(227, 0, 126, 0.4);
}

.radio-card.active .radio-logo {
    filter: grayscale(0%);
}

/* Equalizer overlay */
.equalizer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.radio-card.active .equalizer-overlay {
    opacity: 1;
}

.equalizer-bar {
    width: 5px;
    background-color: #E3007E;
    border-radius: 2px;
    animation: equalizing 1s infinite ease-in-out;
}

.equalizer-bar:nth-child(1) { animation-duration: 0.6s; height: 20px; }
.equalizer-bar:nth-child(2) { animation-duration: 0.8s; height: 30px; }
.equalizer-bar:nth-child(3) { animation-duration: 1.1s; height: 24px; }
.equalizer-bar:nth-child(4) { animation-duration: 0.9s; height: 32px; }

.radio-name {
    margin-top: 1rem;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.radio-card.active .radio-name {
    color: #E3007E;
}

.radio-motto {
    font-size: 0.7rem;
    color: #6b6b6b;
    margin-top: 0.25rem;
    line-height: 1.3;
    padding: 0 0.5rem;
}

/* RSS Section */
.rss-section {
    background: #0a0a0a;
    border-radius: 2rem;
    margin: 3rem 0;
    padding: 1.5rem;
    border: 1px solid #222;
    position: relative;
}

.rss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #222;
    padding-bottom: 0.5rem;
}

.rss-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rss-logo {
    height: 40px;
    width: auto;
    border-radius: 0.5rem;
}

.rss-title {
    color: #E3007E;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.rss-close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.rss-close-btn:hover {
    color: #E3007E;
}

.rss-ticker {
    overflow: hidden;
    position: relative;
    min-height: 160px;
}

.rss-slide {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: #111;
    border-radius: 1.5rem;
    padding: 1rem;
    transition: opacity 0.3s;
}

.rss-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 1rem;
    background: #222;
}

.rss-content {
    flex: 1;
}

.rss-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.rss-read-btn {
    display: inline-block;
    background: #E3007E;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.rss-read-btn:hover {
    background: #c0006a;
}

.rss-controls {
    margin-top: 1rem;
    text-align: center;
}

.rss-control-btn {
    background: #222;
    border: none;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Contact form */
.contact-form-section {
    background: #0a0a0a;
    border-radius: 3rem;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid #222;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #aaa;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    color: white;
    font-family: inherit;
    transition: border 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #E3007E;
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    background: #E3007E;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #c0006a;
}

/* hCaptcha styling */
.h-captcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

/* Player bar */
.player-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #2a2a2a;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-logo {
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    object-fit: cover;
}

.player-name {
    font-weight: bold;
    font-size: 0.9rem;
}

.player-status {
    font-size: 0.7rem;
    color: #E3007E;
    margin-top: 0.2rem;
}

.player-play {
    background: #E3007E;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
    transition: background 0.2s;
}

.player-play:hover {
    background: #c0006a;
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .radio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .radio-logo-wrapper {
        width: 100px;
        height: 100px;
    }
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    .rss-slide {
        flex-direction: column;
        text-align: center;
    }
    .rss-image {
        width: 80px;
        height: 80px;
    }
    .rss-logo {
        height: 30px;
    }
    .h-captcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}