/* --- Temel Ayarlar ve Renk Paleti --- */
:root {
    --primary-color: #00d4ff; /* Neon Mavi */
    --secondary-color: #0a0a0a; /* Çok koyu arka plan */
    --card-bg: #161616; /* Kart arka planı */
    --text-color: #ffffff;
    --accent-color: #ff0055; /* Buton vurgusu */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

a { text-decoration: none; color: white; transition: 0.3s; }
ul { list-style: none; }

/* --- Header / Menü --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul { display: flex; gap: 30px; }
nav ul li a:hover { color: var(--primary-color); }

/* --- Hero Section (Ana Görsel) --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Arka plan görselini buradan değiştirebilirsiniz */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #ddd;
}

.btn {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.btn:hover {
    background-color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* --- Oyunlar Bölümü --- */
.games-section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.game-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.game-image {
    width: 100%;
    height: 200px;
    background-color: #333;
    object-fit: cover;
}

.game-info { padding: 25px; }
.game-info h3 { margin-bottom: 10px; font-size: 1.5rem; }
.game-info p { color: #aaa; margin-bottom: 20px; font-size: 0.9rem; }

.store-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

.store-btn:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* --- Hakkımızda / Footer --- */
footer {
    background-color: #000;
    padding: 50px 10%;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content h2 { color: var(--primary-color); margin-bottom: 20px; }
.social-links { margin-top: 20px; }
.social-links a { margin: 0 15px; color: #888; }
.social-links a:hover { color: white; }

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    header { flex-direction: column; gap: 15px; padding: 20px; }
    nav ul { gap: 15px; font-size: 0.9rem; }
}

/* --- Metin Sayfaları (Gizlilik Politikası vb.) --- */
.text-page-container {
    padding: 120px 20px 50px 20px; /* Header'ın altında kalmasın diye üst boşluk */
    max-width: 800px;
    margin: 0 auto; /* Ortala */
}

.text-page-container h1 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.text-page-container h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.text-page-container p, .text-page-container li {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.text-page-container ul {
    list-style: disc; /* Madde işaretleri görünsün */
    padding-left: 20px;
    margin-bottom: 20px;
}