
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header .logo h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f4b400;
}

main {
    padding: 20px;
}

.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px;
}

.hero .cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.media-gallery {
    margin-top: 30px;
}

.media-gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.media-video {
    margin-top: 40px;
    text-align: center;
}

.media-video h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.video-embed iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.streaming-links {
    margin-top: 40px;
}

.streaming-links h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.streaming-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.streaming-links ul li a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.streaming-links ul li a:hover {
    color: #f4b400;
}

.social-media {
    margin-top: 40px;
}

.social-media h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-media ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.social-media ul li a {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-media ul li a:hover {
    color: #f4b400;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #f4b400;
}

