
:root {
    --primary-color: #E83B3A; /* Bright Red Accent */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #F9FAFB;
    --text-dark: #FFFFFF; /* All text is white in dark mode */
    --background-dark: #1a1a1a; /* Lighter Dark Background */
    --content-bg: #222222; /* Lighter background for content rows */
    --gradient-primary: linear-gradient(45deg, #A5171C, var(--primary-color));
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 10px 30px rgba(232, 59, 58, 0.4);
    --section-padding: 50px 0 20px 0;
    --border-radius-lg: 0.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo Da 2', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-heading {
    font-size: 2rem !important;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-heading a {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 15px;
    font-weight: 500;
}

/* --- Navbar Redesign --- */
.navbar {
    transition: all 0.4s ease-in-out;
    padding: 1rem 0;
    background-color: transparent !important; /* Start transparent */
    box-shadow: none;
}

.navbar.scrolled {
    background-color: var(--background-dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Shadow for text over video */
    transition: color 0.3s ease;
    font-size: 19px;
}

.navbar.scrolled .nav-link {
    text-shadow: none; /* Remove shadow when background is solid */
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* --- End Navbar Redesign --- */


/* Action Button */
.action-btn {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 17px 30px !important;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(232, 59, 58, 0.5);
}

/* Hero Section (Main Banner) */
.hero-section {
    height: 90vh;
    min-height: 550px;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fading the video to black/dark background on all sides */
    background: radial-gradient(circle at 10% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 40%, var(--background-dark) 100%);
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ensure video iframe scales and centers */
.video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-left: 60px; /* Cinematic padding */
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-content .lead {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 30px;
}

/* --- Intro Section Redesign Styles --- */
.intro-section {
    background-color: var(--content-bg) !important;
}

.intro-card {
    background-color: #333333;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    height: 100%;
}

.prize-box {
    background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
    border: 1px solid var(--primary-color);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.prize-box h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.prize-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 10px;
}

.prize-rank {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(232, 59, 58, 0.5);
}

.prize-rank-2 {
    background: linear-gradient(45deg, #a5a5a5, #6c757d);
}

.prize-rank-3 {
    background: linear-gradient(45deg, #cc8400, #FFD700);
}

.intro-logo-container {
    background: #333333;
    padding: 20px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 20px;
}

/* --- End Intro Section Redesign Styles --- */

/* Content Rows (Sliders - OTT Style) */
.content-row {
    padding: var(--section-padding);
    background-color: var(--background-dark);
    position: relative;
    padding-left: 0; /* Ensures full width */
    padding-right: 0; /* Ensures full width */
}

.content-row .container-fluid {
    padding-left: 60px; /* New: Add container padding to match hero content offset */
    padding-right: 15px;
}

/* Swiper/Carousel Styles */
.swiper-container {
    padding-top: 10px;
    padding-bottom: 20px;
}

.swiper-slide {
    width: auto; /* Important for fluid slides */
}

.card-video, .card-article {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--content-bg);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 280px; /* Fixed width for consistency, used by Swipers */
    height: 100%;
}

/* >>> NEW CSS: Override fixed width for the special 2-video grid (for #episodes) */
.card-wide-override {
    width: 100% !important; /* Forces card to fill the column space */
}

/* <<< END NEW CSS */

.card-video:hover, .card-article:hover {
    transform: scale(1.08); /* Pop effect like OTT platforms */
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8), 0 0 10px var(--primary-color);
}

.card-video img, .card-article img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-info {
    padding: 20px 10px;
    color: var(--text-dark);
}

.video-info h5 {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Redesigned Play Button on Hover */
.play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-video:hover .play-btn-overlay {
    opacity: 1;
}

.play-btn-overlay i {
    font-size: 22px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.card-video:hover .play-btn-overlay i {
    transform: scale(1.15); /* More prominent scaling */
    box-shadow: 0 0 30px var(--primary-color); /* Glowing red shadow */
    color: white;
    background: var(--primary-color);
}

/* Rules/Submission Section (Styled like an overlay/pop-up content) */
.rules-section {
    background-color: var(--content-bg);
    padding: 15px 0;
}

.rule-card {
    background: #333333; /* Slightly lighter card background */
    border: 1px solid #444; /* Lighter border */
    color: #fff;
    padding: 25px;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.rule-card:hover {
    box-shadow: 0 0 15px rgba(232, 59, 58, 0.3);
    border-color: var(--primary-color);
}

.rule-card h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--background-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px;
}

footer h5 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Modal for Video Playback */
.modal-content {
    background-color: transparent !important;
    border: none;
}

.modal-body {
    background-color: var(--background-dark);
    padding: 0;
}

@media (max-width: 991.98px) {
    .hero-section {
        justify-content: center;
        text-align: center;
    }

    .hero-section::after {
        background: linear-gradient(to top, var(--background-dark) 0%, rgba(0, 0, 0, 0.6) 80%);
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 90%;
    }

    /* Mobile fixes */
    .content-row .container-fluid {
        padding-left: 15px;
    }

    .swiper-container {
        margin-left: 0; /* No margin on mobile */
    }

    .section-heading {
        text-align: left;
        font-size: 18px;
    }
    .section-heading a {
        font-size: 1rem;

    }
}

.intro-card {
    /* Kept: background-color: #333333; */
    /* Kept: padding: 30px; */
    /* Kept: border-radius: var(--border-radius-lg); */
    /* Kept: box-shadow: var(--card-shadow); */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Added subtle border */
}

/* Prize Box: Simplified and made more vertical */
.prize-box {
    background: linear-gradient(180deg, #1f1f1f, #2a2a2a); /* Changed gradient angle */
    border: 2px solid var(--primary-color); /* Kept: Strong primary border */
    padding: 20px;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.prize-box h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding-bottom: 25px;
}

/* Prize Item: Enhanced visual separation */
.prize-item {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    background-color: #2e2e2e; /* Slightly darker background for items */
    transition: background-color 0.3s ease;
}

.prize-item:hover {
    background-color: #383838;
}

.prize-rank {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
}

/* Content block for 30 episodes info */
.episode-highlight {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #2a2a2a;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    font-size: 1.1rem;
}
.small-text{
    font-size: 22px;
}

.highlight-text{
    color: var(--primary-color);
}
.social-icons a{
    color: transparent !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    color: #fff;
}

.navbar-action{
    padding: 7px 30px !important;
}
.form-control {
    padding: 10px 10px;
}
.form-select {
    padding: 10px 10px;
}

/*phone css*/
@media only screen and (max-width: 600px) {
    .hero-section {
        height: auto;
    }
    .navbar-collapse {
        background: #1a1a1a;
    }

    .action-btn, .btn-outline-light {
        font-size: 17px;
    }
    .hero-content h1 {
        font-size: 25px;
    }
    .hero-section{
        margin-top: -40px;
    }
}
