/* Genel Sayfa Stilleri */
body {
    overflow-x: hidden;
}

/* Yeni Hero Banner Stilleri */
.hero-banner {
    height: 400px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.banner-slides {
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.8)
    );
    z-index: 1;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: white;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-title a:hover {
    color: #FFA914;
}

.banner-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.banner-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.banner-time {
    display: flex;
    align-items: center;
}

.banner-time i {
    margin-right: 5px;
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-indicator.active {
    background: white;
    transform: scale(1.3);
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.banner-indicator:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    
    .banner-content {
        padding: 20px;
    }
    
    .banner-title {
        font-size: 24px;
        -webkit-line-clamp: 2;
    }
    
    .banner-indicators {
        bottom: 10px;
    }
    
    .banner-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 250px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .banner-meta {
        font-size: 12px;
    }
    
    .banner-category {
        padding: 2px 8px;
        font-size: 11px;
    }
}

/* Kategoriler ve Haberler Bölümü */
.categories-section {
    margin-top: 40px;
    width: 100%;
    overflow-x: hidden;
}

.categories-loading {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.categories-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.categories-container {
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-height: auto;
}

.category-block {
    width: 100%;
    position: relative;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    overflow: visible;
    min-height: auto;
}

.category-light {
    background-color: #ffffff;
    color: #333;
}

.category-dark {
    background-color: #0d0d0d;
    color: #ffffff;
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.category-title a:hover {
    color: #FFA914;
}

.category-light .category-title {
    color: #333;
}

.category-dark .category-title {
    color: #ffffff;
}

/* Çizgi renkleri temaya göre */
.category-light .category-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.category-dark .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Turuncu çizgi kaldırıldı */

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: visible;
}

/* Yeni Layout Yapıları */
.news-grid-layout1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: visible;
}

.news-grid-layout2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: visible;
}

/* Layout 1: 1+3+4+4 - İlk haber tam satır */
.news-grid-layout1 .news-card:nth-child(1) {
    grid-column: 1 / -1;
}

/* 3'lü haberler satırı tamamen kaplasın */
.news-grid-layout1 .news-card:nth-child(2) {
    grid-column: 1 / 2;
}

.news-grid-layout1 .news-card:nth-child(3) {
    grid-column: 2 / 3;
}

.news-grid-layout1 .news-card:nth-child(4) {
    grid-column: 3 / -1;
}

/* Layout 2: 3+1+4+4 - Dördüncü haber tam satır */
/* 3'lü haberler satırı tamamen kaplasın */
.news-grid-layout2 .news-card:nth-child(1) {
    grid-column: 1 / 2;
}

.news-grid-layout2 .news-card:nth-child(2) {
    grid-column: 2 / 3;
}

.news-grid-layout2 .news-card:nth-child(3) {
    grid-column: 3 / -1;
}

.news-grid-layout2 .news-card:nth-child(4) {
    grid-column: 1 / -1;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block !important;
    visibility: visible !important;
    min-width: 0; /* Grid taşmasını engeller */
    box-sizing: border-box;
}

/* Büyük haber kartları için stiller */
.news-card.large-card .news-card-image {
    height: 300px;
}

.news-card.large-card .news-card-content {
    padding: 20px;
    min-height: 80px;
}

.news-card.large-card .news-card-title {
    font-size: 20px;
    font-weight: 700;
    -webkit-line-clamp: 3;
}

.news-card-light {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.news-card-dark {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.news-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: inherit;
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.05);
}

.news-card-content {
    padding: 15px;
    display: flex;
    align-items: center;
    min-height: 60px; /* Başlık için minimum yükseklik */
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto; /* Flexible yükseklik */
    flex: 1; /* Container içinde esnek genişlik */
}

.news-card-light .news-card-title {
    color: #333;
}

.news-card-dark .news-card-title {
    color: #ffffff;
}

.news-card-light:hover .news-card-title,
.news-card-dark:hover .news-card-title {
    color: #FFA914;
}

/* Bootstrap Card Stiller */
.news-card-dark.card {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    transition: all 0.3s ease;
}

.news-card-light.card {
    background: white;
    border: 1px solid #e0e0e0;
    color: #333;
    transition: all 0.3s ease;
}

.news-card-dark.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2) !important;
}

.news-card-light.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2) !important;
}

.news-card-dark .card-title {
    color: #ffffff;
}

.news-card-light .card-title {
    color: #333;
}

.news-card-dark:hover .card-title,
.news-card-light:hover .card-title {
    color: #FFA914;
}

.news-card-dark a {
    color: inherit;
}

.news-card-light a {
    color: inherit;
}

.card .news-card-image {
    transition: transform 0.3s ease;
}

.card:hover .news-card-image {
    transform: scale(1.05);
}

/* Dinamik Layout Büyük Kart Stiller */
.card.large-card {
    border: 2px solid rgba(255, 169, 20, 0.2);
}

.card.large-card:hover {
    border-color: rgba(255, 169, 20, 0.4);
    transform: translateY(-8px);
}

.card.large-card .card-title {
    font-weight: 600;
    line-height: 1.3;
}

.news-card-dark.large-card {
    border-color: rgba(255, 169, 20, 0.3);
}

.news-card-light.large-card {
    border-color: rgba(255, 169, 20, 0.2);
}

/* Layout Type Indicators (for debugging) */
.row[data-layout="1"]::before {
    content: "Layout: 1 Büyük + 3 Küçük + 4'lü Grid";
}

.row[data-layout="2"]::before {
    content: "Layout: 3 Küçük + 1 Büyük + 4'lü Grid";
}

.row[data-layout="3"]::before {
    content: "Layout: Klasik 4'lü Grid";
}

.row::before {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    z-index: 10;
    display: none; /* Sadece geliştirme için gösterilebilir */
}

/* Bootstrap Card Responsive Adjustments */
@media (max-width: 576px) {
    /* Mobilde tüm kartlar tek sütun */
    .card .news-card-image {
        height: 200px !important;
    }
    
    .card-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    /* Mobilde büyük kart farkı kaldır */
    .card.large-card {
        border: 1px solid rgba(255, 169, 20, 0.1);
    }
    
    .card.large-card .news-card-image {
        height: 200px !important;
    }
    
    .card.large-card .card-title {
        font-size: 1.1rem;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    /* Tablet'te 2'li grid */
    .card .news-card-image {
        height: 160px !important;
    }
    
    .card-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .card.large-card .news-card-image {
        height: 180px !important;
    }
    
    .card.large-card .card-title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Orta ekranda 3'lü grid */
    .card .news-card-image {
        height: 180px !important;
    }
    
    .card-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .card.large-card .news-card-image {
        height: 220px !important;
    }
    
    .card.large-card .card-title {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    /* Masaüstünde dinamik layout'lar aktif */
    .card .news-card-image {
        height: 200px !important;
    }
    
    .card-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .card.large-card .news-card-image {
        height: 300px !important;
    }
    
    .card.large-card .card-title {
        font-size: 1.2rem;
        font-weight: 600;
    }
}

/* Meta bilgileri kaldırıldı, sadece başlık kullanılıyor */

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .news-grid,
    .news-grid-layout1,
    .news-grid-layout2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }
    
    /* Tüm kartlar için grid-column reset */
    .news-grid-layout1 .news-card,
    .news-grid-layout2 .news-card {
        grid-column: auto;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Layout 1: 1200px altında sadece ilk kart full width */
    .news-grid-layout1 .news-card:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    /* Layout 2: 1200px altında sadece dördüncü kart full width */
    .news-grid-layout2 .news-card:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    .news-card.large-card .news-card-image {
        height: 250px;
    }
    
    .news-card.large-card .news-card-title {
        font-size: 18px;
    }
    
    .category-header {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        margin-top: 30px;
    }
    
    .category-block {
        padding: 40px 0;
    }
    
    .category-header {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .news-grid,
    .news-grid-layout1,
    .news-grid-layout2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Tüm kartlar için grid-column reset */
    .news-grid-layout1 .news-card,
    .news-grid-layout2 .news-card {
        grid-column: auto;
    }
    
    /* 768px altında layout'lar 2 sütun - Sadece ilk kart full width */
    .news-grid-layout1 .news-card:nth-child(1) {
        grid-column: 1 / -1;
    }
    
    .news-grid-layout2 .news-card:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    .news-card-image {
        height: 160px;
    }
    
    .news-card.large-card .news-card-image {
        height: 200px;
    }
    
    .news-card.large-card .news-card-title {
        font-size: 16px;
    }
    
    .news-card-content {
        padding: 12px;
    }
    
    .news-card-title {
        font-size: 14px;
        height: auto;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .category-block {
        padding: 30px 0;
    }
    
    .category-header {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .news-grid,
    .news-grid-layout1,
    .news-grid-layout2 {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* 480px altında tüm kartlar tek sütun */
    .news-grid-layout1 .news-card,
    .news-grid-layout2 .news-card {
        grid-column: 1;
        display: block !important;
        visibility: visible !important;
    }
    
    .news-card-image {
        height: 180px;
    }
    
    .news-card.large-card .news-card-image {
        height: 220px;
    }
    
    .news-card.large-card .news-card-title {
        font-size: 16px;
    }
    
    .news-card-title {
        font-size: 15px;
        height: auto;
        min-height: 42px;
    }
}

/* Ana sayfa için ek stiller */
.homepage-content {
    padding: 20px 0;
}

.content-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

.content-placeholder h3 {
    color: #495057;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .homepage-content {
        padding: 15px 0;
    }
}

/* İstatistik Bölümü Stilleri */
.statistics-section {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.statistics-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    z-index: 10;
}

.statistics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 20px;
    gap: 40px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
    border-radius: 0 0 4px 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    line-height: 1.3;
}

/* Responsive Tasarım - İstatistikler */
@media (max-width: 768px) {
    .statistics-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .statistics-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .statistics-container {
        padding: 25px 10px;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

/* İçerik Slider Stilleri */
.content-slider-section {
    margin: 40px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.content-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
    border-radius: 0 0 4px 4px;
    z-index: 1;
}

.content-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.content-slider-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.content-slider-controls {
    display: flex;
    gap: 10px;
}

.content-slider-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 169, 20, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #5a6c7d;
    backdrop-filter: blur(10px);
}

.content-slider-btn:hover {
    border-color: #FFA914;
    background: rgba(255, 169, 20, 0.1);
    color: #FF8F00;
    transform: scale(1.1);
}

.content-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.content-slider-loading {
    text-align: center;
    padding: 60px 20px;
    color: #5a6c7d;
}

.content-slider-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FFA914;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.content-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.content-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
    padding: 0 10px;
}

.content-card {
    flex: 0 0 calc(25% - 15px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 2px solid rgba(255, 169, 20, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 169, 20, 0.2);
    border-color: rgba(255, 169, 20, 0.4);
    text-decoration: none;
    color: inherit;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover::before {
    opacity: 1;
}

.content-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    transition: transform 0.3s ease;
}

.content-card:hover .content-card-image {
    transform: scale(1.05);
}

.content-card-content {
    padding: 20px;
}

.content-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
}

.content-card:hover .content-card-title {
    color: #FF8F00;
}

.content-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.content-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 169, 20, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content-indicator.active {
    background: #FFA914;
    transform: scale(1.3);
    border-color: rgba(255, 169, 20, 0.2);
}

.content-indicator:hover {
    background: rgba(255, 169, 20, 0.6);
}

/* Responsive Tasarım - Content Slider */
@media (max-width: 1200px) {
    .content-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .content-slider-section {
        margin: 30px 0;
        padding: 30px 15px;
    }
    
    .content-slider-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .content-slider-title {
        font-size: 24px;
        text-align: center;
    }
    
    .content-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .content-card-image {
        height: 150px;
    }
    
    .content-card-content {
        padding: 15px;
    }
    
    .content-card-title {
        font-size: 15px;
        min-height: 50px;
    }
    
    .content-slider-track {
        gap: 15px;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .content-slider-section {
        padding: 25px 10px;
    }
    
    .content-slider-title {
        font-size: 22px;
    }
    
    .content-card {
        flex: 0 0 calc(100% - 10px);
    }
    
    .content-card-image {
        height: 200px;
    }
    
    .content-card-title {
        font-size: 16px;
        min-height: 60px;
    }
    
    .content-slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* Ana Sayfa Alt Butonları */
.daily-actions-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 20px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.daily-actions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
    border-radius: 0 0 4px 4px;
    z-index: 1;
}

.daily-actions-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.daily-actions-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.daily-actions-subtitle {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.daily-actions-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.daily-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    justify-content: center;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.daily-action-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
    border-radius: 0 0 4px 4px;
    transition: all 0.3s ease;
}

.daily-action-btn:hover:before {
    width: 80%;
}

.daily-info-btn {
    border-color: rgba(255, 169, 20, 0.3);
}

.daily-info-btn:hover {
    background: rgba(255, 169, 20, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 169, 20, 0.2);
    border-color: #FFA914;
    color: #FF8F00;
}

.daily-horoscope-btn {
    border-color: rgba(92, 107, 192, 0.3);
}

.daily-horoscope-btn:hover {
    background: rgba(92, 107, 192, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 107, 192, 0.2);
    border-color: #5c6bc0;
    color: #3f51b5;
}

.daily-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.daily-action-btn i {
    font-size: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.daily-action-btn:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.daily-action-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Burç Seçimi Stilleri */
.horoscope-selection {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 169, 20, 0.2);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.horoscope-header {
    text-align: center;
    margin-bottom: 30px;
}

.horoscope-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.horoscope-subtitle {
    font-size: 14px;
    color: #5a6c7d;
    margin: 0;
    opacity: 0.9;
}

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .horoscope-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .horoscope-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .horoscope-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.horoscope-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 169, 20, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.horoscope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 169, 20, 0.2);
    border-color: #FFA914;
    background: rgba(255, 169, 20, 0.05);
}

.horoscope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.horoscope-card:hover::before {
    opacity: 1;
}

.horoscope-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    border: 3px solid rgba(255, 169, 20, 0.3);
    transition: all 0.3s ease;
}

.horoscope-card:hover .horoscope-icon {
    border-color: #FFA914;
    transform: scale(1.05);
}

.horoscope-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.horoscope-dates {
    font-size: 12px;
    color: #5a6c7d;
    margin: 0;
    opacity: 0.8;
    line-height: 1.3;
}

/* Modal Stiller */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #FFA914;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FFA914, #FF8F00);
}

.modal-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.modal-close {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(92, 107, 192, 0.3);
    color: #5a6c7d;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(92, 107, 192, 0.1);
    border-color: #5c6bc0;
    color: #3f51b5;
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.modal-body h1, .modal-body h2, .modal-body h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body ul, .modal-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-body li {
    margin-bottom: 8px;
}

/* Responsive Tasarım - Butonlar ve Modal */
@media (max-width: 768px) {
    .daily-actions-section {
        padding: 40px 15px;
    }
    
    .daily-actions-header {
        margin-bottom: 30px;
    }
    
    .daily-actions-title {
        font-size: 28px;
    }
    
    .daily-actions-subtitle {
        font-size: 15px;
    }
    
    .daily-actions-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .daily-action-btn {
        min-width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .horoscope-selection {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .horoscope-title {
        font-size: 22px;
    }
    
    .horoscope-grid {
        gap: 15px;
    }
    
    .horoscope-card {
        padding: 15px 12px;
    }
    
    .horoscope-icon {
        width: 50px;
        height: 50px;
    }
    
    .horoscope-name {
        font-size: 15px;
    }
    
    .modal-container {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .daily-actions-section {
        padding: 30px 10px;
    }
    
    .daily-actions-header {
        margin-bottom: 25px;
    }
    
    .daily-actions-title {
        font-size: 24px;
    }
    
    .daily-actions-subtitle {
        font-size: 14px;
    }
    
    .daily-action-btn {
        padding: 14px 20px;
        font-size: 14px;
        min-width: 100%;
    }
    
    .daily-action-btn i {
        font-size: 18px;
    }
    
    .horoscope-selection {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .horoscope-title {
        font-size: 20px;
    }
    
    .horoscope-grid {
        gap: 12px;
    }
    
    .horoscope-card {
        padding: 12px 10px;
    }
    
    .horoscope-icon {
        width: 45px;
        height: 45px;
    }
    
    .horoscope-name {
        font-size: 14px;
    }
    
    .horoscope-dates {
        font-size: 11px;
    }
    
    .modal-container {
        width: 98%;
        max-height: 90vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 18px 20px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 20px 18px;
        font-size: 14px;
    }
}