:root {
    --primary: #e50914;
    --dark: #141414;
    --light: #f5f5f5;
    --gray: #808080;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-links a {
    margin-left: 20px;
    font-size: 14px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 0;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-weight: bold;
}

.btn:hover {
    background: #ff0f1f;
}

/* Video Grid */
.section {
    padding: 40px 4%;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 24px;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: #333;
    object-fit: cover;
    border-radius: 4px;
}

.video-info {
    padding: 10px 0;
}

.video-title {
    font-size: 14px;
    font-weight: bold;
}

.video-meta {
    font-size: 12px;
    color: var(--gray);
}

/* Player Page */
.player-container {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 4%;
    padding-right: 4%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: #000;
    margin-bottom: 20px;
}

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

    /* Footer */
footer {
    padding: 40px 4%;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 40px;
    border-top: 1px solid #333;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: var(--light);
    font-size: 20px;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Tags */
.tags-container {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #333;
    color: #ddd;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: white;
}

.seo-divider {
    text-align: center;
    margin: 50px auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 1900px;
}

.seo-divider h1 { font-size: 1.8rem; color: var(--light); }
.seo-divider h2 { font-size: 1.4rem; color: var(--gray); }

/* Banners */
.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    max-width: 1900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-item {
    width: 100%;
    aspect-ratio: 3/1;
    background-color: #222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive - Large screens */
@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .section {
        max-width: 1900px;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .video-title {
        font-size: 16px;
    }
    .video-meta {
        font-size: 13px;
    }
}

@media (min-width: 1600px) {
    .hero h1 {
        font-size: 4rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Responsive - Small screens */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }
    .hero-content {
        text-align: center;
    }
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .banner-grid {
        grid-template-columns: 1fr; /* Stack banners on mobile */
    }
    .section-title {
        font-size: 1.3rem;
    }
}