/* Prevent horizontal scrolling, allow vertical scrolling */
html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Cinzel', serif;
    background: #0f0f1f;
    color: #ffffff;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a2e;
    padding: 1.2rem 0;
}

/* NAVIGATION MENU */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav ul li {
    display: inline;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #e8c547;
}

.active {
    font-weight: 700;
    color: #e8c547;
}

/* SUBSCRIBE BUTTON */
.subscribe-section {
    text-align: center;
    margin-top: 2rem;
}

.subscribe-button {
    display: inline-block;
    background: #ff0000;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}

.subscribe-button:hover {
    background: #cc0000;
}

/* VIDEOS SECTION */
.videos-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding: 2rem;
}

.video-category {
    width: 45%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.video-category h2 {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    color: #e8c547;
    margin-bottom: 1rem;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-grid iframe {
    border-radius: 8px;
}

/* FOOTER */
.site-footer {
    background: #1a1a2e;
    text-align: center;
    padding: 1rem;
    flex-shrink: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .videos-section {
        flex-direction: column;
        align-items: center;
    }

    .video-category {
        width: 90%;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
