/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* GLOBAL CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #000;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: red;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 12px 24px;
    margin: 5px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background: red;
    color: #fff;
}

.secondary {
    border: 2px solid red;
    color: #fff;
}

/* VIDEOS */
.videos {
    padding: 80px 20px;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.video-card {
    position: relative;
}

.video-card img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
}

/* CATEGORIES */
.categories {
    padding: 60px 20px;
    text-align: center;
}

.category-list span {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border: 1px solid red;
}

/* ABOUT */
.about {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* CTA */
.cta {
    padding: 80px 20px;
    text-align: center;
}

.cta .btn {
    margin-top: 20px;
}

/* FOOTER */
.footer {
    padding: 20px;
    text-align: center;
    background: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
}

.contact {
    padding: 100px 20px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    outline: none;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    cursor: pointer;
}
/* SUBMISSION PAGE */
.submission-hero {
    position: relative;
    height: 100vh;
    background: url('../img/submit-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submission-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.submission-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.submission-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.submission-content p {
    margin-bottom: 30px;
}

.submission-form input,
.submission-form textarea,
.submission-form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: none;
}

.submission-form textarea {
    height: 120px;
}
.live-section {
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers EVERYTHING horizontally */
    text-align: center;    /* centers text */
}
.live-player video {
    width: 100%;
    max-width: 1000px;
    height: auto;
    background: #000;
    border-radius: 8px;
}
.player-wrapper {
    width: 100%;
    max-width: 1000px;
}
/* FEATURED VIDEO (TOP HERO PLAYER) */
.featured-video {
    padding: 120px 20px 40px;
    text-align: center;
}

.featured-video h1 {
    margin-bottom: 20px;
}

.video-player {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.video-player video {
    width: 100%;
    height: auto;
    max-height: 620px;
    border-radius: 10px;
    background: #000;
}

/* VIDEO GRID SECTION */
.videos-page {
    padding: 40px 20px 80px;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 30px auto;
}

/* VIDEO CARDS */
.video-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

/* VIDEO THUMB STYLE */
.video-card video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background: #000;
}
.videos {
    padding: 80px 0;
}

.videos h2 {
    margin-bottom: 30px;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}
.live-cta,
.submit-cta {
    padding: 80px 0;
    text-align: center;
}

.live-cta {
    background: #111;
}

.submit-cta {
    background: #000;
}
.footer {
    background: #111;
    padding: 20px 0;
    text-align: center;
}