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

/* =====================================
   GLOBAL
===================================== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================================
   HERO SECTION
===================================== */
.hero-section {
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-section p {
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto;
    color: #cbd5f5;
}

/* =====================================
   TEXT / CONTENT SECTION
===================================== */
.text-section,
.posts-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.text-section h2,
.posts-section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 18px;
}

.text-section p {
    font-size: 16px;
    color: #475569;
    max-width: 900px;
}

/* =====================================
   POSTS GRID
===================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

/* =====================================
   POST CARD
===================================== */
.post-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.post-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.post-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 14px;
}

.post-card a {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
}

.post-card a:hover {
    text-decoration: underline;
}

/* =====================================
   BANNER / CTA SECTION (OPTIONAL)
===================================== */
.banner-section {
    background: #D4AF37;
    color: #0f172a;
    padding: 60px 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
}

/* =====================================
   UTILITIES
===================================== */
.section-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 60px 0;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 34px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .text-section h2,
    .posts-section h2 {
        font-size: 26px;
    }
}

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

/* BASE */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.7;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    background: #020617;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #D4AF37;
    font-weight: 900;
    letter-spacing: 0.08em;
}

/* NAV */
.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

/* CONTENT */
.site-content {
    padding: 60px 20px;
}

/* PAGE */
.page-wrapper {
    max-width: 900px;
    margin: auto;
}

.page-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.page-content {
    font-size: 18px;
    color: #334155;
}

/* FOOTER */
.site-footer {
    margin-top: 80px;
    padding: 30px 20px;
    background: #020617;
    color: #cbd5f5;
    text-align: center;
    font-size: 14px;
}
/* ================================
   RADIO PAGE
================================ */

.radio-header {
    text-align: center;
    margin-bottom: 50px;
}

.back-link {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.page-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 10px;
}

/* GRID */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* CARD */
.radio-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.radio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* BADGE */
.radio-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #22c55e;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
}

.radio-badge.fm {
    background: #D4AF37;
    color: #0f172a;
}

/* TEXT */
.radio-name {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.radio-desc {
    font-size: 15px;
    color: #475569;
    margin-bottom: 20px;
}

/* PLAYER */
.radio-player {
    width: 100%;
    outline: none;
}
/* ===========================
   RADIO PLAYER UI
=========================== */

.radio-hero {
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

.radio-hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.radio-hero p {
    font-size: 18px;
    color: #cbd5f5;
}

/* LIST */
.radio-list {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARD */
.radio-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 6px solid #D4AF37;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.radio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(0,0,0,0.15);
}

/* INFO */
.radio-info h2 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.radio-frequency {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.radio-info p {
    margin-top: 14px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

/* PLAYER */
.radio-player {
    margin-top: 26px;
    display: flex;
    justify-content: flex-end;
}

.radio-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #D4AF37;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212,175,55,0.45);
    transition: all 0.2s ease;
}

.radio-play-btn:hover {
    transform: scale(1.1);
}

/* DISABLED */
.radio-disabled {
    opacity: 0.5;
    pointer-events: none;
}

