:root {
    --primary-color: #FF5964;
    --secondary-color: #35A7FF;
    --accent-color: #FFF176;
    --background-color: #F7F9FC;
    --text-color: #2C3E50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
}

header {
    background-color: var(--secondary-color);
    padding: 40px 20px;
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.app-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 15px;
    display: inline-block;
}

p.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 5px;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 0 #D0434D;
    transition: all 0.2s ease;
    margin: 20px 10px;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #D0434D;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    text-align: center;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

footer {
    background-color: #E2E8F0;
    padding: 30px 20px;
    margin-top: 100px;
    font-size: 0.9rem;
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Yasal Sayfalar (Privacy & Terms) İçin Ekstra Düzenlemeler */
.legal-body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #FAFBFD;
    text-align: left; /* Yasal metinler sola yaslı olur */
}

.legal-body h1 {
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 10px;
}

.legal-body h1.privacy-title { color: #35A7FF; }
.legal-body h1.terms-title { color: #FF5964; }

.legal-body h2 { color: #2C3E50; margin-top: 30px; }
.legal-body h3 { color: #35A7FF; margin-top: 20px; font-size: 1.1rem; }
.legal-body p, .legal-body li { font-size: 1rem; color: #4A5568; }

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    font-weight: bold;
}
.back-link.privacy-back { color: #FF5964; }
.back-link.terms-back { color: #35A7FF; }

/* Oyun Vitrini (Logo ve Ekran Görüntüleri) */
.game-showcase {
    margin: 40px 0;
    text-align: center;
}

.showcase-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 30px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütun */
    gap: 15px; /* Resimler arası boşluk */
    margin-bottom: 30px;
}

.screenshot-grid img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 3px solid white; /* Resimlerin etrafına şık bir beyaz çerçeve */
}

.screenshot-grid img:hover {
    transform: scale(1.03); /* Üzerine gelince hafif büyüme efekti */
}

/* Telefon ekranları için küçük bir dokunuş (Çok küçük ekranlarda resimler alt alta düşmesin diye) */
@media (max-width: 480px) {
    .screenshot-grid {
        gap: 10px;
    }
    .screenshot-grid img {
        border-radius: 10px;
        border: 2px solid white;
    }
}

/* Ekran Görüntüsü ve Etiket Grubu */
.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Kazanım Etiketlerinin Taşıyıcısı */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Tekil Etiket Tasarımı (Duolingo tarzı yuvarlak kapsüller) */
.skill-tag {
    background-color: #EBF5FF; /* Açık mavi arka plan */
    color: #35A7FF; /* Ana temanızla uyumlu mavi yazı */
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px; /* Tam yuvarlak kenarlar */
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background-color: #35A7FF;
    color: white;
}

.contact-section {
    text-align: center;
    padding: 60px 20px;
    margin: 40px auto;
    background-color: #f9f9f9; /* Hafif bir arka plan rengi */
    border-radius: 15px;
    border: 2px dashed #ddd; /* Şık bir çerçeve efekti */
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background-color: #4a90e2; /* Marka rengine göre değiştirebilirsin */
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.contact-link:hover {
    background-color: #357abd;
}