/* ==========================================================================
   Leo Moviz - Production Ready Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #e50914;
    --primary-dark: #b8070d;
    --bg-dark: #0f0f0f;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2a2a2a;
    --hover-bg: #2a2a2a;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Light Theme */
body.light-theme {
    --bg-dark: #ffffff;
    --bg-darker: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --hover-bg: #f5f5f5;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.logo img {
    height: 40px;
    width: auto;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* +18 Adult Link Styling */
.adult-link {
    background: linear-gradient(135deg, #ff6b00 0%, #ff0066 100%);
    color: white !important;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
    transition: all 0.3s;
}

.adult-link:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff1a75 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

/* Live Cricket Button */
.live-cricket-nav {
    position: relative;
}

.live-cricket-btn {
    background: linear-gradient(135deg, #e50914 0%, #b8070d 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.live-cricket-btn:hover {
    background: linear-gradient(135deg, #ff0a16 0%, #e50914 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.live-dot {
    font-size: 8px;
    color: #00ff00;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: var(--hover-bg);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-toggle, .theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.search-toggle:hover, .theme-toggle:hover {
    background-color: var(--hover-bg);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 30px;
    cursor: pointer;
}

.search-box {
    display: flex;
    gap: 10px;
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 10px;
    border: 2px solid var(--border-color);
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    outline: none;
    padding: 10px;
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: opacity 0.3s;
}

.search-btn:hover {
    opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--bg-darker);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb nav {
    color: var(--text-secondary);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    margin: 0 8px;
}

/* Main Content */
.main-content {
    padding: 40px 0 80px;
    min-height: 60vh;
}

/* Hero Slider */
.hero-slider {
    margin: 0 -20px 60px -20px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

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

.slider-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.7) 40%, 
        rgba(0,0,0,0.3) 70%, 
        transparent 100%);
    z-index: 1;
}

.slider-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.slider-info {
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slider-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.slider-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.slider-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slider-meta i {
    color: var(--primary-color);
}

.slider-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.slider-quality {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.quality-tag {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.slider-btn.primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.slider-btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.6);
}

.slider-btn.secondary {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.slider-btn.secondary:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255,255,255,0.6);
}

.dot.active {
    background-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    border-color: rgba(255,255,255,0.3);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-section p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Movies Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.movie-card {
    transition: transform 0.3s;
    animation: fadeIn 0.5s ease-out;
}

.movie-card:hover {
    transform: translateY(-5px);
}

/* Trending Card Styles */
.trending-card {
    border: 2px solid #ff6b00;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.trending-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff0844 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.5);
    animation: trending-pulse 2s infinite;
}

@keyframes trending-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.trending-badge i {
    animation: trending-fire 1s infinite;
}

@keyframes trending-fire {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.movie-card a {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.movie-poster {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background-color: var(--bg-card);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.movie-tags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.movie-card:hover .movie-tags {
    opacity: 1;
}

.tag {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

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

.movie-info {
    padding: 15px 0 0;
}

.movie-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-year {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Movie Detail Page */
.movie-detail {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.movie-detail-poster img {
    width: 100%;
    border-radius: 8px;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    color: var(--text-secondary);
}

.movie-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.movie-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.movie-synopsis {
    margin: 30px 0;
}

.movie-synopsis h2 {
    margin-bottom: 15px;
}

.movie-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

/* Download Section */
.download-section {
    margin: 40px 0;
}

.download-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.streaming-download-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.option-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.option-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.option-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.option-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.option-box p {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-options {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.download-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.download-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    display: inline-block;
}

.download-btn:hover {
    opacity: 0.8;
}

.watch-online {
    margin-top: 30px;
}

.video-player {
    margin-top: 15px;
    background-color: var(--bg-darker);
    border-radius: 8px;
    overflow: hidden;
}

.download-instructions {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.download-instructions ol {
    margin-left: 20px;
    margin-top: 15px;
}

.download-instructions li {
    margin-bottom: 10px;
}

/* Related Movies */
.related-movies {
    margin-top: 60px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-link {
    padding: 10px 18px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.page-link:hover, .page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-dots {
    padding: 10px;
    color: var(--text-secondary);
}

/* SEO Content Section */
.seo-content {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.seo-content article {
    max-width: 900px;
}

.seo-content h2 {
    margin: 30px 0 15px;
    font-size: 24px;
}

.seo-content h3 {
    margin: 25px 0 12px;
    font-size: 20px;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.seo-content ul {
    margin: 15px 0 15px 25px;
}

.seo-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* Page Content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--hover-bg);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Adult Content Styles */
.adult-header {
    position: relative;
}

.adult-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff0066 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.adult-warning {
    color: #ff6b00 !important;
    font-weight: 600;
    margin-top: 10px;
}

.adult-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff0066 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.adult-tag {
    background: linear-gradient(135deg, #ff6b00 0%, #ff0066 100%) !important;
    color: white !important;
}

.adult-notice {
    background-color: var(--bg-card);
    border: 2px solid #ff6b00;
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.adult-notice h3 {
    color: #ff6b00;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.adult-notice ul {
    list-style: none;
    padding-left: 0;
}

.adult-notice li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.adult-notice li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Age Verification Modal */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-verification-box {
    background-color: var(--bg-card);
    border: 3px solid #ff6b00;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    text-align: center;
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-icon {
    font-size: 80px;
    color: #ff6b00;
    margin-bottom: 20px;
}

.age-verification-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff6b00;
}

.age-verification-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.age-warning {
    color: #ff6b00 !important;
    font-weight: 600;
    font-size: 18px !important;
    margin: 25px 0 !important;
}

.age-verification-buttons {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.age-btn {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

.age-btn.confirm {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.age-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
}

.age-btn.decline {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.age-btn.decline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

.age-disclaimer {
    font-size: 12px !important;
    color: var(--text-secondary) !important;
    font-style: italic;
    margin-top: 20px !important;
}

.page-content h1 {
    margin-bottom: 30px;
}

.page-content section {
    margin-bottom: 40px;
}

.page-content h2 {
    margin: 30px 0 15px;
}

.page-content h3 {
    margin: 20px 0 10px;
}

.page-content ul, .page-content ol {
    margin: 15px 0 15px 25px;
}

.page-content li {
    margin-bottom: 10px;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin: 40px 0;
}

.contact-form, .contact-info {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 14px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.8;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-box h3 {
    margin-bottom: 5px;
}

.social-contact {
    margin-top: 30px;
}

.faq-section {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.feature-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 25px;
    }

    .movie-detail {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        margin: 0 0 40px 0;
    }

    .slider-container {
        height: 500px;
    }

    .slider-content {
        padding: 0 20px;
    }

    .slider-info {
        max-width: 100%;
    }

    .slider-title {
        font-size: 28px;
    }

    .slider-meta {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 12px;
    }

    .slider-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .slider-buttons {
        flex-direction: column;
    }

    .slider-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 30px;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: var(--bg-darker);
        border-right: 1px solid var(--border-color);
        transition: left 0.3s;
        overflow-y: auto;
        padding: 20px;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .live-cricket-nav {
        border-bottom: none;
        margin-bottom: 10px;
    }

    .live-cricket-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .nav-list a {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .adult-link {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 10px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        border: none;
        border-top: 1px solid var(--border-color);
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .movie-detail {
        grid-template-columns: 1fr;
    }

    .movie-detail-poster {
        max-width: 400px;
        margin: 0 auto;
    }

    .movie-info-grid {
        grid-template-columns: 1fr;
    }

    .streaming-download-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    /* Slider Mobile Optimization */
    .slider-container {
        height: 450px;
    }

    .slider-title {
        font-size: 24px;
    }

    .slider-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .slider-description {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slider-quality {
        gap: 6px;
    }

    .quality-tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .movie-title {
        font-size: 14px;
    }

    .movie-year {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .main-content {
        padding: 30px 0 50px;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .download-links {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }

    .age-verification-box {
        padding: 30px;
        max-width: 90%;
    }

    .age-verification-box h2 {
        font-size: 24px;
    }

    .age-icon {
        font-size: 60px;
    }

    .age-verification-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }

    .category-filter {
        gap: 8px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    /* Mobile Search Improvements */
    .search-overlay {
        padding: 20px;
    }
    
    .search-container {
        width: 100%;
        max-width: none;
    }
    
    .search-box {
        flex-direction: row;
        gap: 10px;
    }
    
    .search-box input {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .search-btn {
        padding: 15px 20px;
        font-size: 16px;
        min-width: 60px;
    }
    
    .search-close {
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Mobile Header Actions */
    .header-actions {
        gap: 10px;
    }
    
    .search-toggle,
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Mobile Logo */
    .logo img {
        max-width: 140px;
        height: auto;
    }
    
    /* Mobile No Results */
    .no-results-message {
        padding: 40px 20px;
    }
    
    .no-results-icon {
        font-size: 60px;
    }
    
    .no-results-message h3 {
        font-size: 20px;
    }
    
    .no-results-message p {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .search-overlay, .breadcrumb {
        display: none;
    }
}

/* Movie Detail Page Styles */
.movie-detail-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.movie-poster-large img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    font-size: 14px;
}

.movie-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.movie-meta .rating {
    color: #ffd700;
    font-weight: 600;
}

.movie-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.genre-badge {
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.movie-description {
    margin: 30px 0;
}

.movie-description h2 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.movie-tags-section {
    margin-top: 25px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag-item {
    padding: 5px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    font-size: 12px;
}

/* Streaming Section */
.streaming-section {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.streaming-section h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stream-subtitle {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.video-player-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

.server-selection h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.server-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.server-btn {
    padding: 12px 20px;
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.server-btn:hover {
    border-color: var(--primary-color);
    background: var(--hover-bg);
}

.server-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
}

.server-quality {
    padding: 2px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 11px;
}

/* Download Section */
.download-section {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.download-section h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.download-subtitle {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.download-card {
    background: var(--bg-darker);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.download-quality-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.download-quality-badge i {
    font-size: 32px;
    color: var(--primary-color);
}

.quality-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.download-info {
    margin: 15px 0;
}

.download-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.download-btn i {
    margin-right: 8px;
}

/* Related Section */
.related-section {
    margin-top: 50px;
}

.related-section h2 {
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Related Section */
.related-section {
    margin-top: 50px;
}

.related-section h2 {
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Related Section */
.related-section {
    margin-top: 50px;
}

.related-section h2 {
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Category Pages */
.category-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 40px;
}

.category-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.category-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.category-filters {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.category-filters h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    background: var(--hover-bg);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
}

.loading-message {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

/* Mobile Responsive for Category Pages */
@media (max-width: 768px) {
    .category-hero {
        padding: 40px 20px 30px;
    }
    
    .category-hero h1 {
        font-size: 32px;
    }
    
    .category-hero p {
        font-size: 16px;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* No Movies Message */
.no-movies-message {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border-radius: 15px;
    margin: 40px 0;
}

.no-movies-message h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 24px;
}

.no-movies-message p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Back Button */
.btn-back {
    padding: 10px 20px;
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Ad Containers */
.ad-container {
    margin: 20px 0;
    text-align: center;
    min-height: 90px;
}

.header-ad {
    margin-bottom: 20px;
}

.banner-ad {
    margin: 30px 0;
}

.video-ad {
    margin-top: 20px;
}

.sidebar-ad {
    margin: 30px 0;
}

.footer-ad {
    margin-top: 30px;
}

/* Mobile Responsive for Movie Page */
@media (max-width: 768px) {
    .movie-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .movie-poster-large {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .video-player-container {
        border-radius: 0;
    }
    
    .server-buttons {
        flex-direction: column;
    }
    
    .server-btn {
        width: 100%;
        justify-content: center;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .streaming-section,
    .download-section {
        padding: 20px;
    }
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    margin: 40px 0;
    display: none;
}

.no-results-icon {
    font-size: 80px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.no-results-message p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 25px;
}

.clear-search-btn {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.clear-search-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Responsiveness Improvements */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .slider-title {
        font-size: 36px;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

/* Live Cricket Page Styles */
.cricket-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.cricket-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.live-indicator {
    color: #ff0000;
    font-size: 12px;
    animation: pulse 1.5s infinite;
}

/* Live Matches Section */
.live-matches-section {
    margin-bottom: 60px;
}

.live-matches-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cricket-match-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cricket-match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cricket-match-card.live {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-badge {
    background-color: #ff0000;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-badge i {
    font-size: 8px;
    animation: pulse 1.5s infinite;
}

.match-type {
    color: var(--text-secondary);
    font-size: 14px;
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-flag {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.score {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.overs {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.vs {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
}

.match-status {
    background-color: var(--bg-darker);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.match-status p {
    margin: 0;
    color: var(--text-primary);
}

.match-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stream-btn, .highlights-btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
}

.stream-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.stream-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.highlights-btn {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.highlights-btn:hover {
    background-color: var(--hover-bg);
}

/* Upcoming Matches */
.upcoming-matches {
    margin-bottom: 60px;
}

.upcoming-matches h2 {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.upcoming-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.upcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.upcoming-badge {
    background-color: var(--bg-darker);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.match-time {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
}

.upcoming-teams {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.upcoming-teams span:nth-child(2) {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 10px;
}

.match-venue {
    color: var(--text-secondary);
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
}

.notify-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notify-btn:hover {
    background-color: var(--hover-bg);
    border-color: var(--primary-color);
}

/* Stream Modal */
.stream-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.stream-modal-content {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.close-stream {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.stream-modal-content h3 {
    margin-bottom: 20px;
}

.stream-player {
    margin-bottom: 20px;
    background-color: var(--bg-darker);
    border-radius: 8px;
    overflow: hidden;
}

.stream-servers {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.stream-servers h4 {
    margin-right: 10px;
}

.server-btn {
    padding: 8px 16px;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.server-btn:hover, .server-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Cricket Features */
.cricket-features {
    margin-top: 60px;
}

.cricket-features h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Cricket Page */
@media (max-width: 768px) {
    .match-teams {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vs {
        text-align: center;
        margin: 10px 0;
    }

    .team {
        justify-content: center;
    }

    .match-actions {
        flex-direction: column;
    }

    .stream-btn, .highlights-btn {
        width: 100%;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .stream-modal-content {
        padding: 20px;
    }

    .stream-player iframe {
        height: 300px;
    }

    .cricket-header h1 {
        font-size: 24px;
    }
}