/* Genel Stil */
:root {
    --primary-color: #ff0000; /* Neon kırmızı */
    --secondary-color: #0c0c0c; /* Koyu siyah */
    --text-color: #f1faee;
    --dark-bg: #000000; /* Saf siyah */
    --card-bg: #0c0c0c; /* Koyu siyah */
    --hover-color: #cc0000; /* Koyu neon kırmızı */
}

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Stili */
header {
    background-color: var(--secondary-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    margin-right: 10px;
}

.logo h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.categories {
    display: flex;
    gap: 10px;
}

.categories li a {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
}

.categories li a i {
    margin-right: 8px;
    font-size: 1rem;
}

.categories li a:hover,
.categories li a.active {
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    min-width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border-radius: 4px;
    right: 0;
    width: max-content;
}

.dropdown-content a {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.dropdown-content a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 14px;
}

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

.dropdown-content a:hover {
    background-color: var(--primary-color);
}

/* Mobil menü için ayarlar */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        width: 100%;
    }
    
    .dropdown-content a {
        padding: 8px 12px;
    }
}

/* Ana Sayfa Hero */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/images/acs.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 5%;
    text-align: center;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-text {
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.sub-heading {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.hero-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.hero-btn:hover {
    background-color: var(--hover-color);
}

/* Bölüm Başlıkları */
.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.5px;
}

.section-line {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Oyun Kartları Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.large-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
}

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

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

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

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.card-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: var(--hover-color);
}

.game-card-info {
    padding: 15px;
    position: relative;
}

.game-card-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    letter-spacing: -0.5px;
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.game-category {
    display: inline-block;
    padding: 2px 8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 10px;
}

.download-count {
    font-size: 0.85rem;
    color: #aaa;
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Bölüm Alt Bağlantıları */
.section-footer {
    text-align: center;
    margin: 20px 0 50px;
}

.view-all-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: var(--primary-color);
}

.view-all-btn i {
    margin-left: 5px;
}

/* Ana Sayfa Bölümleri */
.homepage-section {
    padding: 60px 5%;
    text-align: center;
}

/* E-bülten Bölümü */
.newsletter-section {
    background-color: var(--primary-color);
    padding: 50px 5%;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Russo One', sans-serif;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #3d4654;
}

/* Footer Stili */
footer {
    background-color: var(--secondary-color);
    padding: 60px 5% 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Archivo', sans-serif;
}

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

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

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    background-color: #3d4654;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.social-media a:hover {
    background-color: var(--primary-color);
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d4654;
    font-size: 0.9rem;
    color: #aaa;
}

/* Sayfa Başlıkları */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Russo One', sans-serif;
}

/* Oyunlar Listeleme Sayfası */
.games-listing-container {
    padding: 20px 5% 60px;
    display: flex;
    gap: 30px;
}

.games-filter {
    width: 250px;
    flex-shrink: 0;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
}

.games-list {
    flex-grow: 1;
}

.filter-section {
    margin-top: 20px;
}

.filter-section h4 {
    border-bottom: 1px solid #3d4654;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.filter-categories li {
    margin-bottom: 10px;
}

.filter-categories a {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
}

.filter-categories a:hover,
.filter-categories a.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.no-games-message {
    text-align: center;
    padding: 50px;
    font-size: 1.1rem;
    color: #aaa;
}

/* Oyun Detay Sayfası */
.game-details-container {
    padding: 0 5% 60px;
    text-align: center;
}

.game-details-header {
    margin-bottom: 30px;
}

.game-details-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.game-details-title h1 {
    font-size: 3rem;
    color: var(--primary-color);
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.game-version-tag {
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
}

.game-date {
    font-size: 0.8rem;
    color: #aaa;
    margin: 5px 0 15px;
    display: block;
    font-weight: 400;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.facebook-share {
    background-color: #3b5998;
}

.twitter-share {
    background-color: #1da1f2;
}

.instagram-share {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.game-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.game-category {
    background-color: var(--primary-color);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.game-details-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-details-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.game-details-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.game-details-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.game-details-info {
    width: 100%;
    text-align: left;
}

.game-details-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
}

.game-description, .game-system-requirements, .turkish-patches, .download-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
}

.download-section {
    text-align: center;
}

.download-btn, .turkce-yama-btn, .alt-download-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    padding: 15px;
    text-align: center;
}

.requirements-list {
    white-space: pre-line;
}

.patches-list {
    margin-top: 15px;
}

.patches-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #3d4654;
}

.patches-list li:last-child {
    border-bottom: none;
}

.patch-version {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: 600;
}

.download-patch-btn {
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.download-patch-btn:hover {
    background-color: #218838;
}

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

.similar-games-section h2 {
    margin-bottom: 20px;
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Yorum Bölümü */
.game-comments {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comments-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    text-align: left;
}

.comment-form {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1px solid #3d4654;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

.form-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-inputs input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1px solid #3d4654;
    font-family: 'Archivo', sans-serif;
}

.comment-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
}

.comment-form button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.3);
}

.comments-list {
    margin-top: 30px;
    text-align: left;
}

.comment {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.user-name {
    font-weight: 600;
}

.comment-date {
    color: #aaa;
    font-size: 0.9rem;
}

/* Türkçe Yamalar Sayfası */
.patch-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.patch-game {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.patch-description {
    margin-bottom: 15px;
}

.patch-actions {
    display: flex;
    gap: 15px;
}

.view-game-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.view-game-btn:hover {
    background-color: #3d4654;
}

/* Hamburger Menü (Mobil) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobil Uyumlu Tasarım */
@media (max-width: 992px) {
    .games-listing-container {
        flex-direction: column;
    }
    
    .games-filter {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .game-details-main {
        flex-direction: column;
    }
    
    .game-details-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-section {
        padding: 60px 5%;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--secondary-color);
        padding: 20px;
        transition: left 0.3s ease;
    }
    
    nav.active {
        left: 0;
    }
    
    .categories {
        flex-direction: column;
        gap: 5px;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 15px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .similar-games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }

    /* Footer düzenlemesi */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        width: 100%;
        border-radius: 4px;
        padding: 12px 20px;
    }

    .form-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-links {
        grid-template-columns: 1fr 1fr;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }
    
    .turkce-yama-btn {
        width: 100%;
    }
    
    .alt-download-btn {
        width: 100%;
    }
    
    .hero-section {
        padding: 40px 5%;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .sub-heading {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 40px 5%;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .sub-heading {
        font-size: 1.2rem;
    }
    
    .game-details-title h1 {
        font-size: 2rem;
    }
    
    .patch-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .view-game-btn, 
    .download-patch-btn {
        display: block;
        text-align: center;
    }

    .download-links {
        grid-template-columns: 1fr;
    }
}

/* Alternatif indirme butonları */
.alternative-downloads {
    margin-top: 25px;
    text-align: center;
}

.alternative-downloads h3 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.alt-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: white;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

.alt-download-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.alt-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* İndirme butonları için özel renkler */
.gdrive-btn {
    background-color: #4285F4;
}

.mediafire-btn {
    background-color: #0077FF;
}

.mega-btn {
    background-color: #D9272E;
}

.torrent-btn {
    background-color: #00853E;
}

.turkce-yama-btn {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: white;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.turkce-yama-btn i {
    margin-right: 10px;
}

.turkce-yama-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* Mobil uyumluluk için ek düzenlemeler */
@media (max-width: 480px) {
    .download-links {
        grid-template-columns: 1fr;
    }
}

/* İndirme Butonları */
.download-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn:hover, .turkce-yama-btn:hover, .alt-download-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.download-btn i, .turkce-yama-btn i, .alt-download-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Alternatif İndirme Linkleri */
.alternative-downloads {
    margin-top: 25px;
    text-align: center;
}

.alternative-downloads h3 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Formlar için ortak kenar efekti */
.comment-form textarea:focus, 
.form-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.3);
}

/* Oyun İçi Görseller Bölümü */
.game-screenshots {
    margin: 40px 0;
    width: 100%;
}

.game-screenshots h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Archivo', sans-serif;
    text-align: center;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .game-details-title h1 {
        font-size: 2.2rem;
    }
}

/* Kategori Başlığı */
.page-header, .section-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.page-header h1, .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Kategori Sayfası */
.kategori-baslik {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
}

.kategori-baslik h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Ana Ekrana Dön Butonu */
.back-to-home {
    margin-top: 15px;
    text-align: center;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
}

.back-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    color: white;
}

.back-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .back-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Hızlı İndirme Butonu - EN SON SÜRÜM stilinde */
.quick-download-section {
    margin: 20px 0;
    text-align: center;
}

.quick-download-version-btn {
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-download-version-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.quick-download-version-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .quick-download-version-btn {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}

/* Eski buton stilleri - artık kullanılmıyor ama yedekte kalabilir */
.quick-download-btn, .green-download-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: #28a745 !important;
    color: white !important;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
    border: none;
    cursor: pointer;
}

.quick-download-btn:hover, .green-download-btn:hover {
    background-color: #218838 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(40, 167, 69, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.quick-download-btn i, .green-download-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: white !important;
}

@media (max-width: 768px) {
    .quick-download-btn, .green-download-btn {
        padding: 10px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
} 