/* ===================================
   Halı Saha Turnuva - Modern Tasarım
   =================================== */

/* CSS Variables */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #eab308;
    --info: #3b82f6;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    --bg-gradient: linear-gradient(135deg, #10b981 0%, #0f172a 100%);
    --bg-gradient-dark: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Header
   =================================== */
.header {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.header-info i {
    color: var(--primary);
    margin-right: 6px;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 14px;
}

.header-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.logo-text span:last-child {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: var(--radius-full);
    font-size: 14px;
}

.nav a:hover,
.nav a.active {
    background: var(--primary);
    color: white;
}

.nav a i {
    font-size: 16px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 280px;
    padding: 12px 20px 12px 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: var(--bg-gradient-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Live Match Card */
.live-match-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.live-match-card.live {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.live-match-card.ended {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.live-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.live-match-card.live .live-badge {
    background: var(--danger);
    border-color: transparent;
    animation: pulse 2s infinite;
}

.live-match-card.ended .live-badge {
    background: var(--success);
    border-color: transparent;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.live-badge::before {
    display: none;
}

/* Match Status Display */
.match-status-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vs-text {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
}

/* Live Score Display */
.live-score-display {
    margin-bottom: 8px;
}

.live-score-display .score-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.live-score-display .score-sep {
    color: var(--text-muted);
    font-size: 24px;
}

.live-minute {
    display: none; /* Varsayılan gizli - JavaScript ile gösterilir */
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.live-minute .minute-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--danger);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.live-minute .live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: liveBlink 1s infinite;
}

.halftime-break {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.halftime-break span:first-child {
    font-size: 12px;
    font-weight: 600;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.halftime-break .break-countdown {
    font-size: 24px;
    font-weight: 800;
    color: #f59e0b;
}

.match-ended {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.match-ended i {
    font-size: 28px;
    color: var(--success);
}

.match-ended span {
    font-size: 14px;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Match Countdown - Geri Sayım */
.match-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 16px;
}

.countdown-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-label i {
    color: var(--primary);
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.countdown-unit {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Countdown Finished */
.countdown-finished {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.match-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 12px;
}

.match-header span {
    color: var(--text-muted);
    font-size: 13px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.match-team {
    flex: 1;
    text-align: center;
}

.team-logo {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    font-weight: 800;
    color: white;
    overflow: hidden;
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.team-name {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score {
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.score-divider {
    color: var(--text-muted);
    font-size: 24px;
}

.match-time {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.match-minute {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
}

/* ===================================
   Fixtures Section
   =================================== */
.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.section-title i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.section-title .badge {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.view-all:hover {
    gap: 12px;
}

/* Fixtures Grid */
.fixtures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

.fixture-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
}

.fixture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.fixture-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.fixture-date-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.fixture-date-text i {
    color: var(--primary);
    margin-right: 8px;
}

.fixture-time {
    background: var(--bg-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.fixture-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fixture-team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.fixture-team.away {
    flex-direction: row-reverse;
    text-align: right;
}

.fixture-team-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    overflow: hidden;
}

.fixture-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.fixture-team-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.fixture-team-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.fixture-vs {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0 20px;
}

.fixture-score {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.fixture-score span {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.fixture-score .divider {
    font-size: 20px;
    color: var(--text-muted);
}

.fixture-status {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.status-badge.scheduled {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.status-badge.live {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.status-badge.completed {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.status-badge.postponed {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.fixture-card.postponed {
    border-left: 3px solid #f59e0b;
    opacity: 0.85;
}

/* ===================================
   Standings Table
   =================================== */
.standings-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.standings-header {
    background: var(--bg-gradient-dark);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.standings-header h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.standings-header h3 i {
    color: var(--primary);
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.standings-table th:first-child {
    padding-left: 24px;
}

.standings-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.standings-table td:first-child {
    padding-left: 24px;
}

.standings-table tr:last-child td {
    border-bottom: none;
}

.standings-table tr:hover {
    background: var(--bg-secondary);
}

.standings-rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
}

.standings-rank.top-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.standings-rank.top-2 {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: white;
}

.standings-rank.top-3 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.standings-rank.normal {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.standings-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.standings-team-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
}

.standings-team-name {
    font-weight: 600;
    color: var(--text-primary);
}

.standings-team-name:hover {
    color: var(--primary);
}

/* Standings & POTW Grid */
.standings-potw-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

@media (max-width: 1024px) {
    .standings-potw-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.standings-points {
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
}

/* ===================================
   Video Cards
   =================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-dark);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.video-card:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.video-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-category.gol {
    background: var(--success);
    color: white;
}

.video-category.kurtaris {
    background: var(--info);
    color: white;
}

.video-category.pozisyon {
    background: var(--accent);
    color: white;
}

.video-category.mac_ozeti {
    background: var(--secondary);
    color: white;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-title:hover {
    color: var(--primary);
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.video-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.video-player-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

.video-team {
    font-size: 12px;
    color: var(--text-muted);
}

.video-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.video-stat i {
    color: var(--primary);
}

/* Vote Buttons */
.vote-buttons {
    display: flex;
    gap: 8px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.vote-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.vote-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.vote-btn.down:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.vote-btn.down.active {
    background: var(--danger);
    border-color: var(--danger);
}

/* ===================================
   Player Cards
   =================================== */
.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.player-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.player-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.player-card-header {
    height: 80px;
    position: relative;
}

.player-jersey {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.player-avatar {
    position: absolute;
    bottom: -40px;
    left: 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-muted);
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.player-card-body {
    padding: 52px 24px 24px;
}

.player-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.player-position {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.player-team-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.player-stat {
    text-align: center;
}

.player-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.player-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.player-stat-value.goals { color: var(--success); }
.player-stat-value.assists { color: var(--info); }
.player-stat-value.yellow { color: var(--warning); }
.player-stat-value.red { color: var(--danger); }

/* Captain Badge */
.captain-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

/* ===================================
   Cards Section (Yellow/Red)
   =================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.card-section-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-section-header.yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.card-section-header.red {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 50%, #dc2626 100%);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.card-section-header h3 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.card-section-header i {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
}

.card-list {
    padding: 8px;
}

.card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.card-item:hover {
    background: var(--bg-secondary);
}

.card-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
}

.card-player-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-player-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.card-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 800;
}

.card-count.yellow { color: var(--warning); }
.card-count.red { color: var(--danger); }

.card-count i {
    font-size: 20px;
}

/* ===================================
   Player of the Week
   =================================== */
.potw-card {
    background: var(--bg-gradient-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.potw-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.potw-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.potw-badge {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.potw-player-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--text-muted);
}

.potw-player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.potw-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.potw-info .team {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.potw-stats {
    display: flex;
    gap: 32px;
}

.potw-stat {
    text-align: center;
}

.potw-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.potw-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.potw-voting {
    margin-left: auto;
    text-align: center;
}

.potw-votes {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.potw-votes-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

/* ===================================
   Team Page
   =================================== */
.team-header {
    background: var(--bg-gradient-dark);
    padding: 60px 0;
    position: relative;
}

.team-header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.team-logo-large {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-xl);
}

.team-info h1 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.team-info .tournament {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 24px;
}

.team-quick-stats {
    display: flex;
    gap: 40px;
}

.team-quick-stat {
    text-align: center;
}

.team-quick-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.team-quick-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand h3 i {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Admin Panel Link */
.admin-panel-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 18px !important;
    margin-top: 8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #4f46e5 100%);
    color: white !important;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 13px !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease !important;
}

.admin-panel-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    padding-left: 18px !important;
}

.admin-panel-link i {
    font-size: 14px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .live-match-card {
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Info Bar - sadece mobilde görünür */
.mobile-info-bar {
    display: none;
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .header-top {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .potw-content {
        flex-direction: column;
        text-align: center;
    }
    
    .potw-voting {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .fixtures-grid,
    .video-grid,
    .player-grid {
        grid-template-columns: 1fr;
    }
    
    .team-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .team-quick-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Admin panel butonu mobilde gizle */
    .header-actions .btn-primary.btn-sm {
        display: none;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-box {
        display: none;
    }
    
    .logo-text span:last-child {
        display: none;
    }
    
    .fixture-team-info span {
        display: none;
    }
    
    .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Mobil Uyumluluk - Gelişmiş
   =================================== */

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    color: #10b981;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Desktop'ta gizle */
.nav-close {
    display: none;
}

/* Admin Panel butonu - sadece mobilde göster */
.mobile-only-admin {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only-admin {
        display: inline-flex !important;
    }
}

/* Tablet ve Altı */
@media (max-width: 1024px) {
    /* Header düzenlemeleri */
    .header-main {
        padding: 12px 0;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .search-box {
        width: 180px;
    }
    
    .search-box input {
        font-size: 13px;
    }
    
    /* Hero düzenlemeleri */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .live-match-card {
        max-width: 100%;
    }
    
    /* Puan durumu ve haftanın oyuncusu yan yana değil alt alta */
    .section > .container > div[style*="grid-template-columns: 1fr 400px"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .potw-sidebar {
        max-width: 100%;
    }
    
    /* Fixtures grid */
    .fixtures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Video grid */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Player grid */
    .player-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobil - 768px ve altı */
@media (max-width: 768px) {
    /* Mobil menü butonu göster */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Header Top - Mobilde gizle */
    .header-top {
        display: none;
    }
    
    /* Mobile Info Bar - Logo ile menü butonu arasında */
    .mobile-info-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        flex: 1;
        padding: 0 10px;
        max-width: 60%;
    }
    
    .mobile-info-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 10px;
        font-size: 9px;
        color: var(--text-muted);
    }
    
    .mobile-info-items span {
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }
    
    .mobile-info-items i {
        color: var(--primary);
        font-size: 10px;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 12px;
    }
    
    .mobile-social-icons a {
        color: var(--text-muted);
        font-size: 14px;
        transition: color 0.2s;
    }
    
    .mobile-social-icons a:hover {
        color: var(--primary);
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    /* Logo mobilde küçült */
    .logo {
        flex-shrink: 0;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .logo-text span:first-child {
        font-size: 14px;
    }
    
    .logo-text span:last-child {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 8px;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav.active {
        left: 0 !important;
        display: flex !important;
    }
    
    .nav a {
        padding: 14px 20px;
        border-radius: var(--radius);
        color: white;
        font-size: 15px;
    }
    
    .nav a:hover,
    .nav a.active {
        background: var(--primary);
    }
    
    /* Mobil menü overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Mobil menü kapat butonu */
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: white;
        font-size: 18px;
        cursor: pointer;
    }
    
    .search-box {
        display: none;
    }
    
    .header-actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Logo */
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .logo-text span:first-child {
        font-size: 18px;
    }
    
    .logo-text span:last-child {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 32px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .hero-text > div:first-of-type {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-text .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .hero-stat-value {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    /* Live Match Card */
    .live-match-card {
        padding: 20px;
    }
    
    .match-teams {
        gap: 12px;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .team-name {
        font-size: 13px;
    }
    
    .match-score .score {
        font-size: 28px;
    }
    
    /* Countdown */
    .countdown-item {
        padding: 10px 12px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 22px;
    }
    
    .countdown-separator {
        font-size: 22px;
    }
    
    /* Sections */
    .section {
        padding: 32px 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-title .badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    /* Grids */
    .fixtures-grid,
    .video-grid,
    .player-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Fixture Card */
    .fixture-card {
        padding: 16px;
    }
    
    .fixture-date {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .fixture-teams {
        gap: 8px;
    }
    
    .fixture-team-logo {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }
    
    .fixture-team-info h4 {
        font-size: 13px;
    }
    
    .fixture-team-info span {
        display: none;
    }
    
    .fixture-vs {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .fixture-score {
        font-size: 22px;
    }
    
    /* Prediction Buttons */
    .prediction-buttons {
        flex-direction: row;
        gap: 6px;
    }
    
    .prediction-btn {
        padding: 10px 6px;
    }
    
    .prediction-btn .percent {
        font-size: 16px;
    }
    
    .prediction-btn .label {
        font-size: 9px;
    }
    
    /* Standings */
    .standings-card {
        overflow-x: auto;
    }
    
    .standings-table {
        min-width: 500px;
    }
    
    .standings-table th,
    .standings-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .standings-team-logo {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }
    
    .standings-team-name {
        font-size: 13px;
    }
    
    /* POTW Sidebar */
    .potw-sidebar {
        margin-top: 0;
    }
    
    .potw-item {
        padding: 12px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .potw-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .potw-details h4 {
        font-size: 13px;
    }
    
    .potw-stats-mini {
        display: none;
    }
    
    /* Video Card */
    .video-card {
        border-radius: var(--radius);
    }
    
    .video-info {
        padding: 14px;
    }
    
    .video-title {
        font-size: 14px;
    }
    
    .video-player-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .video-player-name {
        font-size: 13px;
    }
    
    .video-team {
        font-size: 11px;
    }
    
    /* Player Card */
    .player-card {
        border-radius: var(--radius);
    }
    
    .player-avatar {
        width: 60px;
        height: 60px;
        margin-top: -30px;
    }
    
    .player-avatar i {
        font-size: 24px;
    }
    
    .player-name {
        font-size: 15px;
    }
    
    .player-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .player-stat-value {
        font-size: 18px;
    }
    
    .player-stat-label {
        font-size: 10px;
    }
    
    /* Cards Grid */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-section {
        border-radius: var(--radius);
    }
    
    .card-item {
        padding: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-section h4 {
        font-size: 15px;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Küçük Mobil - 480px ve altı */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Hero */
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Live Match */
    .live-match-card {
        padding: 16px;
    }
    
    .match-header span {
        font-size: 11px;
    }
    
    .team-logo {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }
    
    .team-name {
        font-size: 12px;
    }
    
    .match-score .score {
        font-size: 24px;
    }
    
    /* Countdown */
    .countdown-item {
        padding: 8px 10px;
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: 18px;
    }
    
    .countdown-unit {
        font-size: 8px;
    }
    
    .countdown-separator {
        font-size: 18px;
    }
    
    /* Fixture */
    .fixture-team-logo {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }
    
    .fixture-team-info h4 {
        font-size: 12px;
    }
    
    .fixture-score {
        font-size: 20px;
        gap: 6px;
    }
    
    /* Prediction */
    .prediction-btn .percent {
        font-size: 14px;
    }
    
    .prediction-btn .label {
        font-size: 8px;
    }
    
    /* Standings */
    .standings-table {
        min-width: 450px;
    }
    
    .standings-table th,
    .standings-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    /* POTW */
    .potw-item {
        padding: 10px;
    }
    
    .potw-rank {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .potw-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .potw-details h4 {
        font-size: 12px;
    }
    
    .potw-details span {
        font-size: 10px;
    }
    
    .vote-btn-mini {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* Video */
    .video-category {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .video-duration {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    /* Player */
    .player-jersey {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .captain-badge {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Cards */
    .card-player-avatar {
        width: 36px;
        height: 36px;
    }
    
    .card-player-info h4 {
        font-size: 13px;
    }
    
    .card-player-info span {
        font-size: 11px;
    }
}

/* Çok Küçük Ekranlar - 360px ve altı */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .team-logo {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }
    
    .countdown-timer {
        gap: 4px;
    }
    
    .countdown-item {
        padding: 6px 8px;
        min-width: 45px;
    }
    
    .countdown-value {
        font-size: 16px;
    }
    
    .countdown-separator {
        font-size: 16px;
    }
}

/* ===================================
   Kings Podium - Gol/Asist Krallığı
   =================================== */
.kings-podium-section {
    background: linear-gradient(135deg, #0c1222 0%, #1a2744 50%, #0c1222 100%);
    padding: 50px 0 70px;
    position: relative;
    overflow: visible;
    margin-top: 0;
}

.kings-podium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.kings-podium-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

/* Tab Başlıkları */
.kings-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    padding: 0 16px;
}

.kings-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kings-tab .tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.kings-tab .tab-glow {
    display: none;
}

.kings-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.kings-tab.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    border-color: transparent;
    color: #0f172a;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.kings-tab.active[data-tab="assists"] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.kings-tab.active .tab-icon {
    background: rgba(0, 0, 0, 0.2);
    color: inherit;
}

.kings-tab.active[data-tab="assists"] .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Content Area */
.kings-content {
    animation: kingsFadeIn 0.4s ease;
}

@keyframes kingsFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Podyum Wrapper - 2-1-3 Düzeni */
.kings-podium-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    padding: 0 16px;
    min-height: 380px;
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

/* Podyum Kartları - Temel */
.king-podium-card {
    flex: 0 0 200px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px 16px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
}

.king-podium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Silver - 2. Sıra (Sol) */
.king-podium-card.silver {
    order: 1;
    background: linear-gradient(180deg, rgba(192,192,192,0.12) 0%, rgba(255,255,255,0.03) 100%);
    border-color: rgba(192, 192, 192, 0.2);
    margin-bottom: 30px;
}

.king-podium-card.silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
    border-radius: 20px 20px 0 0;
}

/* Gold - 1. Sıra (Orta) */
.king-podium-card.gold {
    order: 2;
    flex: 0 0 230px;
    padding-top: 40px;
    background: linear-gradient(180deg, rgba(255,215,0,0.15) 0%, rgba(255,200,0,0.05) 50%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 5;
}

.king-podium-card.gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, #fff5a0, #ffd700, transparent);
    border-radius: 20px 20px 0 0;
}

.king-podium-card.gold::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Bronze - 3. Sıra (Sağ) */
.king-podium-card.bronze {
    order: 3;
    background: linear-gradient(180deg, rgba(205,127,50,0.12) 0%, rgba(255,255,255,0.03) 100%);
    border-color: rgba(205, 127, 50, 0.2);
    margin-bottom: 50px;
}

.king-podium-card.bronze::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cd7f32, transparent);
    border-radius: 24px 24px 0 0;
}

/* Crown */
.king-crown {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #ffd700;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: crownBounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes crownBounce {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-5deg); }
    50% { transform: translateX(-50%) translateY(-6px) rotate(5deg); }
}

.crown-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    pointer-events: none;
}

.crown-sparkles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkleGold 1.5s ease-in-out infinite;
}

.crown-sparkles span:nth-child(1) { top: -5px; left: 50%; animation-delay: 0s; }
.crown-sparkles span:nth-child(2) { top: 50%; right: -5px; animation-delay: 0.5s; }
.crown-sparkles span:nth-child(3) { top: 50%; left: -5px; animation-delay: 1s; }

@keyframes sparkleGold {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Rank Badge */
.king-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
}

.king-rank span {
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.king-rank i {
    display: none;
}

.king-podium-card.gold .king-rank { 
    background: linear-gradient(135deg, #ffd700, #ff9500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.king-podium-card.silver .king-rank { 
    background: linear-gradient(135deg, #c0c0c0, #8a8a8a);
}
.king-podium-card.bronze .king-rank { 
    background: linear-gradient(135deg, #cd7f32, #a0522d);
}

/* Avatar */
.king-avatar-container {
    position: relative;
    margin-bottom: 28px;
}

.king-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--team-color), color-mix(in srgb, var(--team-color) 70%, black));
    border: 3px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.king-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.king-avatar .avatar-letter {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.king-avatar.champion {
    width: 88px;
    height: 88px;
    border-width: 4px;
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        0 10px 30px rgba(0,0,0,0.4);
}

.king-avatar.champion .avatar-letter {
    font-size: 34px;
}

.champion-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

.champion-glow.assist-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.4; }
}

.king-jersey {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Info */
.king-info {
    margin-bottom: 14px;
}

.king-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.king-podium-card.gold .king-name {
    font-size: 17px;
}

.king-team {
    display: inline-block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    padding: 3px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border-left: 2px solid var(--team-color);
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stat Badge */
.king-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.king-stat-badge i {
    font-size: 16px;
    color: #10b981;
    margin-bottom: 2px;
}

.king-stat-badge .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.king-stat-badge .stat-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.king-stat-badge.champion-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 180, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    padding: 14px 20px;
}

.king-stat-badge.champion-badge i {
    color: #ffd700;
    font-size: 18px;
}

.king-stat-badge.champion-badge .stat-number {
    font-size: 36px;
    background: linear-gradient(180deg, #ffd700, #ffb700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Asist Badge */
.king-stat-badge.assist-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.25);
}

.king-stat-badge.assist-badge i {
    color: #3b82f6;
}

.king-stat-badge.assist-badge.champion-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.king-stat-badge.assist-badge.champion-badge .stat-number {
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Podium Base - Gizli */
.king-podium-base {
    display: none;
}

/* Runners Up List */
.kings-runners-up {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.runner-up-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.runner-up-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.runner-rank {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}

.runner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.runner-info {
    display: flex;
    flex-direction: column;
}

.runner-name {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.runner-team {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.runner-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    margin-left: auto;
}

.runner-stat i {
    font-size: 11px;
    color: #10b981;
}

.runner-stat span {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.runner-stat.assist {
    background: rgba(59, 130, 246, 0.15);
}

.runner-stat.assist i {
    color: #3b82f6;
}

/* No Data Message */
.no-data-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 50px 20px;
    color: rgba(255,255,255,0.4);
}

.no-data-message i {
    font-size: 40px;
    opacity: 0.4;
}

.no-data-message p {
    font-size: 14px;
}

/* Responsive - Mobilde de 2-1-3 yan yana */
@media (max-width: 768px) {
    .kings-podium-section {
        padding: 40px 0 50px;
    }
    
    .kings-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .kings-tab {
        padding: 10px 16px;
        font-size: 13px;
        gap: 8px;
    }
    
    .kings-tab .tab-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .kings-podium-wrapper {
        gap: 8px;
        min-height: 320px;
        padding: 0 8px;
    }
    
    .king-podium-card {
        flex: 1;
        min-width: 0;
        max-width: 140px;
        padding: 20px 10px 24px;
        border-radius: 16px;
    }
    
    .king-podium-card.gold {
        flex: 1.15;
        max-width: 160px;
        padding-top: 30px;
    }
    
    .king-podium-card.silver {
        margin-bottom: 20px;
    }
    
    .king-podium-card.bronze {
        margin-bottom: 35px;
    }
    
    .king-crown {
        top: -20px;
        font-size: 24px;
    }
    
    .king-rank {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
    }
    
    .king-rank span {
        font-size: 14px;
    }
    
    .king-avatar {
        width: 56px;
        height: 56px;
        border-width: 2px;
    }
    
    .king-avatar .avatar-letter {
        font-size: 22px;
    }
    
    .king-avatar.champion {
        width: 68px;
        height: 68px;
        border-width: 3px;
    }
    
    .king-avatar.champion .avatar-letter {
        font-size: 26px;
    }
    
    .king-jersey {
        font-size: 10px;
        padding: 2px 7px;
        bottom: -14px;
    }
    
    .king-name {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .king-podium-card.gold .king-name {
        font-size: 13px;
    }
    
    .king-team {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .king-info {
        margin-bottom: 10px;
    }
    
    .king-stat-badge {
        padding: 8px 10px;
        border-radius: 10px;
    }
    
    .king-stat-badge i {
        font-size: 12px;
    }
    
    .king-stat-badge .stat-number {
        font-size: 22px;
    }
    
    .king-stat-badge .stat-label {
        font-size: 8px;
    }
    
    .king-stat-badge.champion-badge {
        padding: 10px 14px;
    }
    
    .king-stat-badge.champion-badge i {
        font-size: 14px;
    }
    
    .king-stat-badge.champion-badge .stat-number {
        font-size: 28px;
    }
    
    .champion-glow {
        width: 85px;
        height: 85px;
    }
    
    .kings-runners-up {
        margin-top: 24px;
        gap: 8px;
    }
    
    .runner-up-item {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .runner-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .runner-name {
        font-size: 12px;
    }
    
    .runner-team {
        font-size: 10px;
    }
    
    .runner-stat {
        padding: 4px 8px;
    }
    
    .runner-stat span {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .kings-podium-wrapper {
        gap: 6px;
        padding: 0 6px;
    }
    
    .king-podium-card {
        max-width: 110px;
        padding: 16px 8px 20px;
    }
    
    .king-podium-card.gold {
        max-width: 130px;
        padding-top: 26px;
    }
    
    .king-avatar {
        width: 48px;
        height: 48px;
    }
    
    .king-avatar .avatar-letter {
        font-size: 18px;
    }
    
    .king-avatar.champion {
        width: 58px;
        height: 58px;
    }
    
    .king-avatar.champion .avatar-letter {
        font-size: 22px;
    }
    
    .king-name {
        font-size: 11px;
    }
    
    .king-stat-badge .stat-number {
        font-size: 18px;
    }
    
    .king-stat-badge.champion-badge .stat-number {
        font-size: 24px;
    }
    
    .kings-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .kings-tab {
        justify-content: center;
    }
}

/* ===================================
   Video Thumbnail Play Button
   =================================== */
.video-thumb {
    position: relative;
}

.thumb-play {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.video-thumb:hover .thumb-play {
    opacity: 1;
}

.video-thumb.has-video {
    cursor: pointer;
}

.video-thumb.has-video:hover {
    border-color: var(--primary);
}

/* ===================================
   Mobile Horizontal Scroll Fix
   =================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }
    
    main {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Hero section fix */
    .hero {
        overflow: visible;
        max-width: 100vw;
        padding: 40px 0 30px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 24px;
        overflow: visible;
    }
    
    .hero-text h1 {
        font-size: clamp(24px, 6vw, 36px);
        word-wrap: break-word;
    }
    
    .live-match-card {
        max-width: 100%;
        overflow: visible;
        margin-top: 20px;
        padding-top: 30px;
    }
    
    /* Live badge fix for mobile */
    .live-badge {
        position: absolute;
        top: -10px;
        left: 16px;
        font-size: 11px;
        padding: 6px 14px;
        z-index: 10;
    }
    
    /* Live minute display fix - JavaScript kontrol eder, sadece stil */
    .live-minute .minute-value {
        font-size: 22px;
    }
    
    .live-score-display .score-numbers {
        font-size: 28px;
    }
    
    .vs-text {
        font-size: 20px;
    }
    
    /* Voting container fix */
    .match-voting-container {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 0 8px;
    }
    
    .voting-team {
        min-width: 0;
        flex: 1;
    }
    
    .voting-team .team-name {
        font-size: 11px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .vote-team-btn, .vote-draw-btn {
        font-size: 11px;
        padding: 8px 10px;
        white-space: nowrap;
    }
    
    /* Cards fix */
    .card, .stat-card, .match-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Table fix */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    
    table {
        min-width: auto;
    }
    
    /* Grid fix */
    .stats-grid, .teams-grid, .matches-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Header fix */
    .header-info {
        display: none;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    /* Footer fix */
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    
    /* Kings podium fix */
    .kings-podium-wrapper {
        max-width: 100%;
        overflow: hidden;
    }
    
    .king-podium-card {
        min-width: 0;
    }
    
    /* Button text overflow */
    .btn {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Image overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    /* Live match card for small phones */
    .live-match-card {
        margin-top: 16px;
        padding: 24px 12px 16px;
    }
    
    .live-badge {
        top: -8px;
        left: 12px;
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .live-minute .minute-value {
        font-size: 20px;
    }
    
    .live-score-display .score-numbers {
        font-size: 24px;
        gap: 6px;
    }
    
    .live-score-display .score-sep {
        font-size: 18px;
    }
    
    .match-voting-container {
        gap: 6px;
        padding: 0 4px;
    }
    
    .voting-team .team-logo {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }
    
    .voting-team .team-name {
        font-size: 10px;
    }
    
    .vote-team-btn {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .voting-draw {
        min-width: 60px;
    }
    
    .vote-draw-btn {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    /* Countdown fix */
    .match-countdown {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 16px 12px;
        margin-top: 12px;
    }
    
    .countdown-label {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .countdown-timer {
        display: flex !important;
        gap: 8px;
        align-items: center;
    }
    
    .countdown-item {
        padding: 8px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-value {
        font-size: 20px;
        display: block !important;
    }
    
    .countdown-unit {
        font-size: 9px;
        display: block !important;
    }
    
    .countdown-separator {
        font-size: 18px;
    }
    
    /* Match header */
    .match-header {
        font-size: 11px;
        padding: 8px 0;
    }
}
