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

body {
    background-color: #000;
    color: #fff;
    font-family: Calibri, Arial, sans-serif;
    overflow-x: hidden;
}

/* Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 100, 0, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 12pt;
    font-family: Calibri, Arial, sans-serif;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: inline-block;
}

nav ul li a:hover {
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.8),
                 0 0 20px rgba(255, 100, 0, 0.6),
                 0 0 30px rgba(255, 100, 0, 0.4);
    color: #ff6400;
}

nav ul li a.active {
    color: #ff6400;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 20px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 100, 0, 0.2);
    text-align: right;
}

footer p {
    margin: 0;
    font-size: 10pt;
    color: #ddd;
}

footer a {
    color: #ff6400;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.6);
}

/* Main Content Container */
.container {
    margin-top: 80px;
    margin-bottom: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Logo Section */
.logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.logo-section img {
    max-width: 90%;
    height: auto;
    display: block;
}

/* Video Section */
.video-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.video-section video {
    width: 100%;
    max-width: 960px;
    height: auto;
    border: 2px solid rgba(255, 100, 0, 0.3);
    border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        padding: 0 20px;
    }
    
    nav ul li a {
        font-size: 10pt;
        padding: 8px 15px;
    }
    
    .logo-section img {
        max-width: 95%;
    }
    
    .video-section video {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 10px;
    }
    
    nav ul li a {
        font-size: 9pt;
        padding: 6px 10px;
        letter-spacing: 1px;
    }
}

/* Content Pages Styling */
.content-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
}

.content-wrapper h1 {
    font-size: 36pt;
    color: #ff6400;
    margin-bottom: 30px;
    text-align: left;
}

.announcement {
    margin-bottom: 50px;
}

.announcement p {
    font-size: 16pt;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ddd;
}

.announcement .cta {
    font-weight: bold;
    color: #fff;
    margin-top: 25px;
}

/* Streaming Links */
.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.stream-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background-color: rgba(255, 100, 0, 0.1);
    border: 2px solid rgba(255, 100, 0, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 14pt;
    transition: all 0.3s ease;
}

.stream-link:hover {
    background-color: rgba(255, 100, 0, 0.2);
    border-color: rgba(255, 100, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.4);
    transform: translateX(10px);
}

.stream-link.inactive {
    opacity: 0.5;
    cursor: not-allowed;
}

.stream-link.inactive:hover {
    background-color: rgba(255, 100, 0, 0.1);
    border-color: rgba(255, 100, 0, 0.3);
    box-shadow: none;
    transform: none;
}

.stream-link .icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.stream-link .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.stream-link span {
    font-family: Calibri, Arial, sans-serif;
}

@media (max-width: 768px) {
    .content-wrapper h1 {
        font-size: 28pt;
    }
    
    .streaming-links {
        max-width: 100%;
    }
    
    .stream-link {
        font-size: 12pt;
    }
}

/* Contact Page Links */
.contact-link {
    color: #ff6400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 100, 0, 0.6);
}

/* Promo Image */
.promo-image {
    margin-top: 60px;
    max-width: 600px;
}

.promo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

