:root {
    --primary-color: #1a5276;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: #f5f5f5;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.header-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.info-bar {
    font-size: 0.9rem;
    display: flex;
    gap: 15px;
}

.contact-info {
    text-align: right;
    font-size: 0.9rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 3px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--light-color);
}

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

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

.stream-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stream-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.stream-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stream-info {
    padding: 20px;
}

.stream-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.stream-info p {
    margin-bottom: 15px;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social-share p {
    margin: 0;
    font-weight: bold;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.whatsapp { background-color: #25D366; }
.facebook { background-color: #3b5998; }
.twitter { background-color: #1DA1F2; }
.telegram { background-color: #0088cc; }
.email { background-color: var(--accent-color); }

.about-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.about-section p {
    margin-bottom: 15px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-small {
    height: 40px;
    width: auto;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
        margin-top: 15px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo, .footer-contact, .footer-copyright {
        margin-bottom: 20px;
        text-align: center;
    }
    
    #desktop-player {
        display: none;
    }
    
    .mobile-only {
        display: block !important;
    }
}

.mobile-only {
    display: none;
}