/* TotalSportek - Main Stylesheet - Matching Next.js Design */

:root {
    /* Red Color Palette */
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --primary-red-light: #ef4444;
    --primary-red-50: #fef2f2;
    --primary-red-100: #fee2e2;
    --primary-red-200: #fecaca;
    --primary-red-500: #ef4444;
    --primary-red-600: #dc2626;
    --primary-red-700: #b91c1c;
    --primary-red-800: #991b1b;
    --primary-red-900: #7f1d1d;
    
    /* Gradients */
    --red-gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --red-gradient-light: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    --red-gradient-dark: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    --danger: var(--primary-red);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-red: 0 4px 14px 0 rgb(220 38 38 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

/* Header */
.header {
    background: var(--red-gradient);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Exact Next.js Match */
.hero-section {
    background: linear-gradient(to bottom right, var(--primary-red-50), var(--primary-red-100));
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative Elements */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 8rem;
    height: 8rem;
    background: var(--primary-red-200);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 6rem;
    height: 6rem;
    background: var(--primary-red-300);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 1s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--red-gradient);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-red-700), var(--primary-red-900));
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Matches Section */
.matches-section {
    padding: 4rem 1rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Match Card - Enhanced Design */
.match-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: block;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

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

.match-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.match-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.status-live {
    background: var(--primary-red-100);
    color: var(--primary-red-700);
}

.status-upcoming {
    background: #dbeafe;
    color: #2563eb;
}

.status-finished {
    background: var(--gray-100);
    color: var(--gray-600);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.team-name {
    font-weight: 600;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.match-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red-600);
    min-width: 60px;
    text-align: center;
}

.match-league {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.league-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.league-name {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* League Section Header (for grouped matches) */
.league-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    margin: 2rem 0 1rem 0;
    background: linear-gradient(to right, var(--primary-red-50), var(--white));
    border-left: 4px solid var(--primary-red);
    border-radius: var(--radius-lg);
}

.league-section-header:first-of-type {
    margin-top: 0;
}

.league-header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--white);
    padding: 0.25rem;
}

.league-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

@media (max-width: 768px) {
    .league-header-title {
        font-size: 1.25rem;
    }
    
    .league-header-logo {
        width: 36px;
        height: 36px;
    }
}

/* Leagues Section */
.leagues-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.modern-league-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.modern-league-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red-600);
}

.league-logo-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.league-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.league-content {
    flex: 1;
}

.league-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gray-900);
    display: block;
    margin-bottom: 0.25rem;
}

.league-country {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.league-cta {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-red-600);
    font-size: 0.875rem;
    font-weight: 600;
}

.view-all-leagues {
    text-align: center;
    margin-top: 3rem;
}

/* News Section */
.news-section {
    padding: 4rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.modern-news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.modern-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-image-container {
    position: relative;
    height: 200px;
    background: var(--gray-200);
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-400);
}

.news-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-red-600);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    color: var(--primary-red-600);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--gray-900);
}

.news-excerpt {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-cta {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-red-600);
    font-weight: 600;
    font-size: 0.875rem;
}

.view-all-news {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-red);
        flex-direction: column !important;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        animation: slideDown 0.3s ease;
        gap: 0 !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        text-align: left;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .matches-grid,
    .leagues-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .match-teams {
        gap: 0.5rem;
    }

    .match-score {
        font-size: 1.25rem;
        min-width: 50px;
    }
    
    .team-logo {
        width: 40px;
        height: 40px;
    }
}

/* Loading States */
.loading {
    text-align: center;
    padding: 3rem 0;
}

.loading h3 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.loading p {
    color: var(--gray-500);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* =====================================
   Watch Page Styles - Matching Next.js
   ===================================== */

.watch-page-container {
    background: var(--gray-50);
    min-height: 100vh;
}

/* Watch Hero Section */
.watch-hero-section {
    background: var(--red-gradient);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.watch-hero-bg-element-1,
.watch-hero-bg-element-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.watch-hero-bg-element-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.watch-hero-bg-element-2 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.watch-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.watch-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.watch-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.watch-breadcrumb-item:hover {
    color: var(--white);
}

.watch-breadcrumb-item svg {
    width: 16px;
    height: 16px;
}

.watch-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.watch-breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

.watch-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.watch-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Watch Main Container */
.watch-main-container {
    position: relative;
    margin-top: -3rem;
    z-index: 3;
    padding-bottom: 4rem;
}

/* Watch Match Card */
.watch-match-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.watch-match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.watch-league-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.watch-league-info svg {
    width: 20px;
    height: 20px;
    color: var(--primary-red);
}

.watch-league-logo {
    border-radius: var(--radius-md);
}

.watch-league-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.watch-live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-red);
}

.watch-live-icon {
    width: 16px;
    height: 16px;
    animation: pulse 2s infinite;
}

.watch-teams-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.watch-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.watch-team-logo {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.watch-team-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.watch-team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.watch-score-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.watch-score-display {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-red);
    background: var(--red-gradient-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-red-200);
    min-width: 120px;
    text-align: center;
}

.watch-match-status {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.watch-match-status.live {
    background: var(--red-gradient);
    color: var(--white);
    animation: pulse 2s infinite;
}

/* Watch Live Section */
.watch-live-section {
    margin-top: 2rem;
}

.embed-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Watch Info Section */
.watch-info-section {
    margin-bottom: 3rem;
}

.watch-info-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    text-align: center;
}

.watch-info-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
}

.watch-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.watch-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.watch-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red-200);
}

.watch-info-icon {
    width: 60px;
    height: 60px;
    background: var(--red-gradient-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.watch-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

.watch-info-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
}

.watch-info-card-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Watch Statistics Section */
.watch-stats-section {
    margin-bottom: 3rem;
}

.watch-stats-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.watch-stats-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.watch-stat-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.watch-stat-item:last-child {
    border-bottom: none;
}

.watch-stat-label {
    font-weight: 600;
    color: var(--gray-700);
}

.watch-stat-value {
    color: var(--gray-900);
}

/* Watch News Section */
.watch-news-section {
    margin-bottom: 3rem;
}

.watch-news-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    text-align: center;
}

.watch-news-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .watch-hero-section {
        padding: 3rem 0 4rem;
    }
    
    .watch-hero-bg-element-1 {
        width: 150px;
        height: 150px;
    }
    
    .watch-hero-bg-element-2 {
        width: 120px;
        height: 120px;
    }
    
    .watch-match-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .watch-teams-container {
        grid-template-columns: 1fr auto 1fr;
        gap: 1rem;
    }
    
    .watch-team-logo {
        width: 60px;
        height: 60px;
    }
    
    .watch-team-name {
        font-size: 1rem;
    }
    
    .watch-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .watch-info-card {
        padding: 1rem;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* =====================================
   Live Player Section
   ===================================== */

.koora-player-section {
    margin-top: 2rem;
}

.koora-xyz {
    margin-bottom: 1.5rem;
}

.koora-loading {
    text-align: center;
    padding: 3rem;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
}

.koora-loading p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
}

.koora-player {
    position: relative;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.koora-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Channel Buttons - Matching Next.js */
.koora-channels-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.koora-channel-col {
    display: flex;
}

.koora-channel-btn {
    width: 100%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.koora-channel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 38, 38, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.koora-channel-btn:hover::before {
    left: 100%;
}

.koora-channel-btn:hover {
    background: var(--red-gradient-light);
    border-color: var(--primary-red-300);
    color: var(--primary-red-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.koora-channel-btn.active {
    background: var(--red-gradient);
    border-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

.koora-channel-btn.active:hover {
    background: var(--red-gradient-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.koora-channel-btn strong {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .koora-channels-row {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .koora-channel-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .koora-player {
        height: 250px !important;
    }
}

/* Pages Section Styling */
.pages-section {
    padding: var(--space-8) 0;
    background: var(--gray-50);
}

.pages-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.page-tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.page-tag:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-all-pages {
    text-align: center;
    margin-top: var(--space-8);
}

.no-pages {
    text-align: center;
    padding: var(--space-8) 0;
    color: var(--gray-500);
    font-size: var(--font-size-lg);
}

@media (max-width: 768px) {
    .pages-tags-cloud {
        gap: var(--space-2);
    }
    
    .page-tag {
        padding: var(--space-1) var(--space-3);
        font-size: var(--font-size-xs);
    }
}
