/* YENİ RENK PALETİ ve GENEL AYARLAR */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #2c3e50; /* YENİ: Kömür Grisi */
    color: #ecf0f1; /* YENİ: Daha parlak beyaz */
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* YENİ: Hero Slider Alanı Stilleri */
.hero-slider {
    width: 100%;
    height: 70vh; /* Ekran yüksekliğinin %70'i */
    max-height: 600px;
    min-height: 450px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(44, 62, 80, 0.7); /* Yeni arka plan rengiyle uyumlu katman */
}
.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}
.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.slide-content p {
    font-size: 1.2rem;
}

/* YENİ: Slider Ok ve Nokta Stilleri */
.swiper-button-next, .swiper-button-prev {
    color: #e94560 !important; /* Vurgu rengimiz */
}
.swiper-pagination-bullet-active {
    background: #e94560 !important; /* Vurgu rengimiz */
}

/* YENİ: İkonlar için ikinci vurgu rengimiz */
.ozellik-kutu h3 i {
    color: #1abc9c; /* YENİ: Turkuaz */
}

/* Header (Üst Menü) Stilleri */
header {
    background-color: #34495e; /* YENİ: Açık kömür */
    padding: 1rem 0;
    border-bottom: 3px solid #e94560;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #e94560;
}

/* Hero (Karşılama) Alanı Stilleri */
.hero {
    position: relative; /* Yazıların resmin üstünde kalması için gerekli */
    text-align: center;
    padding: 100px 20px; /* Padding'i biraz artırdık */
    background-image: url('images/hero-bg.jpg');
    background-size: cover; /* Resmi alana tam sığdırır */
    background-position: center center; /* Resmi ortalar */
    background-attachment: fixed; /* Kaydırma efektli arka plan */
}

/* Arka plan resminin üzerine siyah bir katman ekleyerek yazıları okunur yapıyoruz */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(22, 36, 71, 0.7); /* %70 şeffaflıkta lacivert katman */
}

/* Hero içeriğinin (başlık ve yazı) katmanın üstünde kalmasını sağlıyoruz */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem; /* Başlığı biraz büyüttük */
    margin-bottom: 10px;
    color: #ffffff;
}

/* Paketler Alanı Stilleri */
.paketler-alani {
    padding: 50px 0;
}

.paketler-alani h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.paket-listesi {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta gelmesi için */
}

.paket {
    background-color: #34495e; /* Kart arka planı */
    border: 1px solid #162447;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.paket:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.2);
}

/* Popüler paket için özel stil */
.pro-paket {
    border: 2px solid #e94560;
}

.populer-etiket {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #e94560;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: bold;
}

.paket h3 {
    font-size: 1.8rem;
    color: #ffffff;
}

.paket .fiyat {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e94560;
    margin: 20px 0;
}

.paket .fiyat span {
    font-size: 1rem;
    color: #e0e0e0;
}

.paket ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.paket ul li {
    margin-bottom: 10px;
}

.satin-al-btn {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.satin-al-btn:hover {
    background-color: #b82d45;
}

/* Footer (Alt Bilgi) Stilleri */
footer {
    background-color: #34495e;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}
/* Neden Biz? (Özellikler) Alanı Stilleri */
.ozellikler-alani {
    padding: 50px 0;
    background-color: #34495e; /* Ana bölüm renklerinden biri */
}

.ozellikler-alani h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.ozellik-listesi {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.ozellik-kutu {
    background-color: #34495e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    min-width: 280px; /* Küçük ekranlarda çok daralmasın */
    box-sizing: border-box;
}

.ozellik-kutu h3 {
    font-size: 1.5rem;
    color: #e94560;
    margin-bottom: 15px;
}

/* Sıkça Sorulan Sorular (SSS) Alanı Stilleri */
.sss-alani {
    padding: 50px 0;
}

.sss-alani h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.sss-listesi {
    max-width: 800px;
    margin: 0 auto;
}

.sss-listesi details {
    background-color: #34495e;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 15px 20px;
}

.sss-listesi details[open] {
    background-color: #34495e;
}

.sss-listesi summary {
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    color: #ffffff;
}

.sss-listesi summary::marker {
    color: #e94560;
}

.sss-listesi p {
    margin-top: 15px;
    padding-left: 10px;
    border-left: 2px solid #e94560;
    color: #c0c0c0;
}


/* Yeni Footer Stilleri */
.site-footer {
    background-color: #2c3e50; /* Daha da koyu bir renk */
    color: #a0a0a0;
    padding: 40px 0 20px 0;
    margin-top: 50px;
    border-top: 3px solid #e94560;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-sutun {
    flex: 1;
    min-width: 220px; /* Küçük ekranlarda düzeni korur */
}

.footer-sutun h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-sutun p {
    line-height: 1.7;
}

.footer-sutun ul {
    list-style: none;
    padding: 0;
}

.footer-sutun ul li {
    margin-bottom: 10px;
}

.footer-sutun ul a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-sutun ul a:hover {
    color: #e94560;
}

.footer-alt {
    text-align: center;
    border-top: 1px solid #1f4068;
    padding-top: 20px;
    font-size: 0.9rem;
}
/* Özellik Kutusu İkon Stilleri */
.ozellik-kutu h3 i {
    font-size: 2.5rem; /* İkon boyutunu büyütür */
    display: block; /* Başlığın üstüne tam olarak yerleşmesi için */
    margin-bottom: 15px;
    color: #e94560; /* Ana vurgu rengimiz */
}

/* İkonlar eklenince başlıklar daha küçük kalabilir, onları ayarlayalım */
.ozellik-kutu h3 {
    font-size: 1.5rem;
    color: #ffffff; /* Rengi beyaza çevirelim */
}
/* Sayfa Başlığı Stili (Server Listesi gibi yeni sayfalar için) */
.sayfa-baslik {
    text-align: center;
    padding: 40px 0;
}
.sayfa-baslik h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.sayfa-baslik p {
    font-size: 1.1rem;
    color: #bdc3c7; /* Açık gri */
}

/* Server Listesi Tablo Stilleri */
.server-tablosu-container {
    background-color: #34495e; /* Bölüm arka plan rengi */
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto; /* Küçük ekranlarda tabloyu yatay kaydırılabilir yapar */
}
.server-tablosu {
    width: 100%;
    border-collapse: collapse; /* Hücreler arası çizgileri birleştirir */
    text-align: left;
}
.server-tablosu th, .server-tablosu td {
    padding: 15px;
    border-bottom: 1px solid #2c3e50; /* Ana arka plan rengiyle ince bir çizgi */
}
.server-tablosu thead {
    background-color: rgba(0,0,0,0.2); /* Başlık satırını hafifçe koyulaştır */
}
.server-tablosu th {
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase; /* Başlıkları büyük harf yapar */
}
.server-tablosu tbody tr {
    transition: background-color 0.3s ease;
}
.server-tablosu tbody tr:hover {
    background-color: rgba(0,0,0,0.15);
}
.server-tablosu td {
    font-size: 1.1rem;
}

.baglan-btn {
    display: inline-block;
    background-color: #1abc9c; /* Yeni vurgu rengimiz (Turkuaz) */
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}
.baglan-btn:hover {
    background-color: #16a085;
}
/* Detaylar Butonu Stili */
.detay-btn {
    display: inline-block;
    background-color: #3498db; /* Farklı bir renk */
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.detay-btn:hover {
    background-color: #2980b9;
}

/* Modal (Popup) Stilleri */
.modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed; /* Sayfa kaysa bile yerinde kalır */
    z-index: 1000; /* Her şeyin üstünde görünmesi için */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* İçerik sığmazsa kaydırılabilir */
    background-color: rgba(0, 0, 0, 0.7); /* Arkadaki siyah yarı şeffaf katman */
    padding-top: 60px;
}

.modal-content {
    background-color: #34495e; /* Ana bölüm rengimiz */
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal-close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    margin-top: 0;
    color: #ffffff;
    border-bottom: 2px solid #e94560;
    padding-bottom: 10px;
}

/* Modal içindeki oyuncu tablosu */
#modal-player-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
#modal-player-list th, #modal-player-list td {
    padding: 10px;
    border-bottom: 1px solid #2c3e50;
    text-align: left;
}
#modal-player-list th {
    background-color: rgba(0,0,0,0.2);
}
/* Modal içindeki iframe için stiller */
#details-iframe {
    width: 100%;
    height: 75vh; /* Ekran yüksekliğinin %75'i kadar bir yükseklik */
    border: none; /* Kenarındaki varsayılan çizgiyi kaldırır */
}

/* Modal içeriğinin padding'ini iframe'e yer açmak için ayarlayalım */
.modal-content {
    padding: 10px 20px 20px 20px;
}