/*
 * Theme Name: BCF Professional
 * Theme URI: https://cricket.bh
 * Description: Professional cricket website theme matching BCF design
 * Version: 1.0.0
 * Author: BCF Development
 * License: GPL v2 or later
 * Text Domain: bcf-theme
 */

/* ============================================
   COLOR PALETTE (From PDF Design)
   ============================================ */
:root {
    --color-primary: #C71C23;          /* Bahrain Red */
    --color-primary-dark: #A01821;     /* Dark Red */
    --color-secondary-blue: #003d6b;   /* Dark Blue */
    --color-secondary-green: #134628;  /* Dark Green */
    --color-secondary-black: #2a2a2a;  /* Charcoal */
    --color-secondary-gold: #8B7500;   /* Gold */
    --color-secondary-purple: #4B0082; /* Purple */
    --color-secondary-teal: #1a5f5f;   /* Teal */
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #999999;
    --color-dark-gray: #333333;
    --color-border: #DDDDDD;
    
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-heading: "Arial Black", sans-serif;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark-gray);
    background: var(--color-white);
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LIVE TICKER
   ============================================ */
.live-ticker {
    position: relative;
    z-index: 1001;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.site-logo a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
}

.site-logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

/* Primary Navigation */
.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.primary-menu li {
    display: inline-block;
}

.primary-menu a {
    display: block;
    padding: 8px 12px;
    color: var(--color-dark-gray);
    font-weight: 500;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s;
}

.primary-menu a:hover,
.primary-menu a.active {
    color: var(--color-primary);
    background: rgba(199, 28, 35, 0.08);
    text-decoration: none;
}

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

.btn-live {
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}

.btn-live:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
}

.btn-play {
    background: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}

/* ============================================
   TICKER/LIVE BANNER
   ============================================ */
.live-ticker {
    background: var(--color-secondary-black);
    color: white;
    padding: 12px 0;
    font-size: 12px;
    font-weight: bold;
    overflow: hidden;
}

.ticker-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    white-space: nowrap;
    animation: scroll-ticker 30s linear infinite;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    display: inline-block;
    flex-shrink: 0;
}

.ticker-badge {
    background: var(--color-primary);
    padding: 4px 8px;
    border-radius: 3px;
    margin-right: 8px;
    font-size: 10px;
    font-weight: bold;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, var(--color-primary) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-left {
    color: var(--color-dark-gray);
}

.hero-left .badge {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 20px;
    border: 2px solid var(--color-primary);
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
}

.hero-left h1 .highlight {
    color: var(--color-primary);
    display: block;
}

.hero-left p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
}

.btn-secondary {
    background: white;
    color: var(--color-dark-gray);
    padding: 14px 32px;
    border: 2px solid var(--color-dark-gray);
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--color-light-gray);
    text-decoration: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat {
    padding: 20px 0;
    border-top: 2px solid #ddd;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: var(--color-medium-gray);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    position: relative;
    min-height: 400px;
}

.ranking-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    margin-left: auto;
}

.ranking-card .label {
    font-size: 11px;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ranking-card .number {
    font-size: 72px;
    font-weight: 900;
    color: var(--color-primary);
    margin: 10px 0;
}

.ranking-card .team {
    font-size: 14px;
    color: var(--color-dark-gray);
    font-weight: bold;
}

/* ============================================
   WHAT'S ON SECTION (4 Cards)
   ============================================ */
.whats-on {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.whats-on .section-label {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.whats-on h2 {
    font-size: 24px;
    margin-bottom: 50px;
    color: var(--color-dark-gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gradient-card {
    border-radius: 12px;
    padding: 40px;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gradient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gradient-card.international {
    background: linear-gradient(135deg, #CE1126 0%, #8F0F1E 55%, #40050C 100%);
}

.gradient-card.domestic {
    background: linear-gradient(135deg, #E63946 0%, #A01821 55%, #5C0A12 100%);
}

.gradient-card.teams {
    background: linear-gradient(135deg, #B01E26 0%, #7D0F15 55%, #1A1A2E 100%);
}

.gradient-card.live {
    background: linear-gradient(135deg, #8F0F15 0%, #44050A 55%, #1A1A2E 100%);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 20px;
}

.gradient-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.gradient-card a {
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.gradient-card a:hover {
    opacity: 0.8;
}

/* ============================================
   FIXTURES & RESULTS SECTION
   ============================================ */
.fixtures-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.fixtures-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.fixtures-header h2 {
    font-size: 24px;
    margin: 0;
}

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

.filter-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    background: white;
    color: var(--color-medium-gray);
    border: 2px solid var(--color-medium-gray);
    transition: all 0.3s;
}

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

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

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-card {
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 25px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s;
}

.match-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(199, 28, 35, 0.1);
}

.match-badge {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-date {
    font-size: 14px;
    color: var(--color-dark-gray);
    font-weight: bold;
    margin: 5px 0;
}

.match-venue {
    font-size: 12px;
    color: var(--color-medium-gray);
}

.match-content {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 40px;
    align-items: center;
}

.team {
    text-align: center;
}

.team-code {
    font-size: 10px;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

.team-name {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-dark-gray);
}

.match-vs {
    color: var(--color-medium-gray);
    font-weight: bold;
}

.match-live {
    background: var(--color-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
}

.match-score {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-dark-gray);
}

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

.match-link {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-dark-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.match-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ============================================
   NEWS & STORIES SECTION
   ============================================ */
/* ============================================
   NEWS & STORIES — Professional Layout
   ============================================ */
.news-section {
    padding: 0;
    margin: 80px 0;
}

.news-section .news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.news-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news-header-tag {
    background: #C71C23;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
}

.news-header h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C71C23;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.news-view-all:hover {
    gap: 12px;
}

/* Featured card */
.news-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    width: 100%;
    box-sizing: border-box;
    height: 440px;
}

.news-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.news-featured-img {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.news-featured-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-featured:hover .news-featured-img img {
    transform: scale(1.06);
}

.news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    z-index: 1;
}

.news-featured-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    z-index: 2;
}

.news-badge {
    display: inline-block;
    background: rgba(199, 28, 35, 0.08);
    color: #C71C23;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    width: fit-content;
}

.news-featured-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
}

.news-featured-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.news-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.news-meta-date svg {
    opacity: 0.5;
}

.news-meta-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #C71C23;
    font-weight: 700;
}

.news-meta-read svg {
    transition: transform 0.2s ease;
}

.news-featured:hover .news-meta-read svg {
    transform: translateX(4px);
}

/* Side cards container */
.news-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-side-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 18px;
}

.news-side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.news-side-img {
    flex-shrink: 0;
    width: 120px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
}

.news-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-side-card:hover .news-side-img img {
    transform: scale(1.08);
}

.news-side-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.news-badge-sm {
    display: inline-block;
    background: rgba(199, 28, 35, 0.08);
    color: #C71C23;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    width: fit-content;
}

.news-side-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta-sm {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
}

.news-meta-sm svg {
    opacity: 0.4;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 60px 20px;
    margin: 80px 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item .big-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ============================================
   TEAMS SECTION
   ============================================ */
.teams-section {
    background: var(--color-secondary-black);
    color: white;
    padding: 80px 20px;
    margin: 80px 0;
}

.teams-container {
    max-width: 1400px;
    margin: 0 auto;
}

.teams-header {
    margin-bottom: 50px;
}

.teams-header .section-label {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.teams-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    border-radius: 12px;
    padding: 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.team-card:hover .team-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.55) 100%);
}

.team-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    border-radius: 8px;
    padding: 24px;
    margin: -30px;
    margin-top: auto;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.team-card.mens {
    background: linear-gradient(135deg, #C71C23 0%, #8B0000 100%);
}

.team-card.womens {
    background: linear-gradient(135deg, #003d6b 0%, #001a33 100%);
}

.team-card.u19 {
    background: linear-gradient(135deg, #134628 0%, #0a2419 100%);
}

.team-card.aTeam {
    background: linear-gradient(135deg, #8B7500 0%, #654300 100%);
}

.team-card.emerging {
    background: linear-gradient(135deg, #4B0082 0%, #2d004d 100%);
}

.team-card.ftp {
    background: linear-gradient(135deg, #1a5f5f 0%, #0d3333 100%);
}

.team-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 22px;
    margin: 15px 0;
    color: white;
    font-weight: bold;
}

.team-stats {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.team-stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.btn-team {
    background: white;
    color: var(--color-dark-gray);
    padding: 12px 20px;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
}

.btn-team:hover {
    background: transparent;
    color: white;
    text-decoration: none;
}

/* ============================================
   TOURNAMENTS SECTION
   ============================================ */
.tournaments-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.tournaments-section .section-label {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tournaments-section h2 {
    font-size: 24px;
    margin-bottom: 50px;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tournament-card {
    background: #dcdcdc;
    border-radius: 8px;
    padding: 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.tournament-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tournament-status {
    background: white;
    color: var(--color-dark-gray);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    max-width: fit-content;
}

.tournament-season {
    font-size: 11px;
    color: var(--color-medium-gray);
    margin-bottom: 15px;
}

.tournament-card h3 {
    font-size: 28px;
    color: var(--color-dark-gray);
    margin: 10px 0 15px 0;
}

.tournament-desc {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-tournament {
    background: white;
    color: var(--color-dark-gray);
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s;
}

.btn-tournament:hover {
    background: var(--color-dark-gray);
    color: white;
    text-decoration: none;
}

/* ============================================
   VIDEOS & GALLERY SECTION
   ============================================ */
.videos-section {
    background: var(--color-secondary-black);
    color: white;
    padding: 80px 20px;
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.videos-header h2 {
    font-size: 24px;
    margin: 0;
}

.videos-header a {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.video-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    background: #333;
    transition: all 0.3s;
}

.video-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    min-height: auto;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-card:nth-child(1) .video-thumbnail {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.video-card:nth-child(2) .video-thumbnail {
    background: linear-gradient(135deg, var(--color-secondary-blue) 0%, var(--color-secondary-black) 100%);
}

.video-card:nth-child(3) .video-thumbnail {
    background: linear-gradient(135deg, var(--color-secondary-green) 0%, var(--color-secondary-black) 100%);
}

.video-card:nth-child(4) .video-thumbnail {
    background: linear-gradient(135deg, var(--color-secondary-gold) 0%, var(--color-secondary-black) 100%);
}

.video-card:nth-child(5) .video-thumbnail {
    background: linear-gradient(135deg, var(--color-secondary-purple) 0%, var(--color-secondary-black) 100%);
}

.play-icon {
    width: 60px;
    height: 60px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    color: white;
}

.video-label {
    font-size: 10px;
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

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

/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsors-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.sponsors-section .section-label {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sponsors-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.sponsors-intro {
    font-size: 15px;
    color: var(--color-medium-gray);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.sponsors-tier-label {
    font-size: 11px;
    color: var(--color-medium-gray);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.sponsor-card {
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.sponsor-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(199, 28, 35, 0.1);
}

.sponsor-logo {
    width: 176px;
    height: 88px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--color-medium-gray);
    font-weight: bold;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    transform: scale(1.05);
}

.sponsor-name {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-dark-gray);
}

.sponsor-card.featured {
    background: var(--color-primary);
    color: white;
    border: none;
    grid-column: span 1;
}

.sponsor-card.featured .sponsor-logo {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.sponsor-card.featured .sponsor-name {
    color: white;
}

.btn-partner {
    background: var(--color-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-secondary-black);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #e0e0e0;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col ul a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-col .footer-widget-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

.footer-col .footer-widget-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col .footer-widget-links li {
    margin-bottom: 12px;
}

.footer-col .footer-widget-links a {
    color: #e0e0e0;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col .footer-widget-links a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-logo {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.footer-description {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 3px;
    font-size: 11px;
    color: #e0e0e0;
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #999;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

.section-label {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mt {
    margin-top: 40px;
}

.mb {
    margin-bottom: 40px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .teams-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsors-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile responsive rules moved to responsive.css */
