/* Genel Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* Üst Menü (Navigasyon) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.nav-logo-container {
    position: absolute;
    left: 50px;
}

.nav-logo {
    height: 45px;
    width: auto;
    transition: transform 0.2s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    transition: color 0.3s ease, transform 0.2s;
}

.navbar a:hover {
    color: #f1c40f;
    transform: scale(1.05);
}

/* Banner Alanı */
.banner {
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fade-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent, #121212);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 90px;
    z-index: 5;
    margin-top: 50px;
}

.ip-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.server-status-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 19px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    color: #e0e0e0;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #2ecc71;
    transition: all 0.3s ease;
}

.status-dot.online {
    animation: dotPulse 1.8s infinite ease-in-out;
}

.status-dot.offline {
    background-color: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
}

@keyframes dotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.logo {
    width: 260px;
    height: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: drop-shadow(0 0 15px rgba(0, 168, 204, 0.4));
}

.btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.btn-discord { border-color: #5865F2; color: #5865F2; }
.btn-discord:hover { background-color: #5865F2; color: #fff; box-shadow: 0 0 15px rgba(88, 101, 242, 0.5); }
.btn-ip { border-color: #00a8cc; color: #00a8cc; }
.btn-ip:hover { background-color: #00a8cc; color: #fff; box-shadow: 0 0 15px rgba(0, 168, 204, 0.5); }

/* Ortak Bölüm Yapısı */
.content-section {
    padding: 80px 10% 40px 10%;
    text-align: center;
}

.content-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #f1c40f;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(241, 196, 15, 0.2);
}

/* KATEGORİ SEKME MENÜSÜ */
.store-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ccc;
    background: #1a1a1a;
    border: 2px solid #2d2d2d;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    color: #fff;
    border-color: #f1c40f;
    transform: translateY(-2px);
}

.tab-btn.active {
    color: #000;
    background: #f1c40f;
    border-color: #f1c40f;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.4);
}

.store-category-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.store-category-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MAĞAZA BÖLÜMÜ */
.store-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-card {
    background: #1a1a1a;
    border: 2px solid #2d2d2d;
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.card-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    transition: transform 0.3s ease;
}
.vip-card:hover .card-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.card-vip { border-color: #a845ff; }
.card-vip:hover { box-shadow: 0 0 20px rgba(168, 69, 255, 0.3); }
.card-vip .vip-title { color: #a845ff; }
.card-vip .buy-btn { background: #a845ff; }
.card-vip .card-icon-wrapper { color: #a845ff; filter: drop-shadow(0 0 8px rgba(168, 69, 255, 0.5)); }

.card-vipplus { border-color: #00bcd4; }
.card-vipplus:hover { box-shadow: 0 0 20px rgba(0, 188, 212, 0.3); }
.card-vipplus .vip-title { color: #00bcd4; }
.card-vipplus .buy-btn { background: #00bcd4; }
.card-vipplus .card-icon-wrapper { color: #00bcd4; filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.5)); }

.card-jvipplus { border-color: #ff9800; background: linear-gradient(145deg, #1a1a1a, #251805); }
.card-jvipplus:hover { box-shadow: 0 0 25px rgba(255, 152, 0, 0.4); }
.card-jvipplus .vip-title { color: #ff9800; font-size: 2rem; animation: pulse 2s infinite; }
.card-jvipplus .buy-btn { background: #ff9800; color: #000; }
.card-jvipplus .card-icon-wrapper { color: #ff9800; filter: drop-shadow(0 0 12px rgba(255, 152, 0, 0.6)); }

.card-crate { border-color: #2ecc71; }
.card-crate:hover { box-shadow: 0 0 20px rgba(46, 204, 113, 0.3); }
.card-crate .vip-title { color: #2ecc71; }
.card-crate .buy-btn { background: #2ecc71; }
.card-crate .card-icon-wrapper { color: #2ecc71; filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.5)); }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); text-shadow: 0 0 10px rgba(255,152,0,0.6); }
    100% { transform: scale(1); }
}

.vip-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vip-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}
.vip-price span { font-size: 1rem; color: #888; font-weight: normal; }

.vip-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.vip-features li {
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vip-features li i { color: #2ecc71; }

.buy-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.buy-btn:hover { opacity: 0.9; transform: scale(1.02); }

/* MAĞAZA İLE FOOTER ARASINDAKİ SSS BÖLÜMÜ STİLLERİ */
.faq-section {
    margin-top: 60px;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #181818;
    border: 1px solid #282828;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00a8cc;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
}

.faq-icon {
    color: #00a8cc;
    margin-right: 12px;
}

.arrow-icon {
    color: #888;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #121212;
    text-align: left;
    padding: 0 25px;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tıklandığında SSS açılması */
.faq-item.active .arrow-icon {
    transform: rotate(180deg);
    color: #00a8cc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 18px 25px;
    border-top: 1px solid #222;
}

/* ALERT KUTUSU */
.copy-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2ecc71;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* FOOTER ALANI */
.main-footer {
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 10% 30px 10%;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 320px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-about p {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #141414;
    border-radius: 10px;
    color: #aaa;
    font-size: 1.3rem;
    text-decoration: none;
    border: 1px solid #222;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-btn:hover {
    background: #5865F2;
    color: #fff;
    border-color: #5865F2;
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(88, 101, 242, 0.4);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.footer-col ul li a i {
    color: #00a8cc !important;
    font-size: 0.95rem;
    width: 16px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #555555;
}

/* MODAL TASARIMLARI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #141313;
    border: 1px solid #262323;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-header {
    padding: 25px 30px 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.highlight-orange {
    color: #ff6600;
}

.modal-close {
    background: #222020;
    border: none;
    color: #aaa;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #333;
    color: #fff;
}

.modal-body {
    padding: 25px 30px 30px 30px;
    overflow-y: auto;
    color: #b5b5b5;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.modal-date {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.modal-body h3 {
    color: #ff6600;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
}

.modal-body p {
    margin-bottom: 12px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body ul li {
    margin-bottom: 8px;
}

.modal-body ul li strong {
    color: #ddd;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Mobil Uyum */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* FOOTER DÜZELTME STİLLERİ */
.main-footer {
    width: 100%;
    background-color: #0d0d0e; /* Arka plan tonu */
    padding: 60px 0 20px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px; /* İçeriği 1200px genişliğe kadar yayar */
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Sol tarafı biraz daha geniş tutar */
    gap: 40px;
}

.footer-about p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    max-width: 320px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #ff8c00; /* Vurgu renginiz */
}

.footer-bottom {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

/* Mobil / Ekran Uyumluluğu */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}