:root {
    --main-dark-blue: #0a1929;
    --secondary-blue: #0f2942;
    --accent-blue: #1565c0;
    --light-blue: #2979ff;
    --dark-gray: #121212;
    --text-color: #e0e0e0;
    --card-bg: #0d2237;
    --hover-color: #1976d2;
    --border-radius: 4px;
    --card-border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--main-dark-blue);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section .container {
    margin: 0;
}

/* Header Styles */
.header {
    background-color: rgba(10, 25, 41, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--light-blue);
}

.nav-link i {
    font-size: 16px;
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--secondary-blue);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
}

.platform-item:hover {
    background-color: var(--card-bg);
}

.platform-item img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 20px;
    border: none;
    background-color: var(--secondary-blue);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: background-color 0.3s;
}

.search-input:focus {
    outline: none;
    background-color: var(--card-bg);
}

.search-input:focus + .search-dropdown {
    display: block;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.7;
    font-size: 14px;
    pointer-events: none;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--secondary-blue);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.search-suggestion {
    padding: 10px 15px;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.search-suggestion:hover {
    background-color: var(--card-bg);
}

.suggestion-image {
    width: 40px;
    height: 60px;
    border-radius: 3px;
    object-fit: cover;
}

.suggestion-info {
    flex: 1;
}

.suggestion-title {
    font-weight: 500;
    margin-bottom: 2px;
}

.suggestion-meta {
    font-size: 12px;
    color: rgba(224, 224, 224, 0.7);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: var(--hover-color);
}

.search-button:disabled {
    background-color: #888;
    cursor: not-allowed;
    opacity: 0.5;
}

.search-button i {
    font-size: 12px;
}

/* Tam ekran mobil arama */
.fullscreen-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-dark-blue);
    z-index: 2000;
    padding: 20px;
    flex-direction: column;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.fullscreen-search-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.fullscreen-search-back {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.fullscreen-search-input {
    flex: 1;
    background-color: var(--secondary-blue);
    border: none;
    border-radius: 20px;
    padding: 12px 15px 12px 40px;
    color: var(--text-color);
    font-size: 16px;
}

.fullscreen-search-input:focus {
    outline: none;
    background-color: var(--card-bg);
}

.fullscreen-search-icon {
    position: absolute;
    left: 65px;
    top: 34px;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 16px;
}

.fullscreen-search-button {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    margin-left: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.fullscreen-search-button:disabled {
    background-color: #888;
    cursor: not-allowed;
    opacity: 0.5;
}

.fullscreen-search-button:hover:not(:disabled) {
    background-color: var(--hover-color);
}

.fullscreen-results {
    margin-top: 20px;
    flex: 1;
    overflow-y: auto;
}

.fullscreen-result-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.2s;
}

.fullscreen-result-item:hover {
    background-color: rgba(21, 101, 192, 0.1);
}

.fullscreen-result-image {
    width: 60px;
    height: 90px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.fullscreen-result-info {
    flex: 1;
}

.fullscreen-result-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.fullscreen-result-meta {
    font-size: 13px;
    color: rgba(224, 224, 224, 0.7);
    margin-bottom: 5px;
}

.fullscreen-result-desc {
    font-size: 12px;
    color: rgba(224, 224, 224, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/* Banner Styles */
.header-area {
    background-color: var(--main-dark-blue);
    padding: 20px 0;
    margin-bottom: 20px;
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-link {
    display: block;
    text-decoration: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-image {
    width: 100%;
    height: auto;
    max-width: 528px;
    display: block;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.banner-link:hover .banner-image {
    transform: scale(1.02);
}

/* Banner responsive styles */
@media (max-width: 768px) {
    .header-area {
        padding: 15px 0;
        margin-bottom: 15px;
    }
    
    .banner-container {
        padding: 0 15px;
    }
    
    .banner-image {
        max-width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .header-area {
        padding: 10px 0;
        margin-bottom: 10px;
    }
    
    .banner-container {
        padding: 0 10px;
    }
    
    .banner-image {
        border-radius: 6px;
    }
}

/* Content Styles */
.hero-section {
    padding: 40px 0;
    background-color: var(--main-dark-blue);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

/* Hero Banner Styles */
.hero-banner {
    flex-shrink: 0;
    max-width: 300px;
    width: 100%;
    position: sticky;
    top: 80px; /* Header yüksekliği + biraz boşluk */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-banner img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* 1280px altında banner gap'i azalt */
@media (max-width: 1336px) {
    .hero-section {
        gap: 10px; /* 20px'den 10px'e düşür */
    }
}

.hero-banner:hover img {
    transform: scale(1.02);
}

.hero-banner a {
    display: block;
    text-decoration: none;
}

/* Hero section container ayarı */
.hero-section .container {
    max-width: 1000px; /* 1400px'den düşürüldü */
    flex: 1;
    min-width: 0; /* Flex item'ın küçülebilmesi için */
    position: relative; /* Scroll butonları için referans nokta */
}

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

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent-blue);
    border-radius: 2px;
}

.see-all-link {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.see-all-link:hover {
    color: var(--hover-color);
}

.content-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

/* Ana sayfa için yatay kaydırılabilir içerikler */
.hero-section .content-row {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    margin-bottom: 50px;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS için akıcı kaydırma */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) var(--secondary-blue);
    cursor: grab;
    min-width: 0; /* Flex container'ın daralabilmesi için */
    user-select: none; /* Kaydırma sırasında metin seçimini engelle */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-section .content-row:active {
    cursor: grabbing;
}

/* Ana sayfa scrollbar stilleri */
.hero-section .content-row::-webkit-scrollbar {
    height: 8px;
}

.hero-section .content-row::-webkit-scrollbar-track {
    background: var(--secondary-blue);
    border-radius: 4px;
}

.hero-section .content-row::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
    transition: background 0.3s;
}

.hero-section .content-row::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

/* Content row wrapper için stil */
.content-row-wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 0 30px;
}

/* Content scroll butonları */
.content-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(13, 34, 55, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    opacity: 0.8;
    flex-shrink: 0; /* Butonların küçülmesini engelle */
}

.content-scroll-btn:hover {
    background-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    color: white;
    box-shadow: 0 5px 15px rgba(41, 121, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.content-scroll-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.content-scroll-btn:hover i {
    transform: scale(1.2);
}

.content-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.content-scroll-left {
    left: 0;
}

.content-scroll-right {
    right: 0;
}

.content-scroll-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: rgba(13, 34, 55, 0.5);
}

.content-scroll-btn.disabled:hover {
    background-color: rgba(13, 34, 55, 0.5);
    transform: translateY(-50%);
    opacity: 0.3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.content-card {
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    cursor: pointer;
}

/* Ana sayfa için content-card flex ayarları */
.hero-section .content-card {
    flex: 0 0 200px; /* Sabit genişlik */
    min-width: 200px;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-blue);
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: var(--border-radius);
}

.card-rating {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
}

.card-rating i {
    color: #ffc107;
}

.card-info {
    padding: 12px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(224, 224, 224, 0.7);
}

.card-meta span {
    text-align: right;
    color: var(--text-color);
}

.genre-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 12px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 15px;
    margin-bottom: 0;
    cursor: grab;
    position: relative;
    z-index: 1;
}

.genre-list:active {
    cursor: grabbing;
}

.genre-list::-webkit-scrollbar {
    display: none;
}

.genre-chip {
    background-color: var(--secondary-blue);
    color: var(--text-color);
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.genre-chip:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Masaüstü için türler bölümü optimize edilmiş stil */
@media (min-width: 993px) {
    .genre-section {
        margin: 20px 0 50px;
    }
}

/* Mobil için türler bölümü optimize edilmiş stil */
@media (max-width: 992px) {
    .genre-section {
        margin: 10px 0 30px;
    }
    
    .genre-chip {
        padding: 8px 14px;
        font-size: 13px;
    }

    .content-row-wrapper {
        padding: 0 5px;
    }
}

/* Mobil Platformlar Bölümü */
.mobile-platforms {
    display: none;
    margin-bottom: 40px;
    position: relative;
}

/* Kaydırma ipucu animasyonu */
.mobile-platforms::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(13, 34, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    animation: subtleBounceFade 2.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: opacity 0.4s ease;
}

/* Kaydırma göstergesini JavaScript ile gizleyeceğiz */
.mobile-platforms.scrolled::after {
    opacity: 0 !important; /* Animasyonu ezer */
    animation: none;
    visibility: hidden;
}

@keyframes subtleBounceFade {
    0%, 100% { opacity: 0.8; transform: translateY(-50%) translateX(0); }
    50% { opacity: 0.5; transform: translateY(-50%) translateX(3px); }
}

.mobile-platforms-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px 0;
    margin-bottom: 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.mobile-platforms-grid:active {
    cursor: grabbing;
}

.mobile-platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s;
}

.mobile-platform-item:hover {
    transform: scale(1.05);
}

.mobile-platform-item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mobile-platform-item span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.category-section {
    padding: 40px 0;
    background-color: var(--secondary-blue);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-gray);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-logo img {
    height: 35px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(224, 224, 224, 0.7);
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--secondary-blue);
    color: var(--text-color);
    border-radius: 50%;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--accent-blue);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(224, 224, 224, 0.5);
}

/* Media Queries */
/* Çok büyük ekranlar için özel ayar */
@media (min-width: 1600px) {
    .hero-banner {
        max-width: 350px;
    }
    
    .hero-section .container,
    .stats-section .container,
    .announcement-section .container, .list-page {
        max-width: 1100px;
    }
}

@media (max-width: 1200px) {
    /* Banner'ları gizle ve container'ı normale döndür */
    .hero-banner {
        display: none;
    }
    
    .hero-section,
    .stats-section,
    .announcement-section {
        display: block; /* Flex'ten normale dön */
    }
    
    .hero-section .container,
    .stats-section .container,
    .announcement-section .container {
        max-width: 100%; /* Tam genişlik kullan */
        padding: 0 20px; /* Yatay padding ekle */
    }
}

/* 1200px - 1400px arası için özel ayar */
@media (min-width: 1201px) and (max-width: 1400px) {
    .hero-banner {
        max-width: 250px; /* Daha küçük banner'lar */
    }
    
    .hero-section .container,
    .stats-section .container,
    .announcement-section .container {
        max-width: 900px; /* Container'ı biraz küçült */
    }
}

/* 1280px - 1336px arası özel ayar (HD ready ekranlar için) */
@media (min-width: 1280px) and (max-width: 1336px) {
    .hero-banner {
        max-width: 200px; /* Daha da küçük banner'lar */
    }
    
    .hero-banner img {
        max-height: 600px; /* Yüksekliği de sınırla */
    }
    
    .hero-section .container,
    .stats-section .container,
    .announcement-section .container {
        max-width: 850px; /* Container'ı daha da küçült */
    }
}

/* Düşük çözünürlükler için scroll button ayarları */
@media (max-width: 1400px) and (min-width: 993px) {
    .content-row-wrapper {
        padding: 0 20px; /* Daha az padding */
    }
    
    .content-scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .content-scroll-btn i {
        font-size: 14px;
    }
}

/* 1366x768 ve benzeri çözünürlükler için */
@media (max-width: 1366px) and (min-width: 993px) {
    .content-row-wrapper {
        padding: 0 15px; /* Minimum padding */
    }
    
    .content-scroll-btn {
        width: 32px;
        height: 32px;
        opacity: 0.9;
    }
    
    /* Container'ın yanlarına daha fazla boşluk */
    .hero-section .container {
        padding: 0 25px;
    }
}

/* 1280x720 ve benzeri daha düşük çözünürlükler için */
@media (max-width: 1280px) and (min-width: 993px) {
    .content-row-wrapper {
        padding: 0 12px; /* Çok minimal padding */
    }
    
    .content-scroll-btn {
        width: 30px;
        height: 30px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Daha az gölge */
    }
    
    .content-scroll-btn i {
        font-size: 12px;
    }
    
    .content-scroll-btn:hover {
        transform: translateY(-50%) scale(1.05); /* Daha az büyüme */
    }
}

@media (max-width: 992px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        display: grid;
        align-items: center;
    }
    
    /* Mobilde scroll butonlarını gizle */
    .content-scroll-btn {
        display: none;
    }

    /* Mobilde platformları göster */
    .mobile-platforms {
        display: block;
    }

    .nav-actions {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 71px);
        background-color: var(--main-dark-blue);
        flex-direction: column;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        display: none;
        box-shadow: none;
        background-color: rgba(10, 25, 41, 0.8);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .platform-item {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .platform-item:hover {
        background-color: var(--secondary-blue);
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1;
    }

    .search-bar {
        width: 160px;
        height: 38px;
        position: relative;
        transition: all 0.3s;
    }

    .search-input {
        width: 160px;
        height: 38px;
        border-radius: 20px;
        padding: 0 40px 0 38px;
        background-color: var(--secondary-blue);
        position: absolute;
        right: 0;
        top: 0;
        transition: all 0.3s;
        text-align: left;
    }

    .search-input:focus {
        width: 100%;
    }

    .search-dropdown {
        position: absolute;
        width: 250px;
        right: 0;
        left: auto;
    }

    .search-icon {
        left: 11px;
        z-index: 2;
        font-size: 16px;
        opacity: 1;
        color: white;
        pointer-events: none;
        transition: left 0.3s;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-row {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .hero-section .content-row {
        gap: 0; /* Gap'i kaldır */
        padding: 8px 0;
        scrollbar-width: none; /* Firefox için scrollbar'ı gizle */
        -ms-overflow-style: none; /* IE için scrollbar'ı gizle */
    }
    
    /* Webkit tarayıcılar için scrollbar'ı gizle */
    .hero-section .content-row::-webkit-scrollbar {
        display: none;
    }
    
    .hero-section .content-card {
        flex: 0 0 160px;
        min-width: 160px;
        margin-right: 15px; /* Gap yerine margin kullan */
    }
    
    .hero-section .content-card:last-child {
        margin-right: 0; /* Son öğede margin olmasın */
    }

    .card-image {
        height: 200px;
    }

    .section-title {
        font-size: 18px;
    }
    
    /* Daha küçük ekranlarda platform item boyutlarını güncelle */
    .mobile-platform-item img {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 576px) {
    .header-inner {
        padding: 10px 0;
    }

    .logo img {
        height: 30px;
    }

    .search-bar,
    .search-input {
        width: 195px;
    }

    .content-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section .content-row {
        gap: 0; /* Gap'i kaldır */
    }
    
    .hero-section .content-card {
        flex: 0 0 140px;
        min-width: 140px;
        margin-right: 10px; /* Daha küçük margin */
    }
    
    .hero-section .content-card:last-child {
        margin-right: 0; /* Son öğede margin olmasın */
    }

    .mobile-platform-item {
        min-width: 65px;
        margin-right: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Kaydırılabilir Türler Bölümü */
.genres-container {
    position: relative;
    margin-bottom: 40px;
    padding: 0 40px;
    overflow: hidden;
}

.genre-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(13, 34, 55, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    opacity: 0.8;
}

.genre-scroll-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.genre-scroll-btn:hover {
    background-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
    color: white;
    box-shadow: 0 3px 8px rgba(41, 121, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.genre-scroll-btn:hover i {
    transform: scale(1.1);
}

.genre-scroll-left {
    left: 5px;
    background-color: rgba(13, 34, 55, 0.85);
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
}
.genre-scroll-left:hover {
    box-shadow: -4px 0 15px rgba(41, 121, 255, 0.3);
}

.genre-scroll-right {
    right: 5px;
    background-color: rgba(13, 34, 55, 0.85);
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}
.genre-scroll-right:hover {
    box-shadow: 4px 0 15px rgba(41, 121, 255, 0.3);
}

.genre-scroll-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: rgba(13, 34, 55, 0.5);
    transform: translateY(-50%) scale(0.95);
    box-shadow: none;
    border-color: rgba(255,255,255,0.05);
}

.genre-scroll-btn.disabled:hover {
    opacity: 0.3;
    background-color: rgba(13, 34, 55, 0.5);
    transform: translateY(-50%) scale(0.95);
    box-shadow: none;
}

.genre-scroll-btn.disabled i {
    opacity: 0.6;
}

/* Masaüstü dışındaki ekranlarda kaydırma butonlarını gizle */
@media (max-width: 992px) {
    .genres-container {
        padding: 0 40px; /* Mobilde de butonlar için boşluk */
    }
    
    .genre-list {
        padding: 10px 0;
        gap: 10px;
        /* Aşağıdaki satırları kaldırarak yatay kaydırmayı aktif ettim */
        /* justify-content: center; */
        /* flex-wrap: wrap; */
        /* white-space: normal; */
    }
    
    .genre-chip {
        padding: 10px 15px;
        font-size: 13px;
        /* flex-grow: 0; -> Bu zaten .genre-chip'in ana stilinde */
    }
    
    /* Aşağıdaki kuralı kaldırarak butonları mobilde görünür hale getirdim */
    /*
    .genre-scroll-btn {
        display: none;
    }
    */
}

/* Masaüstü için türler bölümü optimize edilmiş stil */

/* İstatistik Bölümü */
.stats-section {
    background-color: var(--main-dark-blue);
    padding: 10px 0 20px;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

/* Stats section container ayarı - hero section ile aynı */
.stats-section .container {
    flex: 1;
    min-width: 0;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.stats-update-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-color);
}

.update-message {
    display: flex;
    align-items: center;
    gap: 5px;
}

.update-message i {
    color: var(--light-blue);
    font-size: 12px;
    animation: rotate 2s linear infinite;
}

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

.update-date {
    background-color: rgba(21, 101, 192, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--light-blue);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 12px;
    background-color: var(--card-bg);
    border-radius: var(--card-border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
    background-color: var(--secondary-blue);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(21, 101, 192, 0.15);
    border-radius: 10px;
    margin-right: 12px;
    flex-shrink: 0;
}

.stat-item i {
    font-size: 18px;
    color: var(--light-blue);
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-count {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: rgba(224, 224, 224, 0.8);
    font-weight: 500;
}

/* Mobil için istatistik bölümü */
@media (max-width: 768px) {
    .stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .stats-update-info {
        flex-wrap: wrap;
    }
    
    .stats-container {
        flex-direction: row; /* Mobilde yan yana olsun */
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .stat-item {
        flex: 0 0 calc(33.33% - 7px);
        min-width: 95px;
        padding: 10px;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .stat-item i {
        font-size: 15px;
    }
    
    .stat-count {
        font-size: 15px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 10px 0 15px;
    }
    
    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(33.33% - 7px);
        min-width: 90px;
        padding: 8px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }
    
    .stat-item i {
        font-size: 14px;
    }
    
    .stat-count {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* Duyuru Bölümü */
.announcement-section {
    background-color: var(--accent-blue);
    padding: 14px 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Announcement section container ayarı - hero section ile aynı */
.announcement-section .container {
    max-width: 1000px;
    flex: 1;
    min-width: 0;
}

.announcement-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.announcement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.announcement-icon i {
    font-size: 18px;
    color: white;
}

.announcement-content {
    flex: 1;
}

.announcement-content p {
    color: white;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .announcement-container {
        gap: 10px;
    }
    
    .announcement-icon {
        min-width: 32px;
        height: 32px;
    }
    
    .announcement-icon i {
        font-size: 14px;
    }
    
    .announcement-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .announcement-section {
        padding: 10px 0;
    }
    
    .announcement-icon {
        min-width: 28px;
        height: 28px;
    }
    
    .announcement-content p {
        font-size: 13px;
    }
}