/* =========================================
   GAME SERVER VARIABLES (CLEAN GAMING THEME)
   ========================================= */
:root {
    --bg-body: #f8fafc; /* ARTIK AYDINLIK */
    
    /* Neon Colors (Vurgu İçin) */
    --neon-purple: #9333ea;
    --neon-blue: #0ea5e9;
    --neon-green: #16a34a;
    --neon-orange: #ea580c;
    
    --primary: #6366f1; /* Indigo */
    
    /* Text Colors (Açık Zemin İçin) */
    --text-main: #1e293b; /* Koyu Lacivert/Siyah */
    --text-muted: #64748b; /* Gri */
    
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    
    --hero-bg: radial-gradient(circle at 50% 0%, #312e81 0%, #1e1b4b 100%);
}

/* =========================================
   1. HERO SECTION (DARK - HEADER UYUMLU)
   ========================================= */
.server-hero {
    position: relative;
    padding: 160px 0 200px;
    background: var(--hero-bg);
    color: white; /* Hero içi metinler beyaz */
    overflow: hidden;
}
.server-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.05' fill='%236366f1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3; z-index: 0;
}

.hero-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; 
    align-items: center; gap: 50px; position: relative; z-index: 2;
}

.hero-text { text-align: left; }

.hero-badge {
    background: rgba(255, 255, 255, 0.1); color: #c4b5fd; border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.15rem; color: #e0e7ff; max-width: 600px; line-height: 1.6; margin-bottom: 40px; }

/* Features Mini Grid */
.hero-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; }
.hf-box {
    padding: 15px 20px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; gap: 15px; transition: 0.3s;
}
.hf-icon { font-size: 1.5rem; color: #a5b4fc; }
.hf-text h5 { font-size: 1rem; font-weight: 700; margin: 0; color: #fff; }
.hf-text span { font-size: 0.8rem; color: #c7d2fe; }

/* Glow Effects */
.hf-box.glow {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(99, 102, 241, 0.2) 100%);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.hero-visual { position: relative; text-align: center; }
.hero-img-anim {
    width: 100%; max-width: 550px; 
    filter: drop-shadow(0 0 50px rgba(99, 102, 241, 0.4));
    animation: floatImg 5s ease-in-out infinite;
}
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }


/* =========================================
   2. GAME CARDS (LIGHT & READABLE)
   ========================================= */
.games-section { margin-top: -80px; padding-bottom: 100px; position: relative; z-index: 10; }

.games-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
    max-width: 1240px; margin: 0 auto; padding: 0 20px;
}

.game-card {
    background: white; /* BEYAZ KART */
    border-radius: 20px; padding: 30px 20px;
    border: 1px solid #e2e8f0; position: relative;
    transition: 0.4s; text-align: center;
    overflow: hidden; display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.game-card:hover { transform: translateY(-10px); }

/* Renk Varyasyonları (Neon Gölgeler) */
.game-card.minecraft:hover { border-color: var(--neon-green); box-shadow: 0 20px 40px rgba(22, 163, 74, 0.2); }
.game-card.fivem:hover { border-color: var(--neon-orange); box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2); }
.game-card.rust:hover { border-color: #ef4444; box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2); }
.game-card.csgo:hover { border-color: var(--neon-blue); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2); }

/* Game Icon/Logo */
.game-icon {
    width: 80px; height: 80px; border-radius: 16px; margin-bottom: 20px;
    background: #f8fafc; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.game-card:hover .game-icon { transform: scale(1.1) rotate(5deg); background: white; }

.game-title { font-size: 1.4rem; font-weight: 800; color: var(--text-main); margin-bottom: 5px; }
.game-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; min-height: 40px; }

/* Specs Mini List - OKUNABİLİR */
.game-specs { 
    width: 100%; border-top: 1px solid #f1f5f9; padding-top: 15px; margin-bottom: 20px;
}
.gs-item { 
    display: flex; justify-content: space-between; font-size: 0.9rem; 
    color: var(--text-main); /* KOYU YAZI */
    margin-bottom: 8px; 
}
.gs-item span:first-child { color: var(--text-muted); font-weight: 600; }

.price-area { margin-bottom: 20px; }
.price-tag { font-size: 1.8rem; font-weight: 800; color: var(--text-main); }
.price-period { font-size: 0.8rem; color: var(--text-muted); }

.btn-game {
    display: block; width: 100%; padding: 12px; border-radius: 10px;
    font-weight: 700; text-decoration: none; transition: 0.3s;
    background: #f1f5f9; color: var(--text-main); border: 1px solid #e2e8f0;
}
.btn-game:hover { color: white; }

/* Hover Buton Renkleri */
.game-card.minecraft:hover .btn-game { background: var(--neon-green); border-color: var(--neon-green); }
.game-card.fivem:hover .btn-game { background: var(--neon-orange); border-color: var(--neon-orange); }
.game-card.rust:hover .btn-game { background: #ef4444; border-color: #ef4444; }
.game-card.csgo:hover .btn-game { background: var(--neon-blue); border-color: var(--neon-blue); }


/* =========================================
   3. SPECS & CONTENT (LIGHT)
   ========================================= */
.specs-section { padding: 100px 0; background: white; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.spec-box { 
    background: #f8fafc; padding: 30px; border-radius: 16px; 
    transition: 0.3s; border: 1px solid #e2e8f0; text-align: left; 
}
.spec-box:hover { background: white; border-color: var(--primary); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15); }
.spec-icon {
    width: 60px; height: 60px; background: white; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--primary); margin-bottom: 20px;
    border: 1px solid #e2e8f0; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.spec-box h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; color: var(--text-main); }
.spec-box p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Panel Bar (Dark to break the white) */
.panel-bar {
    background: linear-gradient(90deg, #4f46e5 0%, #4338ca 100%);
    padding: 60px 0; color: white; position: relative; overflow: hidden;
}
.panel-content { 
    display: flex; align-items: center; justify-content: space-between; 
    max-width: 1000px; margin: 0 auto; gap: 30px; position: relative; z-index: 2;
}
.panel-text h3 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.panel-text p { font-size: 1.1rem; opacity: 0.9; color: #e0e7ff; }
.panel-logos { display: flex; gap: 30px; color: white; }

/* Content Area */
.content-area { padding: 100px 0; background: var(--bg-body); }
.row-item { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.row-item.reverse { flex-direction: row-reverse; }
.row-img img { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2); border: 1px solid #e2e8f0; }
.row-text h2 { font-size: 2.2rem; color: var(--text-main); margin-bottom: 20px; font-weight: 800; }
.row-text p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

/* =========================================
   4. FAQ (FIXED READABILITY)
   ========================================= */
.faq-sec { padding: 80px 0; max-width: 900px; margin: 0 auto; }
.faq-box { margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: white; }
.faq-q { 
    padding: 20px; background: white; cursor: pointer; font-weight: 600; 
    display: flex; justify-content: space-between; align-items: center; transition: 0.3s; 
    color: var(--text-main); /* ARTIK KOYU */
}
.faq-q:hover { background: #f8fafc; color: var(--primary); }
.faq-a { 
    display: none; padding: 20px; border-top: 1px solid #f1f5f9; 
    background: #fff; color: var(--text-muted); line-height: 1.6; 
}
.faq-box.active .faq-a { display: block; }
.faq-box.active .faq-q { color: var(--primary); }
.rotate-icon { transition: 0.3s; }
.faq-box.active .rotate-icon { transform: rotate(180deg); }

/* =========================================
   RESPONSIVE (MOBİL DÜZENLEMELER)
   ========================================= */
@media (max-width: 992px) {
    .server-hero { 
        padding: 100px 0 80px; /* Üst-alt boşluk ayarlandı */
        text-align: center; 
    }
    
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .hero-text { 
        text-align: center; 
        padding: 0 15px; /* Kenarlardan boşluk bırak */
    }
    
    .hero-badge { 
        margin: 0 auto 20px; 
    }
    
    /* BAŞLIK DÜZELTMESİ */
    .hero-title { 
        font-size: 2.2rem; /* Tabletlerde boyut */
        line-height: 1.3; 
        margin-bottom: 20px; 
        word-break: keep-all; /* Kelimeleri bölme */
    }
    
    .hero-desc { 
        font-size: 1rem; 
        margin: 0 auto 30px; 
        line-height: 1.6;
    }
    
    .hero-features-grid { 
        margin: 0 auto 20px; 
        gap: 15px;
    }
    
    /* Özellik Kutularını Mobilde Alt Alta veya Yan Yana Sığdır */
    .hf-box { 
        flex-direction: column; 
        text-align: center; 
        padding: 15px; 
        gap: 10px; 
    }
    
    .hero-visual { display: none; } /* Mobilde görseli gizle */
    
    .games-grid { 
        grid-template-columns: 1fr; /* Oyun kartları tek sütun */
        max-width: 400px; 
    }
    
    .specs-grid { grid-template-columns: 1fr 1fr; }
    
    .panel-content { flex-direction: column; text-align: center; gap: 30px; }
    .panel-logos { flex-wrap: wrap; justify-content: center; }
    
    .row-item, .row-item.reverse { flex-direction: column; text-align: center; gap: 30px; }
}

/* KÜÇÜK TELEFONLAR İÇİN EKSTRA AYAR (iPhone, Samsung vb.) */
@media (max-width: 600px) { 
    .hero-title { 
        font-size: 1.8rem; /* Telefonda daha da küçült */
        line-height: 1.2;
    }
    
    .specs-grid { grid-template-columns: 1fr; } /* Özellikler tek sütun */
    
    .game-card { padding: 20px; }
    .game-icon { width: 60px; height: 60px; font-size: 2rem; }
}