/* Futbol Analiz Blogu - Ana Stil Dosyası */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --body-bg: #f8f9fa;
    --card-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --card-shadow-hover: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Genel Stiller */
body {
    background-color: var(--body-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ===== HEADER STYLES ===== */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
}

/* Brand Logo */
.brand-logo {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Logo Image */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-img:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* GIF Logo Stilleri */
.logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    color: white;
}

.search-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Live Time */
.live-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Notification Button */
.notification-btn .btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.notification-btn .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Header Line Animation */
.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff6b6b);
    background-size: 300% 100%;
    animation: headerLineMove 3s ease-in-out infinite;
}

@keyframes headerLineMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .search-box {
        margin: 1rem 0;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    .live-time,
    .notification-btn {
        display: none !important;
    }
}

/* Tab Navigation Stilleri */
.nav-tabs {
    border-bottom: 2px solid var(--light-color);
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: var(--primary-color);
    background-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 600;
}

.nav-tabs .nav-link i {
    margin-right: 0.5rem;
}

/* Analiz Sekmeleri için Özel Stiller */
#analysisTabs {
    border-bottom: 2px solid var(--light-color);
    margin-bottom: 2rem;
}

#analysisTabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    background: transparent;
    cursor: pointer;
}

#analysisTabs .nav-link:hover {
    border: none;
    color: var(--primary-color);
    background-color: var(--light-color);
}

#analysisTabs .nav-link.active {
    color: var(--primary-color);
    background-color: white;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 600;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#analysisTabsContent .tab-pane {
    display: none;
}

#analysisTabsContent .tab-pane.show {
    display: block;
}

#analysisTabsContent .tab-pane.active {
    display: block;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Tab Content Stilleri */
.tab-content {
    padding-top: 1rem;
}

.tab-pane {
    animation: fadeIn 0.5s ease-in;
}

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

/* Makale Kartları */
.article-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
}

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

.article-card .card-body {
    padding: 1.5rem;
}

/* Makale Fotoğrafları */
.article-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 15px 15px 0 0;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.article-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.article-card:hover .article-image-container::before {
    opacity: 1;
}

.article-category .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.article-card .card-text {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--secondary-color);
    font-size: 0.9rem;
}



/* İstatistik Kartları */
.stat-item {
    padding: 1rem;
    border-radius: 10px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: white;
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.stat-item h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* İletişim Formu */
.contact-info .d-flex {
    align-items: center;
}

.contact-icon {
    width: 50px;
    text-align: center;
}

.contact-info h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.social-links .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form Stilleri */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid var(--light-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0 1.5rem 0;
    margin-top: 95px;
    position: relative;
    overflow: hidden;
}

/* Hero section mobil optimizasyonu */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem 0;
        margin-top: 80px;
    }
    
    .hero-section .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 0.5rem 0;
        margin-top: 70px;
    }
}

/* Hero Slider Styles */
#heroSlider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#heroSlider .carousel-item {
    position: relative;
    height: 450px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Slider geçiş animasyonları */
#heroSlider .carousel-item.active {
    transform: translateX(0);
    opacity: 1;
}

#heroSlider .carousel-item:not(.active) {
    transform: translateX(100%);
    opacity: 0;
}



/* Carousel Controls */
#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

#heroSlider .carousel-control-prev {
    left: 20px;
}

#heroSlider .carousel-control-next {
    right: 20px;
}

/* Carousel Indicators */
#heroSlider .carousel-indicators {
    bottom: 30px;
}

#heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators button.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

#heroSlider .carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Hero Slider */
@media (max-width: 768px) {
    /* Logo responsive */
    .logo {
        max-width: 65px;
        max-height: 65px;
    }
    
    .brand-logo {
        width: 70px;
        height: 70px;
    }
    
    /* Mobilde slider container ayarları */
    .hero-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    #heroSlider {
        margin: 0;
        border-radius: 15px;
        width: 100%;
        overflow: hidden;
    }
    
    #heroSlider .carousel-inner {
        border-radius: 15px;
    }
    
    /* Sabit yükseklik kaldırıldı, içerik boyuna göre uzar */
    #heroSlider .carousel-item {
        height: auto;
        min-height: unset;
        display: block;
    }
    
    /* Görsel yatayda taşmaz, boyuna göre büyür */
    #heroSlider .carousel-item img {
        object-fit: contain;
        object-position: center center;
        width: 100%;
        height: auto;
        min-height: 0;
    }
    
    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    #heroSlider .carousel-control-prev {
        left: 10px;
    }
    
    #heroSlider .carousel-control-next {
        right: 10px;
    }
    
    /* Mobilde daha hızlı geçiş */
    #heroSlider .carousel-item {
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@media (max-width: 576px) {
    /* Logo küçük ekranlar */
    .logo {
        max-width: 150px;
        max-height: 55px;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .brand-title {
        font-size: 1rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    /* Küçük ekranlarda slider container optimizasyonu */
    .hero-section .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    #heroSlider {
        margin: 0;
        border-radius: 12px;
        width: 100%;
        overflow: hidden;
    }
    
    #heroSlider .carousel-inner {
        border-radius: 12px;
    }
    
    /* Sabit yükseklik kaldırıldı */
    #heroSlider .carousel-item {
        height: auto;
        min-height: unset;
        display: block;
    }
    
    /* Görsel: width:100%, height:auto */
    #heroSlider .carousel-item img {
        object-fit: contain;
        object-position: center center;
        width: 100%;
        height: auto;
        min-height: 0;
    }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 480px) {
    /* Çok küçük ekranlarda slider container ayarları */
    .hero-section .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    #heroSlider {
        margin: 0;
        border-radius: 10px;
        width: 100%;
        overflow: hidden;
        top: 15;
    }
    
    #heroSlider .carousel-inner {
        border-radius: 10px;
    }
    
    /* Sabit yükseklik kaldırıldı */
    #heroSlider .carousel-item {
        height: auto;
        min-height: unset;
        display: block;
    }
    
    #heroSlider .carousel-item img {
        object-fit: contain;
        object-position: center center;
        width: 100%;
        height: auto;
        min-height: 0;
    }
    
    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #heroSlider .carousel-control-prev {
        left: 5px;
    }
    
    #heroSlider .carousel-control-next {
        right: 5px;
    }
    
    #heroSlider .carousel-indicators {
        bottom: 15px;
    }
    
    #heroSlider .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}

/* Section Titles */
.section-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--warning-color);
}

/* Maç Kartları */
.match-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.match-card .card-body {
    padding: 1.5rem;
}

.match-time, .match-date {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.match-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.match-card .card-text {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.categories .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

/* Butonlar */
.btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Makale Sayfası */
.article-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.article-title {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.article-meta {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* GIF Alanları */
.gif-area {
    background: var(--light-color);
    border-radius: 10px;
    padding: 1rem;
    border: 2px dashed var(--secondary-color);
}

.gif-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gif-caption {
    font-style: italic;
}

/* Reklam Alanları */
.ad-area {
    background: var(--light-color);
    border-radius: 10px;
    padding: 1rem;
    border: 2px dashed var(--warning-color);
}

.ad-banner {
    position: relative;
}

.ad-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ad-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ad-label {
    font-style: italic;
    color: var(--warning-color);
    font-weight: 500;
}

/* Maç Analiz Ekranı */
.match-analysis-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.match-analysis-section .card {
    border: none;
    box-shadow: var(--card-shadow);
}

.match-analysis-section .card-header {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border: none;
    padding: 1.5rem;
}

.match-analysis-section .card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

/* İstatistik Grid */
.stats-grid {
    display: grid;
    gap: 1rem;
}

.stats-grid .stat-item {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stats-grid .stat-item:hover {
    background: white;
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.stat-label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Maç Sonucu Tahmini */
.match-prediction {
    border-top: 2px solid var(--light-color);
    padding-top: 2rem;
}

.prediction-cards {
    margin-top: 1rem;
}

.prediction-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.prediction-card:hover {
    background: white;
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.prediction-card.active {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    color: white;
    border-color: var(--primary-color);
}

.prediction-percentage {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prediction-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Sidebar */
.sidebar .card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.sidebar .card-header {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    border: none;
}

.sidebar .card-title {
    margin: 0;
    font-weight: 600;
}

.related-match {
    transition: all 0.3s ease;
}

.related-match:hover {
    background: var(--light-color);
    border-radius: 8px;
    padding: 0.5rem;
    margin: -0.5rem;
}

.related-match a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.related-match a:hover {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--secondary-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    margin-top: 5rem;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff6b6b);
    background-size: 300% 100%;
    animation: headerLineMove 3s ease-in-out infinite;
}

.footer-top {
    background: rgba(255, 255, 255, 0.02);
}

.footer-brand .brand-logo {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    overflow: hidden;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.footer-brand .brand-logo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff6b6b;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -20px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.newsletter h6 {
    color: #ffffff !important;
    font-weight: 600;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px 0 0 25px;
}

.newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter .btn {
    border-radius: 0 25px 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .text-muted {
    color: #ffffff !important;
    font-weight: 500;
}

.footer-stats .stat-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-stats .stat-item i {
    color: #ffffff !important;
    opacity: 0.8;
}

.footer-stats .stat-item span {
    color: #ffffff;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border: none;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer-stats {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-stats .stat-item {
        display: inline-block;
        margin: 0.25rem 0.5rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Mobil footer optimizasyonları */
    .footer-section {
        margin-top: 3rem;
    }
    
    .footer-top {
        padding: 2rem 0 !important;
    }
    
    .footer-top .row {
        margin: 0;
    }
    
    .footer-top .col-lg-4,
    .footer-top .col-lg-2,
    .footer-top .col-md-6 {
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-brand .brand-logo {
        margin: 0 auto 1rem auto;
    }
    
    .footer-brand .brand-text {
        margin-bottom: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info .contact-item {
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .newsletter {
        text-align: center;
        margin-top: 2rem;
    }
    
    .newsletter h6 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .newsletter .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter .form-control {
        border-radius: 25px;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .newsletter .btn {
        border-radius: 25px;
        width: 100%;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0 !important;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .footer-bottom .text-muted {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        margin: 0.25rem;
    }
}

/* Çok küçük ekranlar için footer optimizasyonları */
@media (max-width: 576px) {
    .footer-section {
        margin-top: 2rem;
    }
    
    .footer-top {
        padding: 1.5rem 0 !important;
    }
    
    .footer-top .col-lg-4,
    .footer-top .col-lg-2,
    .footer-top .col-md-6 {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
    }
    
    .footer-brand .brand-logo {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        overflow: hidden;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.25rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .contact-info .contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .newsletter h6 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .newsletter .form-control {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .newsletter .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0 !important;
    }
    
    .footer-bottom .text-muted {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-stats .stat-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin: 0.2rem 0.3rem;
        display: inline-block;
    }
    
    .social-links {
        gap: 0.3rem;
        margin-top: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        margin: 0.1rem;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .article-content {
        padding: 1rem;
    }
    
    .match-card .card-body {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .article-card .card-body {
        padding: 1rem;
    }
    
    /* Mobilde makale fotoğrafları */
    .article-image-container {
        height: 180px;
        margin: -1rem -1rem 1rem -1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .prediction-cards .row {
        flex-direction: column;
    }
    
    .prediction-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

.match-card, .article-card {
    animation: fadeInUp 0.6s ease-out;
}

.match-card:nth-child(2), .article-card:nth-child(2) {
    animation-delay: 0.1s;
}

.match-card:nth-child(3), .article-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--warning-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
    border-radius: 20px;
}

.img-fluid.ad-image {
    height: 100px;
}

/* ===== FOOTBALL API ANALYSIS STYLES ===== */

/* Analysis Sections */
.analysis-title {
    color: var(--dark-color);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    position: relative;
}

.analysis-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--warning-color);
}

.analysis-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.analysis-section:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Team Stats Cards */
.team-stats-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-stats-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow);
}

.team-name {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stats-grid .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stats-grid .stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
}

/* Recent Matches */
.team-recent-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.recent-matches {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recent-match-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid var(--success-color);
    transition: all 0.3s ease;
}

.recent-match-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.match-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.match-teams {
    font-size: 0.9rem;
    color: var(--dark-color);
    font-weight: 500;
}

.match-score {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Team Logos */
.team-logo {
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Head-to-Head Table */
.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background: var(--dark-color) !important;
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem 0.75rem;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: var(--light-color);
    transform: scale(1.01);
}

.table tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border-color: #e9ecef;
}

/* Manual Analysis */
.manual-analysis {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--success-color);
}

/* API Error Notice */
.api-error-notice .alert {
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Ad Areas */
.ad-area {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px dashed var(--warning-color);
    transition: all 0.3s ease;
}

.ad-area:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.ad-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.ad-image {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.ad-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ad-label {
    font-style: italic;
    color: var(--warning-color);
    font-weight: 500;
    text-align: center;
}

/* Football API Analysis Container */
.football-api-analysis {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    position: relative;
}

.football-api-analysis::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--success-color), var(--warning-color), var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

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

/* Responsive Design for Football API */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats-card {
        padding: 1rem;
    }
    
    .analysis-section {
        padding: 1rem;
    }
    
    .football-api-analysis {
        padding: 1rem;
    }
    
    .recent-match-item {
        padding: 0.75rem;
    }
    
    .match-info {
        gap: 0.5rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.5rem;
    }
    
    /* Mobil için GIF/Reklam alanları optimizasyonu */
    .ad-area {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .ad-image {
        width: 100% !important;
        height: auto !important;
        max-height: 150px !important;
        object-fit: cover !important;
        border-radius: 8px;
    }
    
    .ad-banner {
        width: 100%;
        overflow: hidden;
    }
    
    /* Mobil için tablo optimizasyonu */
    .table-responsive {
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 600px;
    }
    
    .table thead th {
        font-size: 0.8rem;
        padding: 0.5rem 0.25rem;
        white-space: nowrap;
    }
    
    .table tbody td {
        font-size: 0.8rem;
        padding: 0.5rem 0.25rem;
        white-space: nowrap;
    }
    
    /* Mobil için istatistik kartları */
    .stats-grid .stat-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .analysis-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .stats-grid .stat-item {
        padding: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    /* Çok küçük ekranlar için ek optimizasyonlar */
    .ad-area {
        margin: 0.5rem 0;
        padding: 0.75rem;
    }
    
    .ad-image {
        max-height: 120px !important;
    }
    
    .table {
        min-width: 500px;
        font-size: 0.75rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.25rem;
        font-size: 0.75rem;
    }
    
    .football-api-analysis {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .analysis-section {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .team-stats-card {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .recent-match-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .match-info {
        gap: 0.25rem;
    }
    
    .match-date {
        font-size: 0.7rem;
    }
    
    .match-teams {
        font-size: 0.8rem;
    }
    
    .match-score {
        font-size: 0.9rem;
    }
}

/* Bildirim Dropdown Stilleri */
.notification-dropdown {
    min-width: 350px;
    max-width: 400px;
    max-height: 500px;
    overflow-y: auto;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.notification-item.read {
    opacity: 0.7;
}

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

.notification-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.notification-time {
    font-size: 12px;
    color: #6c757d;
    margin-left: 8px;
}

.notification-message {
    font-size: 13px;
    color: #495057;
    margin: 0;
    line-height: 1.4;
}

.notification-type {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.notification-type.info {
    background-color: #17a2b8;
}

.notification-type.success {
    background-color: #28a745;
}

.notification-type.warning {
    background-color: #ffc107;
}

.notification-type.error {
    background-color: #dc3545;
}

.no-notifications {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

.no-notifications i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .notification-dropdown {
        min-width: 300px;
        max-width: 350px;
    }
}

/* ===== SOSYAL MEDYA LİNKLERİ STİLLERİ ===== */
.social-links-section {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* E-posta Kartı Stilleri */
.email-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.email-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.email-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.email-icon i {
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.email-content h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.email-content p {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.email-btn:hover {
    background: linear-gradient(135deg, #feca57, #ff6b6b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.social-links-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-links-section .social-link {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 2.5rem;
    margin: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 280px;
    justify-content: center;
    height: 70px;
}

.social-links-section .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-links-section .social-link i {
    font-size: 1.8rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links-section .social-link:hover i {
    transform: scale(1.1);
}

.social-links-section .social-link span {
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* WhatsApp özel stil */
.social-links-section .social-link:nth-child(1) {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-links-section .social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
}

/* Telegram özel stil */
.social-links-section .social-link:nth-child(2) {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.social-links-section .social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #229ed9, #0088cc);
}

/* Bot özel stil */
.social-links-section .social-link:nth-child(3) {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.social-links-section .social-link:nth-child(3):hover {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .social-links-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .social-links-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .email-card {
        padding: 1.5rem;
    }
    
    .email-icon i {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .email-content h4 {
        font-size: 1.3rem;
    }
    
    .email-content p {
        font-size: 1.1rem;
    }
    
    .email-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-links-section .social-link {
        min-width: 200px;
        padding: 1rem 1.5rem;
        margin: 0.5rem;
        font-size: 1.1rem;
        height: 60px;
    }
    
    .social-links-section .social-link i {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
    
    .social-links-section .social-link span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .social-links-section .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links-section .social-link {
        width: 100%;
        max-width: 300px;
        margin: 0.75rem 0;
        height: 65px;
    }
}