@charset "utf-8";
/* CSS Document */
/* Genel Stil Ayarları */
body {
    font-family: 'Sarabun', sans-serif;
    color: #272559;
    background-color: #000000;
    margin: 0;
    padding: 0;
}

/* Header Ayarları */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* İçeriklerin header'ın altına düşmesini engeller */
    background-color: #272559;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.logo {
    height: 65px;
    width: auto;
}

/* Navigasyon Menüsü */
.nav-link {
    color: #1DCBF2;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #D94E81;
    text-decoration: none;
}

.nav-link.active {
    color: #D94E81;
    font-weight: 700;
}

/* Ana Sayfa Hero Bölümü */
.hero {
    margin-top: 80px; /* Header yüksekliği kadar margin */
    padding: 100px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero_header {
    font-size: 3em;
    font-weight: bold;
    color: #D94E81;
    text-shadow: 2px 2px 4px rgba(39, 37, 89, 0.9);
}

.light {
    color: #1DCBF2;
    text-shadow: 2px 2px 4px rgba(39, 222, 242, 0.7);
}

.tagline {
    color: #FFFFFF;
    font-size: 1.2em;
    margin-top: 1em;
}

/* Section Title */
.section-title {
    color: #D94E81;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Latest News Section */
.latest-news {
    padding: 60px 0;
    background-color: #000000;
}

.news-box {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.news-box:hover {
    transform: translateY(-5px);
}

.news-title {
    color: #D94E81;
    font-weight: 700;
    font-size: 1.5em;
    margin: 10px 0;
}

.news-date {
    color: #1DCBF2;
    font-size: 0.9em;
    font-style: italic;
}

.news-summary {
    color: #FFFFFF;
    margin: 15px 0;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: #111;
}

/* Blog Box Styles */
.blog-box {
    background-color: #272559;
    border-radius: 8px;
    padding: 15px;
    height: 100%;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.blog-box:hover {
    transform: translateY(-5px);
}

.blog-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-box:hover .blog-image-container img {
    transform: scale(1.05);
}

.blog-title {
    color: #D94E81;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-date {
    color: #1DCBF2;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-content {
    padding: 10px;
}

/* Games Section */
.games-section {
    padding: 60px 0;
    background-color: #000000;
}

.game-box {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.game-title {
    color: #D94E81;
    font-weight: 700;
    font-size: 1.5em;
    margin: 10px 0;
}

.game-genre {
    color: #1DCBF2;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.game-summary {
    color: #FFFFFF;
    margin: 15px 0;
}

.game-platforms {
    color: #1DCBF2;
}

/* Featured News & Games */
.featured-news-box, .featured-game-box {
    background-color: #272559;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Page Title */
.page-title {
    margin-top: 80px; /* Header yüksekliği kadar margin */
    padding: 60px 0 30px;
    background-color: #272559;
    color: #FFFFFF;
}

.page-title h1 {
    color: #D94E81;
    font-weight: 700;
}

.page-title .lead {
    color: #1DCBF2;
}

/* Contact Form */
.contact_form {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.contact_form .form-control {
    color: #1DCBF2; 
    border: 2px solid #1DCBF2;
    padding: 10px;
    border-radius: 5px;
    background-color: #272559;
}

.contact_form .form-control::placeholder {
    color: #1DCBF2;
}

.contact_form .form-control:focus {
    border-color: #1DCBF2;
    box-shadow: 0 0 5px rgba(29, 203, 242, 0.5);
}

/* Contact Section */
.footer_banner {
    background-color: #272559;
    padding: 50px 0;
}

.footer_banner h2, .footer_banner h3 {
    color: #D94E81;
}

/* Contact Options */
.contact-option {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-option:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    color: #1DCBF2;
}

.contact-option h3 {
    color: #D94E81;
}

.contact-option p {
    color: #FFFFFF;
}

/* Game Detail Pages */
.game-hero {
    margin-top: 80px; /* Header yüksekliği kadar margin */
    height: 50vh;
    position: relative;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.game-hero-title {
    color: #FFFFFF;
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.game-info {
    background-color: #000000;
    color: #FFFFFF;
}

.game-info h2 {
    color: #D94E81;
    margin-bottom: 20px;
}

.game-info h5 {
    color: #1DCBF2;
}

.game-key-details {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}

.screenshot-thumb {
    transition: transform 0.3s ease;
    border: 2px solid #272559;
}

.screenshot-thumb:hover {
    transform: scale(1.05);
    border-color: #1DCBF2;
}

/* Game Sidebar */
.game-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
}

.sidebar-widget h3 {
    color: #D94E81;
    margin-bottom: 15px;
}

.sidebar-widget p {
    color: #FFFFFF;
}

.news-item a {
    color: #FFFFFF;
    text-decoration: none;
}

.news-item a:hover h5 {
    color: #1DCBF2;
}

.news-item h5 {
    color: #D94E81;
    transition: color 0.3s ease;
}

/* News Detail Page */
.news-detail {
    margin-top: 80px; /* Header yüksekliği kadar margin */
    padding: 40px 0;
    background-color: #000000;
    color: #FFFFFF;
}

.breadcrumb {
    background-color: #272559;
}

.breadcrumb-item a {
    color: #1DCBF2;
}

.breadcrumb-item.active {
    color: #D94E81;
}

.news-main-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.news-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-sharing h4 {
    color: #D94E81;
}

.social-buttons .btn {
    margin-right: 10px;
}

/* Buton Stilleri */
.btn-primary {
    background-color: #1DCBF2;
    border-color: #1DCBF2;
    color: #272559;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0EAED3;
    border-color: #0EAED3;
    color: #FFF;
}

.btn-outline-primary {
    color: #1DCBF2;
    border-color: #1DCBF2;
}

.btn-outline-primary:hover {
    background-color: #1DCBF2;
    color: #272559;
}

.btn-secondary {
    background-color: #D94E81;
    border-color: #D94E81;
}

.btn-secondary:hover {
    background-color: #C03E71;
    border-color: #C03E71;
}

.btn-outline-secondary {
    color: #D94E81;
    border-color: #D94E81;
}

.btn-outline-secondary:hover {
    background-color: #D94E81;
    color: #FFFFFF;
}

/* Footer Stilleri */
footer {
    background-color: #272559;
    padding: 30px 0;
}

.social-links a {
    display: inline-block;
    transition: opacity 0.3s;
    margin: 0 5px;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Pagination */
.pagination .page-link {
    background-color: #272559;
    border-color: #1DCBF2;
    color: #1DCBF2;
}

.pagination .page-item.active .page-link {
    background-color: #1DCBF2;
    border-color: #1DCBF2;
    color: #272559;
}

/* Mobil Menü */
.navbar-toggler {
    border-color: #1DCBF2;
    background-color: rgba(29, 203, 242, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(29,203,242, 0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 50vh;
    }
    
    .hero_header {
        font-size: 2.5em;
    }
    
    .mobile-menu {
        background-color: #272559;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        padding: 15px;
        z-index: 999;
    }
    
    .mobile-menu .nav-item {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .game-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero_header {
        font-size: 2em;
    }
    
    .featured-news-box, .featured-game-box {
        padding: 15px;
    }
    
    .game-hero-title {
        font-size: 2em;
    }
}
/* Arka plan renk düzeltmeleri - custom.css dosyasına eklenecek */

/* Global arka plan ayarı */
body {
    background-color: #000000;
    color: #FFFFFF;
}

/* Blog section arka plan düzeltmesi */
.blog-section {
    background-color: #000000 !important;
}

/* Light background sınıfını düzelt */
.bg-light {
    background-color: #1a1a2e !important;
}

/* Page title arka plan düzeltmesi */
.page-title {
    background-color: #1a1a2e;
}

/* Breadcrumb arka plan düzeltmesi */
.breadcrumb {
    background-color: #272559;
}

/* Haber kutuları arka plan düzeltmesi */
.news-box, .game-box, .blog-box, .upcoming-game-box, .contact-option {
    background-color: #272559;
}

/* İlgili haberler bölümü düzeltmesi */
.related-news, .other-games, .upcoming-games {
    background-color: #000000 !important;
}

/* Beyaz yazıları görünür yapmak için renk ayarı */
.news-box p, .game-box p, .blog-box p, .contact-option p, .upcoming-game-box p {
    color: #FFFFFF;
}

/* Card ve box stilleri için arka plan rengi */
.card, .sidebar-widget, .featured-news-box, .featured-game-box {
    background-color: #272559;
}

/* Contact card ve iletişim formu için arka plan */
.contact-card {
    background-color: #272559;
    padding: 20px;
    border-radius: 8px;
}

/* İletişim seçenekleri arka plan rengi */
.contact-options {
    background-color: #000000 !important;
}

/* Upcoming Games Box Styles */
.upcoming-game-box {
    background-color: #272559;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.upcoming-game-box img {
    border-radius: 4px;
    margin-bottom: 15px;
}

.upcoming-game-box .release-date {
    color: #1DCBF2;
    font-size: 0.9em;
    margin-top: 15px;
}

.upcoming-game-box .game-summary {
    color: #FFFFFF;
    margin: 15px 0;
}

.upcoming-games {
    background-color: #000000;
}

/* Honeypot field - Hide from users, bots will fill it */
.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tabindex: -1 !important;
}

/* Loading spinner for blog section */
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border.text-primary {
    color: #1DCBF2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Blog loading and error states */
#medium-widget .text-muted {
    color: #999999 !important;
}

#medium-widget .alert {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
}

#medium-widget .alert-warning {
    background-color: rgba(217, 78, 129, 0.1);
    border: 1px solid #D94E81;
    color: #FFFFFF;
}