:root {
    --primary-blue: #007bff;
    --primary-green: #0c9600;
    --dark-blue: #0a192f;
    --light-blue: #3a86ff;
    --light-green: #00580c;
    --discord-color: #5865F2; 
    --text-white: #e6f1ff;
    --bg-dark: #010a18;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(2, 14, 43, 0.616);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar img {
    max-width: 100px; 
    display: block;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-blue);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

.btn-download {
    background: var(--primary-green);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(9, 255, 0, 0.4);
}

.btn-download:hover {
    background: var(--light-green);
}

.hero {
    height: 80vh;
    background: linear-gradient(180deg, rgba(1, 11, 26, 0.7) 0%, rgba(1, 11, 26, 0.9) 80%, rgb(1, 11, 26) 100%), 
                url('./indir.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    /* margin-bottom: 20px; */
    color: #007bff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.767);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.hero-btns a {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px; 
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

/* YENİ: Discord Butonu Stilleri */
.btn-discord {
    background: var(--discord-color);
    color: white;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: #7289da; 
    transform: translateY(-3px);
}

footer {
    background: var(--dark-blue);
    padding: 50px 10% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 30px;
}

.footer-about img {
    max-width: 100px; 
    display: block;
    margin-bottom: 20px;
}
.footer-about h3 span { color: var(--primary-blue); }
.footer-links ul { list-style: none; margin-top: 15px; }
.footer-links a { text-decoration: none; color: #8892b0; line-height: 2; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-blue); }

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: var(--text-white);
    font-size: 24px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover { color: var(--primary-blue); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8892b0;
    font-size: 14px;
}

.about-section {
    padding: 100px 10%;
    background-color: var(--bg-dark);
    text-align: center;
}

.about-header h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(10, 25, 47, 0.5);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    background: rgba(10, 25, 47, 0.8);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.stat-card p {
    color: #8892b0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.status-online {
    color: #cca52e !important; /* Canlı yeşil durum rengi */
    text-shadow: 0 0 10px rgba(255, 200, 0, 0.4);
}

/* Mobil Uyumluluk İçin Küçük Ayar */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Yetki Sayfası Yeni Düzen */
.pricing-page-wrapper {
    padding: 40px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin: 50px 0 25px;
    border-left: 5px solid var(--primary-blue);
    padding-left: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.price-box {
    background: rgba(10, 25, 47, 0.7);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.price-box:hover {
    transform: scale(1.02);
    border-color: var(--primary-blue);
    background: rgba(10, 25, 47, 1);
}

.price-box h4 {
    font-size: 1rem;
    color: #e6f1ff;
    font-weight: 500;
}

.amount {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.2rem;
    background: rgba(0, 123, 255, 0.1);
    padding: 5px 12px;
    border-radius: 5px;
}

/* Özel Vurgular */
.price-box.featured { border-left: 4px solid #f1c40f; } /* Altın rengi vurgu */
.price-box.high-tier { border-left: 4px solid #e74c3c; } /* Kırmızı vurgu */
.price-box.vip .amount { color: #f1c40f; }
.price-box.super .amount { color: #00d2ff; text-shadow: 0 0 10px rgba(0, 210, 255, 0.5); }

/* Bilgi Notu */
.payment-info {
    margin-top: 60px;
    background: rgba(0, 123, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px dashed var(--primary-blue);
}

.payment-info strong { color: var(--primary-blue); }

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* --- MODAL (AÇILIR PANEL) STİLLERİ --- */

.modal {
    display: none; /* Başlangıçta gizli */
    position: fixed; 
    z-index: 9999; /* Her şeyin üstünde görünsün */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(2, 12, 27, 0.85); /* Koyu transparan arka plan */
    backdrop-filter: blur(10px); /* Arka planı modern şekilde bulanıklaştırır */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-content {
    background: #0a192f; /* Koyu lacivert panel rengi */
    padding: 40px;
    border: 1px solid #007bff; /* Mavi çerçeve */
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.25);
    animation: modalGiris 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Zıplama efekti */
}

/* Panel Açılış Animasyonu */
@keyframes modalGiris {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Kapatma Butonu (X) */
.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #8892b0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #e74c3c; /* Üzerine gelince kırmızı olur */
    transform: rotate(90deg);
}

/* Tıklanabilir Kutular İçin Kursör */
.rank-trigger {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rank-trigger::after {
    content: 'Detaylar için tıkla';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #007bff;
    transition: 0.3s;
    opacity: 0;
}

.rank-trigger:hover::after {
    bottom: 5px;
    opacity: 1;
}

/* Modal İçindeki Liste Tasarımı */
#modal-body h2 {
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
}

#modal-body ul li {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Duyuru Paneli Arka Planı */
.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 27, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Her şeyin en üstünde */
}

/* Duyuru Kutusu */
.announcement-content {
    background: #0a192f;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #007bff; 
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.4);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.announcement-icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.announcement-content h2 {
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.announcement-content p {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-confirm {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-confirm:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Animasyonlar */
@keyframes popIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.ekip-section {
    padding: 100px 10%;
    background-color: var(--bg-dark);
    text-align: center;
}

.ekip-header h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

  .team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .team-card {
    background: rgba(10, 25, 47, 0.5);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: 0.4s;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    background: rgba(10, 25, 47, 0.8);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
  }
  
  .team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #0066ff;
  }
  
  .team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-white);
  }
  
  .team-card p {
    color: #8892b0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }