* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #070d16;
    color: #fff;
}

.hero {
    background: radial-gradient(circle at top, #183b69, #070d16 65%);
    padding: 35px 18px 55px;
    text-align: center;
}

.hero-inner {
    max-width: 960px;
    margin: auto;
}

.brand-logo {
    width: 180px;
    max-width: 65%;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

h1 {
    font-size: clamp(32px, 7vw, 68px);
    line-height: 1.05;
    margin: 10px 0;
    color: #f4c542;
    word-break: break-word;
}

h2 {
    color: #f4c542;
    font-size: clamp(28px,4vw,42px);
    margin: 34px 0 22px;
    border-left: 4px solid #f4c542;
    padding-left: 14px;
}

.container {
    max-width: 1150px;
    margin: auto;
    padding: 28px 16px;
}

.search-box,
.filters {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 760px;
    margin: 20px auto;
}



.filters {
    grid-template-columns: repeat(6, 1fr);
}

input,
select,
button {
    padding: 13px;
    border-radius: 10px;
    border: 1px solid #26364f;
    font-size: 16px;
}

button,
.primary-link,
.btn {
    background: #f4c542;
    color: #111;
    text-decoration: none;
    border: none;
    font-weight: 700;
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
}

button:hover,
.primary-link:hover,
.btn:hover {
    filter: brightness(1.08);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.radio-card {
    background: #101b2e;
    border: 1px solid #24344f;
    border-radius: 18px;
    text-align: center;
padding: 38px 16px 18px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.radio-card:hover {
    transform: translateY(-3px);
    border-color: #f4c542;
}

.radio-card.featured {
    border: 2px solid #f4c542;
    box-shadow: 0 0 22px rgba(244,197,66,.35);
    background: linear-gradient(180deg,#162844,#101b2e);
    position: relative;
    transform: scale(1.02);
}

.radio-card.featured::before {
    content: "⭐ Destaque";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f4c542;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
}

.radio-card img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 18px;
}

.radio-card strong {
    display: block;
    margin-top: 10px;
}

.radio-card span {
    font-size: 14px;
    color: #cbd3df;
}

.form-card {
    background: #101b2e;
    border: 1px solid #253650;
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 13px;
}

.form-card label {
    display: grid;
    gap: 6px;
}

.check {
    display: inline-flex !important;
    grid-template-columns: auto 1fr !important;
    gap: 8px;
    margin: 6px 14px 6px 0;
}

.profile {
    text-align: center;
    padding-top: 10px;
}

.profile-logo {
    display: block;
    margin: 0 auto 22px auto;
    width: 180px;
    height: 180px;
    max-width: 45vw;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    border: 2px solid rgba(244,197,66,0.15);
}

.profile h1 {
    font-size: clamp(34px, 8vw, 72px);
    line-height: 1.05;
    margin-top: 18px;
    margin-bottom: 20px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.player-box {
    background: #101b2e;
    padding: 20px;
    border-radius: 18px;
    margin: 22px auto 28px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(244,197,66,0.08);
}

audio {
    width: 100%;
}

.reload-btn {
    margin-top: 14px;
}

#playerStatus {
    color: #d8deea;
    margin-top: 16px;
}

.links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f4c542;
    text-decoration: none;
    border: 1px solid rgba(244,197,66,0.35);
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(244,197,66,0.06);
    min-width: 95px;
}

.links a:hover {
    background: rgba(244,197,66,0.18);
}

.footer {
    text-align: center;
    padding: 30px;
    color: #b8c1d1;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.profile-actions .btn {
    background: rgba(244,197,66,0.12);
    color: #f4c542;
    border: 1px solid rgba(244,197,66,0.35);
}

.profile-actions .btn:hover {
    background: rgba(244,197,66,0.22);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 35px 0 10px;
}

.pagination span {
    color: #d8deea;
    font-weight: bold;
}

.search-actions {
    margin-top: 10px;
    margin-bottom: 18px;
}

.filters .clear-btn {
    white-space: nowrap;
}

.share-box {
    background: #101b2e;
    border: 1px solid rgba(244,197,66,0.18);
    border-radius: 18px;
    padding: 22px;
    max-width: 650px;
    margin: 24px auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    text-align: center;
}

.share-box h2 {
    color: #f4c542;
    margin: 0 0 10px;
    font-size: 26px;
    border-left: none;
    padding-left: 0;
}

.share-text {
    color: #d8deea;
    margin-bottom: 18px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-buttons a,
.share-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4c542;
    color: #111;
    border: none;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    min-width: 130px;
}

.share-buttons a:hover,
.share-buttons button:hover {
    filter: brightness(1.08);
}

.share-status {
    color: #f4c542;
    margin-top: 14px;
    font-weight: bold;
}

@media (max-width: 760px) {
    .hero {
        padding: 26px 14px 40px;
    }

    .search-box,
    .filters {
        grid-template-columns: 1fr;
    }

    .filters .clear-btn {
        width: 100%;
        text-align: center;
    }

    .brand-logo {
        width: 150px;
        max-width: 70%;
    }

    h1 {
        font-size: clamp(34px, 12vw, 54px);
    }

    h2 {
        font-size: 28px;
    }

    .profile {
        padding-top: 0;
    }

    .profile-logo {
        width: 140px;
        height: 140px;
        max-width: 55vw;
        border-radius: 22px;
    }

    .profile h1 {
        font-size: clamp(32px, 11vw, 52px);
    }

    .player-box {
        padding: 14px;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .links a {
        margin: 6px 4px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .share-buttons a,
    .share-buttons button {
        width: 100%;
        max-width: 320px;
    }
}

.advertise-page {
    text-align: center;
}

.advertise-hero .lead {
    max-width: 850px;
    margin: 20px auto;
    color: #d8deea;
    font-size: 20px;
    line-height: 1.6;
}

.advertise-box {
    background: #101b2e;
    border: 1px solid rgba(244,197,66,0.15);
    border-radius: 18px;
    padding: 24px;
    margin: 24px auto;
    max-width: 850px;
    text-align: left;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    margin: 12px 0;
    font-size: 18px;
}

.advertise-cta {
    margin: 35px auto;
    max-width: 800px;
}

.filters {
    background: rgba(16, 27, 46, 0.55);
    padding: 20px;
    border-radius: 18px;
}



.home-banners {
    margin: 45px auto 20px;
    text-align: center;
    width: 100%;
}

.home-banners a {
    display: block;
    width: 100%;
}

.home-banners img {
    width: 100%;
    max-width: 970px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    margin: 0 auto;
    display: block;
}

.home-search {
    grid-template-columns: 1fr 220px auto;
}

@media (max-width: 760px) {
    .home-search {
        grid-template-columns: 1fr;
    }
}

.whatsapp-card {
    max-width: 900px;
    margin: 45px auto 20px;
    padding: 28px 22px;
    background: linear-gradient(180deg, #101b2e, #0b1424);
    border: 1px solid rgba(244,197,66,0.20);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.whatsapp-card h2 {
    border-left: none;
    padding-left: 0;
    margin-top: 0;
    color: #f4c542;
}

.whatsapp-card p {
    max-width: 760px;
    margin: 0 auto 22px;
    color: #d8deea;
    font-size: 18px;
    line-height: 1.6;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    background: #25d366;
    color: #07110b;
    font-weight: 800;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.75);
}

.whatsapp-float:hover {
    filter: brightness(1.08);
}

@media (max-width: 760px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
        font-size: 14px;
    }

    .whatsapp-card p {
        font-size: 16px;
    }
}

.radio-stats-mini {
    margin: 12px auto 20px;
}

.radio-stats-mini a {
    color: #f4c542;
    text-decoration: none;
    border: 1px solid rgba(244,197,66,0.35);
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-block;
    background: rgba(244,197,66,0.08);
}

.stats-public-card {
    max-width: 850px;
    margin: 30px auto;
    padding: 26px;
    background: #101b2e;
    border: 1px solid rgba(244,197,66,0.18);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.stats-public-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid rgba(244,197,66,0.18);
}

.stats-public-card h2 {
    border-left: none;
    padding-left: 0;
    margin-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.stats-grid div {
    background: #0b1424;
    border: 1px solid rgba(244,197,66,0.12);
    border-radius: 16px;
    padding: 18px;
}

.stats-grid strong {
    display: block;
    font-size: 32px;
    color: #f4c542;
}

.stats-grid span {
    color: #d8deea;
    font-size: 14px;
}

.favorite-card {
    display: block;
}

.favorite-card a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.favorite-card form {
    margin-top: 14px;
}

.favorite-card button {
    width: 100%;
    font-size: 14px;
}

.now-playing-box {
    background: rgba(244,197,66,0.08);
    border: 1px solid rgba(244,197,66,0.25);
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
    text-align: center;
}

.now-playing-label {
    display: block;
    color: #f4c542;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.now-playing-box strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}


.like-box {
    margin: 16px auto 22px;
    text-align: center;
}

.like-box button {
    background: #f4c542;
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 800;
    cursor: pointer;
}

.like-box button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

#likeTotal {
    display: block;
    margin-top: 8px;
    color: #f4c542;
    font-weight: 700;
}

#likeMessage {
    margin-top: 8px;
    color: #d8deea;
    font-size: 14px;
}

.pwa-install-box {
    max-width: 650px;
    margin: 16px auto 22px;
    padding: 16px;
    background: rgba(244,197,66,0.08);
    border: 1px solid rgba(244,197,66,0.25);
    border-radius: 18px;
    text-align: center;
}

.pwa-install-box button {
    background: #f4c542;
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    cursor: pointer;
}

.pwa-install-box p {
    color: #d8deea;
    font-size: 14px;
    margin: 10px 0 0;
}
