:root {
    --primary-color: #2c3e50;
    --secondary-color: #ffffff;
    --accent-color: #b39b5f; /* Gold accent */
    --background-color: #f4f4f4;
    --text-color: #333;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header {
    background-color: rgba(44, 62, 80, 0.9); /* Semi-transparent header */
    color: var(--secondary-color);
    padding: 1rem 0;
    text-align: center;
    box-shadow: var(--shadow);
}

header .logo {
    width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
}

header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent-color);
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stream-section {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stream-section:hover {
    transform: translateY(-5px);
}

.stream-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 4px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.audio-container {
    max-width: 500px;
    margin: 0 auto;
}

.audio-container iframe {
    border-radius: 4px;
}

footer {
    background-color: rgba(30, 30, 30, 0.9);
    color: #ccc;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
    header h2 {
        font-size: 1rem;
    }
    .stream-section h3 {
        font-size: 1.5rem;
    }
}

