/* --- GENEL AYARLAR --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #050505; color: #e0e0e0; font-family: 'Roboto', sans-serif;
    line-height: 1.6; overflow-x: hidden;
}
h1, h2, h3, h4, .logo { font-family: 'Cinzel', serif; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.gold-text { color: #d4af37; }

/* --- EFEKT CANVAS --- */
#particle-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 900; /* İçeriğin altında, arka planın üstünde */
    pointer-events: none; /* Tıklamaları engelleme */
}

/* --- EFEKT BUTONU (SAĞ ÜST) --- */
#effect-toggle {
    position: fixed; top: 90px; right: 20px; /* Navbar'ın hemen altına */
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(0,0,0,0.8); border: 2px solid #d4af37;
    color: #d4af37; display: flex; justify-content: center; align-items: center;
    cursor: pointer; z-index: 2000; font-size: 20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); transition: 0.3s;
}
#effect-toggle:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }

/* --- MÜZİK ÇALAR (SOL ALT) --- */
#music-player {
    position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px;
    z-index: 2000; cursor: pointer; display: flex; justify-content: center; align-items: center;
    transition: 0.3s;
}
.vinyl-record {
    width: 100%; height: 100%; border-radius: 50%;
    background: radial-gradient(#111 40%, #333 41%, #111 42%, #333 50%, #111 51%, #000 100%);
    border: 2px solid #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    position: absolute; transition: 0.5s;
}
.vinyl-center {
    width: 30%; height: 30%; background: #d4af37; border-radius: 50%;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border: 3px solid #000;
}
.control-icon { z-index: 2; color: #fff; font-size: 20px; text-shadow: 0 0 5px #000; opacity: 1; transition: 0.3s; }
.vinyl-record.spinning { animation: spinRecord 3s linear infinite; box-shadow: 0 0 25px #d4af37; }
#music-player.playing .control-icon { opacity: 0; } /* Çalarken ikonu gizle */
#music-player:hover .control-icon { opacity: 1; } /* Hoverda göster */
@keyframes spinRecord { to { transform: rotate(360deg); } }

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px; background: rgba(0, 0, 0, 0.95);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); backdrop-filter: blur(10px);
    box-sizing: border-box;
}
.logo { 
    font-size: 28px; 
    font-weight: bold; 
    color: #fff; 
    text-shadow: 0 0 10px #d4af37;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.logo-link { 
    color: #fff; 
    text-decoration: none; 
    transition: all 0.3s ease;
    cursor: pointer;
}
.logo-link:hover { 
    color: #d4af37; 
    text-shadow: 0 0 15px #d4af37; 
    transform: scale(1.05);
}
.logo-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}
.nav-links { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-links a { 
    font-weight: 500; 
    font-size: 14px; 
    text-transform: uppercase; 
    white-space: nowrap;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-links a:hover { color: #d4af37; text-shadow: 0 0 5px #d4af37; }
.download-btn {
    background: linear-gradient(45deg, #d4af37, #b49321); color: #000 !important;
    padding: 10px 25px; border-radius: 3px; font-weight: bold;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- HERO --- */
.hero-section {
    position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: 80px;
}
.back-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.9) 100%); z-index: -1; }
.hero-container { display: flex; align-items: center; justify-content: center; gap: 50px; z-index: 1; max-width: 1200px; padding: 0 20px; width: 100%; }
.hero-image-box { flex: 1; display: flex; justify-content: flex-end; perspective: 1000px; }
.main-char-img { max-width: 100%; max-height: 550px; filter: drop-shadow(0 0 30px rgba(0,0,0,0.8)); }
.hero-content { flex: 1; text-align: left; }
.hero-content h1 {
    font-size: 50px; color: transparent;
    background: linear-gradient(to bottom, #fff, #d4af37); -webkit-background-clip: text;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); line-height: 1.1; margin-bottom: 15px;
}
.hero-buttons { 
    display: flex; 
    gap: 15px; 
    margin-top: 25px; 
    flex-wrap: wrap;
    justify-content: center;
}
.btn { padding: 15px 30px; border-radius: 3px; font-weight: bold; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; }
.btn.primary { background: #d4af37; color: #000; box-shadow: 0 0 15px rgba(212,175,55,0.3); }
.btn.primary:hover { background: #fff; box-shadow: 0 0 25px #fff; }
.btn.secondary { border: 2px solid #d4af37; color: #d4af37; background: rgba(0,0,0,0.5); }
.btn.secondary:hover { background: #d4af37; color: #000; box-shadow: 0 0 15px #d4af37; }

/* --- BOSS MODAL --- */
.boss-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.boss-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid #d4af37;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.boss-modal-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    padding: 15px 20px;
    border-radius: 13px 13px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cinzel', serif;
}

.boss-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.boss-modal-close {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.boss-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.boss-modal-body {
    padding: 20px;
    color: #e0e0e0;
}

.boss-info-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.boss-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.boss-modal-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.boss-details-section h3 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.boss-details-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.boss-features h4,
.boss-drops h4 {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.boss-features ul {
    list-style: none;
    padding: 0;
}

.boss-features li {
    background: rgba(212, 175, 55, 0.1);
    margin-bottom: 8px;
    padding: 10px 15px;
    border-left: 3px solid #d4af37;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.boss-features li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 40px);
    gap: 5px;
    background: url('img/blur.webp') center/cover, rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    position: relative;
}

.drop-item {
    width: 40px;
    height: 40px;
    background: rgba(50, 50, 50, 0.8);
    border: 1px solid #666;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-item:hover {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: scale(1.1);
}

.boss-modal-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 0 0 13px 13px;
    text-align: center;
}

.boss-modal-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.boss-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Dungeon cards tıklanabilir */
.dungeon-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dungeon-card:hover {
    transform: scale(1.05);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .boss-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .boss-info-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .boss-modal-img {
        width: 200px;
        height: 200px;
    }
    
    .boss-modal-header h2 {
        font-size: 20px;
    }
    
    .boss-details-section h3 {
        font-size: 24px;
    }
}

/* --- BÖLÜMLER --- */
.section { padding: 100px 20px; background-color: #050505; }
.dark-bg { background-color: #080808; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
    text-align: center; font-size: 36px; margin-bottom: 60px; position: relative; display: table; margin-left: auto; margin-right: auto;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c); -webkit-background-clip: text; color: transparent;
    text-shadow: 0px 0px 20px rgba(212, 175, 55, 0.4); padding-bottom: 15px;
}
.section-title::after { content: ''; display: block; width: 120%; height: 2px; background: linear-gradient(90deg, transparent, #d4af37, transparent); position: absolute; bottom: 0; left: -10%; }
.section-title::before { content: '♦'; position: absolute; bottom: -11px; left: 50%; transform: translateX(-50%); color: #d4af37; font-size: 14px; background: #050505; padding: 0 10px; text-shadow: 0 0 10px #d4af37; }
.dark-bg .section-title::before { background: #080808; }

/* --- KARTLAR & KUTULAR --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card {
    background: linear-gradient(145deg, #111, #0d0d0d); padding: 40px 20px; border: 1px solid #222; border-radius: 5px; text-align: center;
    transition: transform 0.1s ease, box-shadow 0.3s ease; perspective: 1000px;
}
.card:hover { border-color: #d4af37; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1); }
.card-icon { font-size: 40px; color: #d4af37; margin-bottom: 20px; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
.card h3 { color: #fff; margin-bottom: 10px; font-size: 20px; }
.card p { color: #888; font-size: 14px; }
.banner-box, .dungeon-img-box, .grid-img, .hero-image-box { position: relative; transition: transform 0.1s ease-out, box-shadow 0.3s ease; transform-style: preserve-3d; perspective: 1000px; }
.banner-box { width: 100%; border: 1px solid #333; border-radius: 10px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.banner-box:hover, .dungeon-img-box:hover, .grid-img:hover { box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); border-color: #d4af37; }
.banner-box img, .dungeon-img-box img, .grid-img img { width: 100%; height: auto; display: block; }

/* Birden fazla fotoğraf için özel stil */
.banner-box img + img {
    margin-top: 0;
    border-top: 1px solid #333;
}

/* Efsun oranları tablosu */
.efsun-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden; /* Kaydırma çubuğunu kaldırdık */
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
}

.efsun-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    background: transparent;
}

.efsun-table thead {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.efsun-table th {
    padding: 15px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.efsun-table th:last-child {
    border-right: none;
}

.bonus-header {
    width: 50%;
    text-align: left !important;
    padding-left: 20px !important;
}

.degree-header {
    width: 16.66%;
}

.efsun-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.efsun-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.01);
}

.efsun-table tbody tr:last-child {
    border-bottom: none;
}

.efsun-table td {
    padding: 12px;
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
    color: #e0e0e0;
}

.efsun-table td:last-child {
    border-right: none;
}

.bonus-name {
    text-align: left !important;
    padding-left: 20px !important;
    font-weight: 500;
    color: #d4af37 !important;
    font-size: 15px !important;
}

.bonus-value {
    font-weight: 600;
    color: #fff !important;
    font-size: 16px !important;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
}

/* Şimşek emojileri kaldırıldı */

/* Responsive tablo */
@media (max-width: 768px) {
    .efsun-table-container {
        margin: 0 -1rem;
        border-radius: 0;
        overflow-x: auto; /* Mobilde kaydırma gerekebilir */
    }
    
    .efsun-table th,
    .efsun-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .bonus-name {
        font-size: 13px !important;
        padding-left: 12px !important;
    }
    
    .bonus-value {
        font-size: 14px !important;
    }
}
.system-block { margin-bottom: 60px; }
.block-title { color: #fff; margin-bottom: 15px; font-size: 22px; padding-left: 15px; border-left: 4px solid #d4af37; background: linear-gradient(90deg, rgba(212,175,55,0.1), transparent); }
.info-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.info-box { flex: 1; background: #111; border: 1px solid #333; min-width: 300px; box-shadow: 0 0 15px rgba(0,0,0,0.5); transition: 0.3s; }
.info-box:hover { border-color: #555; box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
.info-box h3 { background: #1a1a1a; padding: 20px; margin: 0; border-bottom: 2px solid #d4af37; color: #d4af37; font-size: 18px; display: flex; align-items: center; gap: 10px; }
.info-list { padding: 20px; }
.info-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #333; font-size: 14px; color: #ccc; }
.right-val { font-weight: bold; color: #fff; }
.right-val.active { color: #2ecc71; text-shadow: 0 0 5px rgba(46, 204, 113, 0.3); }
.right-val.passive { color: #e74c3c; }
.image-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 30px; }

/* Otomatik sistemler için yeni grid - 2'li düzenli sütun */
.image-grid-auto { 
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.image-grid-auto .grid-img {
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-grid-auto .grid-img:hover {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.image-grid-auto .grid-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* System Info Panel */
.system-info-panel {
    display: none;
    position: fixed;
    top: 50%;
    z-index: 10000;
    transform: translateY(-50%);
    width: 350px;
    max-height: 80vh;
    overflow-y: auto;
}

.system-info-panel.show-right {
    right: 30px;
    animation: slideInRight 0.3s ease-out;
}

.system-info-panel.show-left {
    left: 30px;
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInRight {
    from { transform: translateY(-50%) translateX(100px); opacity: 0; }
    to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateY(-50%) translateX(-100px); opacity: 0; }
    to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

.system-info-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    overflow: hidden;
}

.system-info-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cinzel', serif;
}

.system-info-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.system-info-close {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.system-info-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.system-info-body {
    padding: 20px;
    color: #e0e0e0;
}

.system-info-body p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.system-features {
    margin-top: 15px;
}

.system-features h4 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.system-features ul {
    list-style: none;
    padding: 0;
}

.system-features li {
    background: rgba(212, 175, 55, 0.1);
    margin-bottom: 6px;
    padding: 8px 12px;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.system-features li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    font-size: 14px;
}

.grid-img { border-radius: 10px; border: 1px solid #333; overflow: hidden; }

/* --- ZİNDAN --- */
.swiper { width: 100%; padding-bottom: 50px; }
.dungeon-img-box { height: 400px; position: relative; border-radius: 10px; overflow: hidden; border: 1px solid #333; }
.dungeon-img-box img { width: 100%; height: 100%; object-fit: cover; }
.dungeon-overlay { position: absolute; bottom: 0; width: 100%; background: linear-gradient(to top, #000 0%, transparent 100%); padding: 20px; text-align: center; }
.dungeon-overlay h4 { color: #d4af37; margin: 0; font-size: 22px; text-shadow: 0 2px 5px #000; }
.swiper-pagination-bullet-active { background-color: #d4af37 !important; }

/* --- DİĞERLERİ --- */
.req-grid { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.req-box { flex: 1; min-width: 300px; max-width: 500px; background: #111; border: 1px solid #333; border-radius: 10px; padding: 30px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.req-box h3 { color: #d4af37; border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 20px; font-size: 20px; }
.req-box ul li { display: flex; justify-content: space-between; border-bottom: 1px dashed #222; padding: 10px 0; color: #ccc; }
.req-box ul li strong { color: #fff; }
.req-box.recommended { border-color: #d4af37; background: linear-gradient(145deg, #161616, #0f0f0f); }
.download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.dl-card { background: #1a1a1a; padding: 25px; border-radius: 8px; text-align: center; border: 1px solid #333; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: 0.3s; }
.dl-card i { font-size: 30px; color: #fff; margin-bottom: 5px; }
.dl-card span { font-weight: bold; font-size: 16px; color: #d4af37; }
.dl-card small { font-size: 12px; color: #888; }
.dl-card.google:hover { background: #4285F4; border-color: #4285F4; }
.dl-card.mega:hover { background: #D9272E; border-color: #D9272E; }
.dl-card.mediafire:hover { background: #0070C9; border-color: #0070C9; }
.dl-card.direct:hover { background: #27ae60; border-color: #27ae60; }
.dl-card:hover span, .dl-card:hover i, .dl-card:hover small { color: #fff; }
.virus-scan { text-align: center; color: #2ecc71; font-size: 14px; margin-top: 20px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #111; border: 1px solid #333; border-radius: 5px; margin-bottom: 15px; overflow: hidden; }
.faq-item summary { padding: 15px 20px; cursor: pointer; font-weight: bold; color: #fff; list-style: none; position: relative; transition: 0.3s; }
.faq-item summary:hover { color: #d4af37; background: #161616; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 20px; font-weight: bold; color: #d4af37; font-size: 18px; }
.faq-item[open] summary::after { content: '-'; }
.faq-item[open] summary { border-bottom: 1px solid #333; color: #d4af37; }
.faq-item p { padding: 20px; color: #ccc; font-size: 14px; line-height: 1.6; }

/* PRELOADER & SCROLL */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease; }
.loader-content { text-align: center; }
.loader-logo { font-family: 'Cinzel', serif; font-size: 40px; color: #fff; margin-bottom: 20px; animation: pulse 2s infinite; }
.loading-spinner { width: 50px; height: 50px; border: 3px solid rgba(212, 175, 55, 0.3); border-radius: 50%; border-top-color: #d4af37; animation: spin 1s ease-in-out infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
#scrollTopBtn { position: fixed; bottom: 30px; right: 30px; background: #d4af37; color: #000; width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; z-index: 900; box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); opacity: 0; visibility: hidden; transition: 0.3s; border: 2px solid #fff; }
#scrollTopBtn:hover { transform: translateY(-5px); background: #fff; border-color: #d4af37; }
#scrollTopBtn.show { opacity: 1; visibility: visible; }
footer { padding: 40px; background: #000; text-align: center; border-top: 1px solid #222; color: #666; }

@media (max-width: 900px) {
    .navbar { flex-direction: column; padding: 10px 15px; }
    .nav-links { margin-top: 10px; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hero-container { flex-direction: column; text-align: center; margin-top: 80px; }
    .hero-image-box { order: 1; justify-content: center; }
    .hero-content { order: 2; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 10px; 
        max-width: 300px; 
        margin: 25px auto 0; 
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-width: 200px;
    }
    .image-grid-2 { grid-template-columns: 1fr; }
    .image-grid-auto { grid-template-columns: 1fr; gap: 20px; }
    .image-grid-auto .grid-img { height: 300px; }
    
    /* Mobil system info panel */
    .system-info-panel {
        width: 90%;
        left: 5% !important;
        right: auto !important;
    }
    
    .system-info-panel.show-right,
    .system-info-panel.show-left {
        animation: slideInUp 0.3s ease-out;
    }
    
    @keyframes slideInUp {
        from { transform: translateY(-50%) translateY(50px); opacity: 0; }
        to { transform: translateY(-50%) translateY(0); opacity: 1; }
    }
}
/* Additional responsive fixes for navbar */
@media (max-width: 1200px) {
    .navbar {
        padding: 15px 20px;
    }
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 12px 15px;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 13px;
        padding: 4px 6px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 10px;
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        margin-top: 10px;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-links a {
        font-size: 12px;
        padding: 3px 5px;
    }
    .logo {
        font-size: 24px;
    }
    .logo-subtitle {
        font-size: 0.8rem;
    }
}
/* Discord Navigation Button - Compact Version */
.discord-nav-btn {
    background: linear-gradient(135deg, #5865F2, #d4af37) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 13px !important;
}

.discord-nav-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.discord-nav-btn:hover:before {
    left: 100%;
}

.discord-nav-btn:hover {
    background: linear-gradient(135deg, #4752C4, #b8941f) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.5) !important;
    color: white !important;
}

/* Responsive Discord button */
@media (max-width: 1200px) {
    .discord-nav-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 900px) {
    .discord-nav-btn {
        padding: 5px 10px !important;
        font-size: 11px !important;
        margin: 2px !important;
    }
}

@media (max-width: 768px) {
    .discord-nav-btn {
        padding: 4px 8px !important;
        font-size: 10px !important;
        border-radius: 15px !important;
    }
}