/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tema değişimini engelle */
html {
    color-scheme: light only !important;
    -webkit-color-scheme: light only !important;
    background-color: #f5f6fa !important;
    color: #2c3e50 !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f6fa !important;
    color: #2c3e50 !important;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Header - Maçkolik Stili */
.top-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn,
.notifications-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-btn:hover,
.notifications-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

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

/* Main Content */
.main-content {
    margin-top: 70px;
    padding-bottom: 90px;
    min-height: 100vh;
}

/* Sport Tabs - Modern Stil */
.sport-tabs {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tab-container {
    display: flex;
    overflow-x: auto;
    padding: 0 20px;
    gap: 8px;
}

.tab-container::-webkit-scrollbar {
    display: none;
}

.sport-tab {
    background: none;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    border-radius: 12px;
}

.sport-tab i {
    font-size: 22px;
    transition: all 0.3s ease;
}

.sport-tab:hover {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.05);
}

.sport-tab.active {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.1);
}

.sport-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #1e40af;
    border-radius: 2px;
}

/* Live Section */
.live-section {
    padding: 20px;
}

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

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ef4444;
    font-size: 18px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.date-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 20px 20px;
}

.date-btn {
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.date-btn:hover {
    border-color: #1e40af;
    color: #1e40af;
    background: rgba(30, 64, 175, 0.05);
}

.date-btn.active {
    background: #1e40af;
    border-color: #1e40af;
    color: white;
}

/* Match Card - Modern Tasarım */
.match-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.match-card.live {
    border-left: 4px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.match-card.upcoming {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid #6b7280;
    margin-top: 20px;
    position: relative;
}

.match-card.upcoming::before {
    content: "Yakında Olan Maçlar";
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

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

.league-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.league-info .league-name,
.league-info .match-time {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.league-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.status-badge.live {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.status-badge.finished {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-badge.halftime {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.status-badge.upcoming {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

/* Match Content */
.match-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

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

.team:last-child {
    flex-direction: row-reverse;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: #f8fafc;
    padding: 4px;
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.team:last-child .team-name {
    text-align: right;
}

.match-score {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    min-width: 80px;
    justify-content: center;
}

.match-time {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Bottom Navigation - Modern Stil */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    min-width: 50px;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 0;
}

.nav-item .live-indicator {
    color: #ef4444;
    font-size: 22px;
}

/* Page System */
.page {
    display: none;
}

.page.active {
    display: block;
}

.page-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.page-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}

.page-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.empty-state p {
    font-size: 14px;
    line-height: 1.5;
}

/* Profile Page */
.profile-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: white;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.profile-email {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.stat-item {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Standings Table */
.standings-container {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.standings-table {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.standings-header {
    background: #3b82f6;
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

.standings-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th, td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

th {
    background: #f8fafc;
    font-weight: 700;
    color: #1f2937;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-row {
    transition: background-color 0.2s ease;
}

.team-row:hover {
    background: #f8fafc;
}

.team-row.champion {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
}

.team-row.europe {
    background: #dbeafe;
    border-left: 3px solid #3b82f6;
}

.team-row.relegation {
    background: #fecaca;
    border-left: 3px solid #ef4444;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    text-align: left;
}

.team-logo-small {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
}

.team-name-small {
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    font-size: 14px;
}

.team-position {
    font-weight: 700;
    color: #3b82f6;
    font-size: 16px;
}

.points {
    font-weight: 800;
    color: #059669;
    font-size: 16px;
}

.goal-difference {
    font-weight: 700;
    color: #dc2626;
}

.goal-difference.positive {
    color: #059669;
}

.standings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobil için puan tablosu düzenlemeleri */
@media (max-width: 768px) {
    .standings-container {
        padding: 16px;
        max-width: 100%;
    }
    
    .standings-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .standings-header {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    th, td {
        padding: 8px 6px;
        font-size: 13px;
    }
    
    .team-logo-small {
        width: 20px;
        height: 20px;
    }
    
    .team-name-small {
        font-size: 13px;
        max-width: 80px;
    }
    
    .team-position {
        font-size: 14px;
    }
    
    .points {
        font-size: 14px;
    }
    
    table {
        min-width: 500px;
    }
    
    .standings-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
    
    .standings-table {
        border-radius: 12px;
        margin: 0 -4px;
    }
    
    .standings-header {
        padding: 10px 16px;
        font-size: 16px;
    }
    
    table {
        min-width: 360px;
    }
    
    th, td {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .team-logo-small {
        width: 20px;
        height: 20px;
    }
    
    .team-info {
        gap: 8px;
    }
    
    .position {
        width: 20px;
        font-size: 12px;
    }
    
    /* Sütun genişlikleri - mobil için optimize */
    th:nth-child(1), td:nth-child(1) { width: 20px; } /* Sıra */
    th:nth-child(2), td:nth-child(2) { width: 120px; min-width: 120px; } /* Takım */
    th:nth-child(3), td:nth-child(3) { width: 20px; } /* O */
    th:nth-child(4), td:nth-child(4) { width: 20px; } /* G */
    th:nth-child(5), td:nth-child(5) { width: 20px; } /* B */
    th:nth-child(6), td:nth-child(6) { width: 20px; } /* M */
    th:nth-child(7), td:nth-child(7) { width: 25px; } /* A */
    th:nth-child(8), td:nth-child(8) { width: 25px; } /* Y */
    th:nth-child(9), td:nth-child(9) { width: 25px; } /* Av */
    th:nth-child(10), td:nth-child(10) { width: 20px; } /* P */
}

@media (max-width: 480px) {
    .standings-container {
        padding: 4px;
    }
    
    .standings-table {
        border-radius: 8px;
    }
    
    .standings-header {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    table {
        min-width: 320px;
    }
    
    th, td {
        padding: 4px 6px;
        font-size: 11px;
    }
    
    .team-logo-small {
        width: 18px;
        height: 18px;
    }
    
    .team-info {
        gap: 6px;
    }
    
    .position {
        width: 15px;
        font-size: 11px;
    }
    
    /* Sütun genişlikleri - küçük mobil için optimize */
    th:nth-child(1), td:nth-child(1) { width: 15px; } /* Sıra */
    th:nth-child(2), td:nth-child(2) { width: 100px; min-width: 100px; } /* Takım */
    th:nth-child(3), td:nth-child(3) { width: 15px; } /* O */
    th:nth-child(4), td:nth-child(4) { width: 15px; } /* G */
    th:nth-child(5), td:nth-child(5) { width: 15px; } /* B */
    th:nth-child(6), td:nth-child(6) { width: 15px; } /* M */
    th:nth-child(7), td:nth-child(7) { width: 20px; } /* A */
    th:nth-child(8), td:nth-child(8) { width: 20px; } /* Y */
    th:nth-child(9), td:nth-child(9) { width: 20px; } /* Av */
    th:nth-child(10), td:nth-child(10) { width: 15px; } /* P */
}

/* Profile Page */
.profile-container {
    padding: 20px;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-login, .btn-register, .btn-logout, .btn-manage, .btn-president {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-login {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.btn-register {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.btn-logout {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
}

.btn-manage {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
}

.btn-president {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.btn-login:hover, .btn-register:hover, .btn-logout:hover, .btn-manage:hover, .btn-president:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorite-team {
    color: #e11d48;
    font-weight: 600;
    margin-top: 10px;
}

/* Profil düzenleme formu */
.profile-edit-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.profile-edit-form h4 {
    margin: 0 0 25px 0;
    color: #1e293b;
    font-size: 20px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-save, .btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.btn-save {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.btn-cancel {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: white;
}

.btn-save:hover, .btn-cancel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.favorite-team i {
    margin-right: 5px;
}

/* Favori maçlar bilgi metni */
.favorites-info {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 0 20px 20px 20px;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
}

.favorites-info p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* Favori buton stilleri */
.favorite-btn {
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn.favorite-active {
    color: #e11d48 !important;
    background: rgba(225, 29, 72, 0.1) !important;
}

.favorite-btn.favorite-active i {
    color: #e11d48;
}

/* Toast mesajları */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast i {
    font-size: 18px;
}

.toast-success i {
    color: #10b981;
}

.toast-error i {
    color: #ef4444;
}

.toast-info i {
    color: #3b82f6;
}

/* Notification Panel */
.notification-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.notification-panel.show {
    right: 0;
}

.notification-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-notifications {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.close-notifications:hover {
    background: rgba(255, 255, 255, 0.1);
}

.notification-content {
    padding: 20px;
}

.notification-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid #1e40af;
    transition: all 0.2s ease;
}

.notification-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.notification-item.unread {
    background: #eff6ff;
    border-left-color: #3b82f6;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 12px;
}

.notification-text {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 12px;
    color: #6b7280;
}

.notification-footer {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.notification-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 12px;
}

.notification-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.mark-all-read {
    background: #1a365d;
    color: white;
}

.mark-all-read:hover {
    background: #2c5282;
}

.clear-all-notifications {
    background: #dc3545;
    color: white;
}

.clear-all-notifications:hover {
    background: #c82333;
}

.sound-controls {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f3f4;
}

.sound-controls label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.sound-controls input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1a365d;
}

.mark-all-read {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mark-all-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .sport-tab {
        padding: 14px 16px;
        min-width: 80px;
        font-size: 12px;
    }
    
    .sport-tab i {
        font-size: 20px;
    }
    
    .match-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .team-logo {
        width: 36px;
        height: 36px;
    }
    
    .team-name {
        font-size: 15px;
    }
    
    .match-score {
        font-size: 20px;
    }
    
    .notification-panel {
        width: 100%;
        right: -100%;
    }
    
    .standings-container {
        padding: 16px;
    }
    
    .profile-card {
        margin: 16px;
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 12px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .sport-tab {
        padding: 12px 14px;
        min-width: 70px;
        font-size: 11px;
    }
    
    .sport-tab i {
        font-size: 18px;
    }
    
    .match-card {
        padding: 14px;
    }
    
    .team-logo {
        width: 32px;
        height: 32px;
    }
    
    .team-name {
        font-size: 14px;
    }
    
    .match-score {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

.match-card {
    animation: fadeIn 0.5s ease-out;
}

.match-card:nth-child(2) { animation-delay: 0.1s; }
.match-card:nth-child(3) { animation-delay: 0.2s; }
.match-card:nth-child(4) { animation-delay: 0.3s; }
.match-card:nth-child(5) { animation-delay: 0.4s; }
.match-card:nth-child(6) { animation-delay: 0.5s; }

/* Swipe Actions */
.swipe-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.match-card:hover .swipe-indicator {
    opacity: 1;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #6b7280;
}

.loading i {
    font-size: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Fikstür Kartları - Özel Tasarım */
.fixture-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 16px 0 0;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.fixture-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.league-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.league-name {
    color: #e94560;
    font-size: 14px;
    font-weight: 600;
}

.match-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
}

.match-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.match-status.status-upcoming {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.match-status.status-live {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.match-status.status-finished {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.fixture-content {
    margin-bottom: 16px;
}

.fixture-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-direction: row !important;
}

.fixture-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-direction: row !important;
}

.fixture-home-team {
    justify-content: flex-start;
    flex-direction: row !important;
}

.fixture-away-team {
    justify-content: flex-end;
    flex-direction: row !important;
}

.fixture-team-name {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.fixture-vs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 80px;
}

.fixture-vs {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fixture-score {
    color: #e94560;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.fixture-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.fixture-time {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .fixture-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .fixture-teams {
        gap: 12px;
    }
    
    .fixture-team-name {
        font-size: 14px;
    }
    
    .fixture-score {
        font-size: 16px;
    }
    
.fixture-vs-section {
    min-width: 60px;
    }
}

/* Fikstür için Özel Zorla Düzen */
#fixtures-page .fixture-teams {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

#fixtures-page .fixture-team {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

#fixtures-page .fixture-home-team {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
}

#fixtures-page .fixture-away-team {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
}
}

/* Global CSS Override for Fixtures - ChatGPT Çözümü */
#fixtures-page .fixture-team-name,
#fixtures-page .fixture-vs,
#fixtures-page .fixture-time {
    color: #fff !important;
}

/* Fikstür Renk Düzeltmeleri */
#fixtures-page .fixture-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#fixtures-page .fixture-team-name {
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

#fixtures-page .fixture-vs {
    color: rgba(255, 255, 255, 0.6) !important;
}

#fixtures-page .fixture-score {
    color: #e94560 !important;
}

#fixtures-page .fixture-time {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Takım Oyuncuları Modal */
.team-players-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.team-players-modal .modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.team-players-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.team-players-modal .modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.team-players-modal .close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s;
}

.team-players-modal .close:hover {
    opacity: 0.7;
}

.team-players-modal .modal-body {
    padding: 20px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.player-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.player-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-position {
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.player-details {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.4;
}

.no-players {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .team-players-modal .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .player-card {
        padding: 12px;
    }
    
    .player-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .player-name {
        font-size: 14px;
    }
}