
/*
Theme Name: BFM947 Level 17.2 Clean Final
Author: BFM947
Version: 10.2
Description: Clean broadcast-level FM theme. Stable header, working burger, AI content, no Now Playing text.
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    padding-top: 95px;
}

/* ===== HEADER (STABLE ABSOLUTE LAYOUT) ===== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid #111;
}

.logo-container {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-container img {
    height: 55px;
    filter: drop-shadow(0 0 12px rgba(255,193,7,0.8));
}

.header-player {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {opacity:1;}
    50% {opacity:0.3;}
    100% {opacity:1;}
}

.header-player button {
    background: #FFC107;
    border: none;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255,193,7,0.9);
    transition: 0.3s ease;
}

.header-player button:hover {
    box-shadow: 0 0 45px rgba(255,193,7,1);
    transform: scale(1.05);
}

.hamburger {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
    color: #FFC107;
}

/* ===== OVERLAY MENU ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.4s ease;
    z-index: 20000;
}

.overlay.active {
    transform: translateY(0);
}

.overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.overlay ul li {
    margin: 25px 0;
}

.overlay ul li a {
    color: #FFC107;
    font-size: 26px;
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 900;
}

.hero p {
    color: #aaa;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 40px;
    text-align: center;
}

.section h2 {
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255,193,7,0.5);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card h3 {
    padding: 15px;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 40px;
    background: #000;
    color: #777;
}
