/* Reset & Global */
:root { --primary-color: #ff0000; --bg-color: #050505; --text-color: #ffffff; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-color); color: var(--text-color); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%;
    z-index: 1000; background: #000;
}
.logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--primary-color); font-weight: 700; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links li a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #ddd; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: #000;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    transition: 0.4s; z-index: 2000;
}
.mobile-menu.active { right: 0; }
.mobile-menu a { font-family: 'Oswald', sans-serif; font-size: 2rem; text-transform: uppercase; color: #fff; }
.mobile-menu a:hover { color: var(--primary-color); }
.close-menu { position: absolute; top: 20px; right: 30px; font-size: 3rem; cursor: pointer; color: #fff; }

/* Content */
.main-content {
    flex: 1;
    margin-top: 100px;
    padding: 0 20px 60px;
    text-align: center;
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    max-width: 900px;
    margin: 0 auto 40px;
    background: #111;
    border: 1px solid #333;
}

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

.subscribe-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
}

.btn-subscribe {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
}

.btn-subscribe:hover {
    background-color: #b30000;
}

/* Footer */
footer { padding: 40px 20px; background-color: #000; text-align: center; border-top: 1px solid #222; }
.social-icons a { font-size: 1.5rem; margin: 0 15px; color: #fff; }
.social-icons a:hover { color: var(--primary-color); }
footer p { font-size: 0.8rem; color: #666; margin-top: 10px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
}