/* ==========================================================================
   TIDY AREA GAMES - Cozy & Minimalist Web Sitesi
   Stil: Warm, Clean, Relaxing, Friendly (Cozy Indie Game Studio)
   Renk Paleti: Serene Teal (#007F7F) • Cozy Yellow (#FFD700) • Energetic Coral (#FF6F61) • Light Grey (#F0F0F0)
   Logo: Option 3 (TIDY / AREA / GAMES + Underline)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
    /* Resmi Marka Renkleri */
    --brand-teal: #007F7F;
    --brand-teal-soft: #009E94;
    --brand-teal-light: #E6F5F4;
    
    --brand-yellow: #FFD700;
    --brand-yellow-warm: #F59E0B;
    --brand-yellow-light: #FEF8E7;

    --brand-coral: #FF6F61;
    --brand-coral-soft: #FF8579;
    --brand-coral-light: #FFF0EE;

    --brand-light-grey: #F0F0F0;
    --bg-page: #FAF9F6;
    --bg-surface: #FFFFFF;
    --bg-card-hover: #FCFBFA;

    --text-main: #1F2937;
    --text-muted: #5C6B7A;
    --text-soft: #8C9BAE;

    --border-subtle: #E9ECEF;
    --border-teal-light: rgba(0, 127, 127, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 127, 127, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 127, 127, 0.12);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Temel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(0, 127, 127, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(255, 111, 97, 0.04) 0%, transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
        linear-gradient(rgba(0, 127, 127, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 127, 127, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
}

/* Yumuşak Kaydırma Çubuğu */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-teal-soft);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* ==========================================================================
   3. Logo Seçeneği (TIDY / AREA / GAMES)
   ========================================================================== */
.brand-logo-opt3 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 0.95;
    padding: 4px 0;
}

.brand-logo-opt3 .logo-word {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-main);
    text-transform: uppercase;
}

.brand-logo-opt3 .logo-word.games {
    color: var(--brand-teal);
}

.brand-logo-opt3 .logo-line {
    width: 100%;
    height: 3.5px;
    background: var(--brand-teal);
    border-radius: 2px;
    margin-top: 4px;
    position: relative;
}

.brand-logo-opt3 .logo-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: var(--brand-coral);
    border-radius: 2px;
}

/* Büyük Logo Varyantı */
.brand-logo-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1.05;
    margin-bottom: 24px;
}

.brand-logo-large .logo-word {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    color: var(--text-main);
    text-transform: uppercase;
}

.brand-logo-large .logo-word.games {
    color: var(--brand-teal);
}

.brand-logo-large .logo-line {
    width: 160px;
    height: 6px;
    background: var(--brand-teal);
    border-radius: 3px;
    margin-top: 8px;
    position: relative;
}

.brand-logo-large .logo-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--brand-coral);
    border-radius: 3px;
}

/* ==========================================================================
   Yakında Yayında (Coming Soon) Ekranı
   ========================================================================== */
.coming-soon-screen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-page);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 127, 127, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 111, 97, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(255, 215, 0, 0.06) 0%, transparent 35%),
        linear-gradient(rgba(0, 127, 127, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 127, 127, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 32px 32px, 32px 32px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.coming-soon-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cs-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px 40px;
    max-width: 580px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: csFadeUp 0.5s ease;
}

@keyframes csFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cs-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-coral);
    animation: csPulse 1.8s infinite;
}

@keyframes csPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.cs-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 14px;
}

.cs-title span {
    color: var(--brand-teal);
}

.cs-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* İlerleme Çubuğu */
.cs-progress-container {
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 28px;
    text-align: left;
}

.cs-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.cs-progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.cs-progress-fill {
    width: 88%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-teal) 0%, var(--brand-coral) 100%);
    border-radius: 4px;
}

/* Bülten & Haberdar Et Formu */
.cs-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.cs-input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    background: var(--bg-page);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.cs-input:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 127, 127, 0.1);
}

/* ==========================================================================
   Yenilenen Sosyal Medya Tasarımı (Zarif, Düzenli & Cozy)
   ========================================================================== */
.cs-socials-wrapper {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cs-socials-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
}

.cs-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cs-social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.cs-social-icon-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cs-social-icon-btn.discord:hover { background: #5865F2; border-color: #5865F2; color: #FFFFFF; }
.cs-social-icon-btn.steam:hover { background: #171A21; border-color: #171A21; color: #FFFFFF; }
.cs-social-icon-btn.youtube:hover { background: #FF0000; border-color: #FF0000; color: #FFFFFF; }
.cs-social-icon-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; color: #FFFFFF; }
.cs-social-icon-btn.reddit:hover { background: #FF4500; border-color: #FF4500; color: #FFFFFF; }
.cs-social-icon-btn.twitter:hover { background: #0F1419; border-color: #0F1419; color: #FFFFFF; }

.cs-social-icon-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--text-main);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.cs-social-icon-btn:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* Ana Sayfa İletişim: Düzenli 6'lı Topluluk Hub Izgarası */
.community-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.community-hub-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s ease;
}

.community-hub-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-teal);
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.community-hub-card .hub-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.community-hub-card.discord .hub-icon-circle { background: #EEF0FF; color: #5865F2; }
.community-hub-card.steam .hub-icon-circle { background: #EAECEF; color: #171A21; }
.community-hub-card.youtube .hub-icon-circle { background: #FFEAEA; color: #FF0000; }
.community-hub-card.instagram .hub-icon-circle { background: #FFEBF2; color: #E1306C; }
.community-hub-card.reddit .hub-icon-circle { background: #FFF0EB; color: #FF4500; }
.community-hub-card.twitter .hub-icon-circle { background: #E8ECEF; color: #0F1419; }

.community-hub-card .hub-info {
    display: flex;
    flex-direction: column;
}

.community-hub-card .hub-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.community-hub-card .hub-desc {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* Admin Giriş Düğmesi (Sağ Alt Köşe) */
.cs-admin-gate-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.cs-admin-gate-btn:hover {
    background: #FFFFFF;
    color: var(--brand-teal);
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Admin Doğrulama Modalı
   ========================================================================== */
.admin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.admin-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.admin-modal-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.admin-modal-overlay.active .admin-modal-card {
    transform: scale(1);
}

.admin-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-soft);
    cursor: pointer;
}

.admin-modal-close:hover {
    color: var(--text-main);
}

.admin-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 1.5rem;
}

.admin-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.admin-modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.admin-input-group {
    margin-bottom: 18px;
    text-align: left;
}

.admin-error-text {
    color: var(--brand-coral);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 6px;
    display: none;
}

/* ==========================================================================
   Admin Üst Bilgi Şeridi (Giriş Yapıldığında Görünür)
   ========================================================================== */
.admin-top-bar {
    background: #1E293B;
    color: #F8FAFC;
    padding: 10px 24px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-top-bar.hidden {
    display: none;
}

.admin-top-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.admin-badge-pill {
    background: var(--brand-teal);
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.admin-logout-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.admin-logout-btn:hover {
    background: var(--brand-coral);
}

.admin-subscribers-btn {
    background: var(--brand-teal);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 127, 127, 0.25);
}

.admin-subscribers-btn:hover {
    background: var(--brand-teal-dark, #005F5F);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 127, 127, 0.35);
}

.admin-subscribers-btn span {
    background: rgba(255, 255, 255, 0.25);
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.75rem;
}

/* Genişletilmiş Dashboard Modalı */
.admin-modal-card.admin-modal-card-lg {
    max-width: 880px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 36px;
    text-align: left;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .admin-modal-card.admin-modal-card-lg {
        padding: 24px 18px;
    }
}

.admin-dashboard-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-dash-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 127, 127, 0.1);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* İstatistik Kutuları */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 640px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

.admin-stat-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-stat-value {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--brand-teal);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.admin-stat-value-sm {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    padding-top: 4px;
}

/* Araç Çubuğu (Toolbar) */
.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.admin-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
}

.admin-search-wrapper svg {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
}

.admin-search-input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.admin-search-input:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(0, 127, 127, 0.12);
}

.admin-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.admin-btn-teal {
    background: var(--brand-teal);
    color: white;
}
.admin-btn-teal:hover {
    background: var(--brand-teal-dark, #005F5F);
    transform: translateY(-1px);
}

.admin-btn-yellow {
    background: #FFF4B8;
    color: #7A5800;
    border: 1px solid rgba(255, 215, 0, 0.4);
}
.admin-btn-yellow:hover {
    background: var(--brand-yellow);
    color: #332400;
    transform: translateY(-1px);
}

.admin-btn-outline {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: var(--text-main);
}
.admin-btn-outline:hover {
    background: #F1F5F9;
    border-color: var(--brand-teal);
    color: var(--brand-teal);
}

/* Tablo Alanı */
.admin-table-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 16px;
    min-height: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.admin-table th {
    background: #F8FAFC;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 16px;
    border-bottom: 1px solid #E2E8F0;
}

.admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #F1F5F9;
    color: var(--text-main);
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: #FAFAFB;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-email-text {
    font-weight: 700;
    color: var(--brand-teal);
    word-break: break-all;
}

.admin-badge-source {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    background: #F1F5F9;
    color: var(--text-main);
}

.admin-badge-source.coming-soon {
    background: rgba(0, 127, 127, 0.1);
    color: var(--brand-teal);
}

.admin-badge-source.contact-form {
    background: #FFF4B8;
    color: #7A5800;
}

.admin-action-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.admin-action-icon-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-action-icon-btn:hover {
    background: #F1F5F9;
    color: var(--brand-teal);
}

.admin-action-icon-btn.delete:hover {
    background: #FEE2E2;
    color: #DC2626;
}

/* Boş Durum (Empty State) */
.admin-empty-state {
    padding: 44px 20px;
    text-align: center;
}

/* Dashboard Footer */
.admin-dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    flex-wrap: wrap;
}

.admin-footer-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-btn-text-danger {
    background: none;
    border: none;
    color: #DC2626;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.admin-btn-text-danger:hover {
    background: #FEE2E2;
}

/* ==========================================================================
   Üst Gezinme Çubuğu (Navbar)
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-teal);
}

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

/* ==========================================================================
   Cozy Butonlar
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background: var(--brand-teal);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 127, 127, 0.25);
}

.btn-primary:hover {
    background: var(--brand-teal-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 127, 127, 0.35);
}

.btn-coral {
    background: var(--brand-coral);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(255, 111, 97, 0.25);
}

.btn-coral:hover {
    background: var(--brand-coral-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.35);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--brand-teal-light);
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 13px 28px;
    font-size: 1rem;
}

/* ==========================================================================
   Hero Bölümü (Sıcak ve Samimi)
   ========================================================================== */
.hero {
    padding-top: 60px;
    padding-bottom: 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--brand-teal);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-stats-row {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.hero-stat p {
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 600;
}

.hero-art-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-art-card img, .hero-art-card svg {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.hero-art-caption {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   4 Temel Direk (Minimalist & Cozy Kartlar)
   ========================================================================== */
.pillars-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-teal);
    background: var(--brand-teal-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pillar-card {
    background: var(--bg-page);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    border: 1px solid var(--border-subtle);
    transition: all 0.25s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-teal);
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.pillar-card:nth-child(1) .pillar-icon-box { background: var(--brand-teal-light); color: var(--brand-teal); }
.pillar-card:nth-child(2) .pillar-icon-box { background: var(--brand-coral-light); color: var(--brand-coral); }
.pillar-card:nth-child(3) .pillar-icon-box { background: var(--brand-yellow-light); color: var(--brand-yellow-warm); }
.pillar-card:nth-child(4) .pillar-icon-box { background: #EEF2F6; color: #475569; }

.pillar-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.pillar-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================================================
   Cozy Oyunlar Vitrini (Our Games)
   ========================================================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.game-cozy-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-cozy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 127, 127, 0.3);
}

.game-card-illustration {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.game-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.game-badge.teal { color: var(--brand-teal); }
.game-badge.coral { color: var(--brand-coral); }
.game-badge.yellow { color: var(--brand-yellow-warm); }

.game-card-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-genre {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.game-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.game-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.game-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.game-platforms {
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 600;
}

/* ==========================================================================
   Hakkımızda & Renk Paleti (About & Color Swatches)
   ========================================================================== */
.about-box {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-main);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.palette-row {
    display: flex;
    gap: 12px;
}

.palette-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.palette-color {
    height: 44px;
    border-radius: var(--radius-sm);
}

.palette-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.palette-code {
    font-size: 0.75rem;
    color: var(--text-soft);
}

/* Logo 3 Odak Kartı */
.logo3-feature-box {
    background: var(--bg-page);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.logo3-feature-box .big-logo {
    max-width: 170px;
    margin: 0 auto 16px auto;
}

.logo3-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-teal);
    background: var(--brand-teal-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   İletişim & Topluluk (Sade ve Samimi)
   ========================================================================== */
.cozy-contact-box {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-col h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-col p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.discord-cozy-card {
    background: #5865F2;
    color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.25);
}

.discord-cozy-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
}

.discord-cozy-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: var(--bg-page);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 127, 127, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* ==========================================================================
   Alt Bilgi (Footer)
   ========================================================================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 50px 0 30px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-soft);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

/* Toast Bildirimi */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--text-main);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 99999;
    display: none;
    animation: fadeInToast 0.3s ease;
}

@keyframes fadeInToast {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: 1fr; }
    .about-box { grid-template-columns: 1fr; }
    .cozy-contact-box { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .nav-links { display: none; }
    .cs-form { flex-direction: column; }
    .community-hub-grid { grid-template-columns: 1fr; }
    .cs-social-row { flex-wrap: wrap; }
}
