/* ===== DYNAMIC COURT TEMA - ANASAYFA ===== */

/* Duyuru Bannerı */
.banner {
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    color: white;
    padding: 12px 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-30deg);
    animation: bannerShine 3s infinite;
}

@keyframes bannerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.banner i {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.banner span {
    flex-grow: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.banner .btn-accent {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    transition: all 0.2s ease;
    padding: 6px 16px;
}

.banner .btn-accent:hover {
    background: white;
    color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .banner .container {
        justify-content: center;
        text-align: center;
    }
    
    .banner span, .banner .btn-accent {
        flex-basis: 100%;
        margin: 5px 0;
    }
}

/* Hero Bölümü */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding: 2rem;
}

/* Video Arkaplan */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Video Overlay - Kaldırıldı, sadece video görünecek */

/* Mobil cihazlarda video optimizasyonu */
@media (max-width: 768px) {
    .hero-video {
        /* Video mobilde de görünsün ama optimize edilsin */
        object-fit: cover;
        object-position: center;
    }
    
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .hero {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    }
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Sayılarla Bölümü */
.statistics {
    background-color: var(--white);
    padding: 4rem 1.5rem;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Öne Çıkan Bölümü */
.featured-section {
    padding: 60px 0;
    position: relative;
}

.featured-section .section-title {
    margin-bottom: 30px;
}

/* Maç Kartları */
.match-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.match-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(154, 0, 0, 0.2); /* Hover durumunda koyu kırmızı kenar */
}

.match-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 20px;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.match-date {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    font-size: 0.9rem;
}

.match-date i {
    color: #e65100; /* Turuncu icon */
}

.match-view i {
    color: #9a0000; /* Koyu kırmızı ok ikonu */
    transition: transform 0.3s ease;
}

.match-card:hover .match-view i {
    transform: translateX(5px);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 45%;
}

.team-home {
    justify-content: flex-end;
    text-align: right;
}

.team-away {
    justify-content: flex-start;
    text-align: left;
}

.team-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.match-card:hover .team-name {
    color: #9a0000; /* Hover durumunda koyu kırmızı takım ismi */
}

.team-score {
    background-color: #f8f8f8;
    color: #e65100; /* Turuncu skor */
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Takım Logoları */
.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f2f2f2;
    border: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.team-home .team-logo {
    order: 3; /* Ev sahibi takımın logosunu en sonda göster */
    margin-left: 5px;
}

.team-away .team-logo {
    order: -1; /* Deplasman takımın logosunu en başta göster */
    margin-right: 5px;
}

.match-card:hover .team-logo {
    border-color: rgba(154, 0, 0, 0.3); /* Hover durumunda kenark rengi */
    transform: scale(1.05);
}

.team-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-logo-placeholder {
    font-weight: 700;
    color: #9a0000;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.match-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    width: 10%;
}

.match-vs span {
    background-color: #f8f8f8;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.featured-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
    margin-top: 0.75rem;
}

.section-subtitle {
    color: var(--text);
    max-width: 700px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.featured-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobil için grid optimizasyonu */
@media (max-width: 768px) {
    .featured-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .featured-cards {
        gap: 0.5rem;
        padding: 0 10px;
    }
}

.featured-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.card-text {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

.card-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Öne Çıkan Kartlar Buton Stili */
.featured-card .btn {
    margin-top: 1.5rem;
    align-self: flex-start;
    background-color: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
    transition: all 0.25s ease;
    text-decoration: none;
}

.featured-card .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 119, 255, 0.3);
    opacity: 0.95;
}

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

/* İyileştirilmiş Kart Stilleri */
.featured-card .card-content {
    padding: 2.5rem;
}

.featured-card .card-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.featured-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

/* Etkinlikler Bölümü */
.events-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.events-section .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 4px solid #f0f0f0;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
}

.responsive-video {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
    background-color: #000; /* Video yüklenirken arka plan rengi */
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 900px;
}

.feature-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    text-align: left;
    color: var(--text-dark);
}

/* Tanıtım video bölümü responsive düzenlemeler */
@media (max-width: 768px) {
    .events-section {
        padding: 3.5rem 0;
    }
    
    .video-wrapper {
        margin-bottom: 2rem;
        border-width: 2px;
    }
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .events-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .events-section .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .video-features {
        grid-template-columns: 1fr;
    }
}

.event-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

@media (min-width: 768px) {
    .event-item {
        flex-direction: row;
    }
}

.event-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.event-date {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
}

.event-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 5rem 1.5rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-shape {
    position: absolute;
    opacity: 0.15;
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--white);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--white);
    bottom: -70px;
    left: -70px;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

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

.stat-number.animated {
    animation: scoreCount 1.5s ease-out forwards;
}

/* Paralaks Efekti */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Son Duyurular Bölümü */
.announcements-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
    position: relative;
}

.announcements-section .section-title {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.announcements-section .section-title h2 {
    text-align: center;
}

.announcements-section .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.announcements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Yeni Duyuru Slider/Banner Stili */
.announcement-slider {
    position: relative;
    margin: 30px auto;
    max-width: 1100px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.slider-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    display: block;
    opacity: 1;
}

.slider-banner {
    display: flex;
    flex-direction: row;
    background: var(--white);
    overflow: hidden; /* kutu dışına taşmaları engelle */
    border-radius: 16px; /* içte de kırpma yap */
}

.banner-image {
    flex: 0 0 75%;
    position: relative;
    overflow: hidden;
    display: flex;               /* görseli ortala */
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;        /* kırpmadan sığdırmak için oran sabit */
    height: auto;
    background: #f5f7fa;         /* letterbox alan rengi */
}

.banner-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;         /* kırpmadan sığdır */
    display: block;
}

.banner-content {
    flex: 0 0 25%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.announcement-date {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.announcement-date i {
    margin-right: 8px;
    color: var(--primary);
}

.announcement-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--text-dark);
}

.announcement-excerpt {
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 16px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 10px;
}

.slider-prev, .slider-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s ease;
    font-size: 16px;
    z-index: 5;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.slider-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.announcement-title::after {
    content: '';
    position: absolute;
}

/* Duyuru boş içerik durumu */
.announcements-container .empty-content {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.announcements-container .empty-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 18px;
}

.announcements-container .text-center {
    margin-top: 30px;
}

/* Responsive Düzenlemeler - Duyuru Slider */
@media (max-width: 992px) {
    .slider-banner {
        flex-direction: column;
    }
    
    .banner-image {
        flex: 0 0 auto;
        position: relative;
    }
    
    .banner-content {
        flex: 0 0 auto;
        padding: 25px;
    }
    
    .slider-controls {
        padding: 0 15px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .announcements-section {
        padding: 4rem 0;
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .announcement-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .announcement-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .banner-image {
        height: 200px;
    }
    
    .slider-prev, .slider-next {
        width: 32px;
        height: 32px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 16px;
    }
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .announcement-cards {
        grid-template-columns: 1fr;
    }
    
    .announcement-title {
        font-size: 1.3rem;
    }
    
    /* Maç kartları mobil optimizasyonu */
    .match-teams {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }
    
    .team {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column;
        gap: 8px;
    }
    
    .team-home {
        order: 1;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .team-away {
        order: 3;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .match-vs {
        order: 2;
        width: 60px !important;
        margin: 8px 0;
        flex-shrink: 0;
    }
    
    .match-vs span {
        width: 40px;
        height: 40px;
        font-size: 12px;
        font-weight: bold;
    }
    
    .team-name {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 5px;
        order: 2;
    }
    
    .team-score {
        order: 3;
        margin-top: 5px;
    }
    
    .team-logo {
        order: 1;
        margin-bottom: 5px;
    }
    
    .match-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .match-link {
        padding: 15px;
    }
    
    .match-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için */
    .match-teams {
        gap: 8px;
    }
    
    .team {
        gap: 5px;
    }
    
    .team-name {
        font-size: 13px;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 3px;
    }
    
    .team-score {
        min-width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .match-date {
        font-size: 12px;
    }
    
    .match-link {
        padding: 12px;
    }
    
    .match-vs {
        order: 2;
        width: 50px !important;
        margin: 5px 0;
        flex-shrink: 0;
    }
    
    .match-vs span {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
    
    .team-logo {
        margin-bottom: 3px;
    }
    
    .team-logo-img, .team-logo-placeholder {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* Orta boyut ekranlar için (tablet portrait) */
@media (max-width: 600px) and (min-width: 481px) {
    .match-teams {
        gap: 12px;
    }
    
    .team-name {
        font-size: 13.5px;
    }
    
    .match-vs {
        order: 2;
        margin: 6px 0;
    }
    
    .match-vs span {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
    
    .team-score {
        min-width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}
