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

:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary: #1a2e1a;
    --accent: #8bc34a;
    --dark: #0a1a0a;
    --light: #ffffff;
    --gray: #a5d6a7;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0d1f0d;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 3px solid var(--primary);
}

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

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img img {
    height: 50px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav a:hover {
    color: var(--light);
}

/* Player Section */
.live-section {
    padding-top: 90px;
    padding-bottom: 40px;
    background: var(--dark);
}

.live-badge {
    display: inline-block;
    background: #c62828;
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.player-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.player-container {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary);
}

/* About */
.about {
    padding: 80px 0;
    background: var(--secondary);
}

.about h2, .schedule h2, .contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--light);
}

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

.about-card {
    background: var(--dark);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(34, 139, 34, 0.2);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-card p {
    color: var(--gray);
}

/* Schedule */
.schedule {
    padding: 80px 0;
    background: var(--dark);
}

.schedule-grid {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--secondary);
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

.schedule-item:hover {
    transform: translateX(10px);
}

.time {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 80px;
}

.program-info h4 {
    color: var(--light);
    margin-bottom: 5px;
}

.program-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--secondary);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .logo-img img {
        height: 30px;
    }

    .live-section {
        padding-top: 70px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }
}
