/* --- 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; }

/* --- 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;
    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);
}

/* NPC Modal için özel override - Ana boss-modal-img kuralını ezme */
#npcModal .boss-modal-img {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.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: flex;
    align-items: center;
    justify-content: center;
    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;
}

.game-content-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.game-content-message img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.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; 
    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 {
    display: block;
    right: 30px;
    animation: slideInRight 0.3s ease-out;
}

.system-info-panel.show-left {
    display: block;
    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: 35px; }
.swiper-pagination { position: absolute !important; bottom: 5px !important; height: auto !important; }
#dungeons .swiper-wrapper { align-items: flex-start; height: auto !important; }
#dungeons .swiper-slide { height: auto !important; }
#dungeons .container { padding-bottom: 0; }
#dungeons { padding-bottom: 30px !important; }
#npcs-content .swiper-wrapper { align-items: flex-start; height: auto !important; }
#npcs-content .swiper-slide { height: auto !important; }
#npcs-content { padding-bottom: 30px !important; }
.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); }
.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; }

/* === FLOATING SOCIAL BUTTONS === */
#floating-social-buttons {
    position: fixed;
    bottom: 90px; /* Yukarı ok butonunun üstünde */
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.social-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 36px;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scale(0);
}

.social-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-btn:hover {
    transform: translateY(-8px) scale(1.15) rotate(5deg);
}

/* Discord Button - Enhanced Animations */
.discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    animation: discordEntrance 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s both;
    position: relative;
}

.discord-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3c45a3);
    box-shadow: 
        0 12px 40px rgba(88, 101, 242, 0.8),
        0 0 0 0 rgba(88, 101, 242, 0.4);
    animation: discordPulse 2s infinite, discordFloat 3s ease-in-out infinite;
    transform: translateY(-8px) scale(1.15) rotate(-3deg);
}

.discord-btn:hover::after {
    width: 100%;
    height: 100%;
}

.discord-btn:active {
    transform: translateY(-5px) scale(1.05);
    transition: all 0.1s ease;
}

/* Discord Entrance Animation */
@keyframes discordEntrance {
    0% {
        transform: translateX(100px) rotate(180deg) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateX(-10px) rotate(90deg) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

/* Discord Pulse Animation */
@keyframes discordPulse {
    0%, 100% { 
        box-shadow: 
            0 12px 40px rgba(88, 101, 242, 0.8),
            0 0 0 0 rgba(88, 101, 242, 0.4);
    }
    50% { 
        box-shadow: 
            0 12px 40px rgba(88, 101, 242, 0.8),
            0 0 0 20px rgba(88, 101, 242, 0);
    }
}

/* Discord Float Animation */
@keyframes discordFloat {
    0%, 100% { 
        transform: translateY(-8px) scale(1.15) rotate(-3deg);
    }
    50% { 
        transform: translateY(-12px) scale(1.18) rotate(3deg);
    }
}

/* Discord Glow Effect */
.discord-btn {
    position: relative;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #5865F2, #4752C4, #5865F2);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: discordGlowRotate 3s linear infinite;
}

.discord-btn:hover::before {
    opacity: 0.7;
}

@keyframes discordGlowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Social Buttons */
@media (max-width: 768px) {
    #floating-social-buttons {
        bottom: 80px;
        right: 20px;
        gap: 15px;
    }
    
    .social-btn {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    
    .social-btn:hover {
        transform: translateY(-5px) scale(1.1) rotate(3deg);
    }
    
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
footer { padding: 40px; background: #000; text-align: center; border-top: 1px solid #222; color: #666; }

/* === SCROLL-TRIGGERED DISCORD POPUP === */
.discord-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.discord-popup.show {
    opacity: 1;
    visibility: visible;
}

.discord-popup.hidden {
    opacity: 0;
    visibility: hidden;
}

.discord-popup-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #5865F2;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
    animation: popupSlideIn 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.discord-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;
}

.discord-popup-close:hover {
    color: #5865F2;
    transform: scale(1.1);
}

.discord-popup-header {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.discord-popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="discord-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23discord-pattern)"/></svg>');
    opacity: 0.3;
}

.discord-popup-header i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

.discord-popup-header h3 {
    margin: 0;
    font-size: 24px;
    font-family: 'Cinzel', serif;
    position: relative;
    z-index: 1;
}

.discord-popup-body {
    padding: 25px;
    color: #e0e0e0;
    text-align: center;
}

.discord-popup-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.discord-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.discord-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #ddd;
}

.discord-benefits i {
    color: #5865F2;
    font-size: 12px;
    width: 16px;
}

.discord-popup-footer {
    padding: 20px 25px 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.discord-join-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-join-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-join-btn:hover::before {
    left: 100%;
}

.discord-join-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3c45a3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.discord-later-btn {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.discord-later-btn:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive Discord Popup */
@media (max-width: 768px) {
    .discord-popup-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .discord-popup-header h3 {
        font-size: 20px;
    }
    
    .discord-popup-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .discord-join-btn,
    .discord-later-btn {
        width: 100%;
        justify-content: center;
    }
}

@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;
    .discord-later-btn:hover {
        background: #d4af37;
        color: #000;
        transform: translateY(-2px);
    }
}

/* === MUSIC AUTO-PLAY NOTIFICATION === */
#music-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: musicNotificationSlideIn 0.5s ease-out;
}

.music-notification-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #d4af37;
    border-radius: 25px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.music-notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: musicNotificationShimmer 2s infinite;
}

.music-notification-content i {
    color: #d4af37;
    font-size: 16px;
    animation: musicNotificationPulse 1.5s infinite;
}

.music-notification-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.music-notification-close:hover {
    color: #d4af37;
}

#music-notification.fade-out {
    animation: musicNotificationFadeOut 0.3s ease-out forwards;
}

@keyframes musicNotificationSlideIn {
    from {
        transform: translateX(-50%) translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes musicNotificationFadeOut {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }
}

@keyframes musicNotificationShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes musicNotificationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Music Notification */
@media (max-width: 768px) {
    #music-notification {
        top: 80px;
        left: 20px;
        right: 20px;
        transform: none;
    }
    
    .music-notification-content {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* === RIGHT CLICK PROTECTION === */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Protection Notification */
.protection-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    animation: protectionSlideIn 0.3s ease-out;
}

.protection-content {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
    font-weight: bold;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.protection-content i {
    font-size: 24px;
    color: #fff;
}

.protection-notification.fade-out {
    animation: protectionFadeOut 0.3s ease-out forwards;
}

@keyframes protectionSlideIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes protectionFadeOut {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

/* Disable image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Re-enable pointer events for interactive elements */
a, button, input, textarea, select, .social-btn, .btn, .card, .nav-links a, #music-player, #effect-toggle, #floating-social-buttons {
    pointer-events: auto;
}

/* Disable text highlighting */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}
}
/* === NPC'ler ve İçerikler Bölümü === */
.npcs-content-section {
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.tab-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    color: rgba(212, 175, 55, 0.9);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 31, 0.2));
    border-color: rgba(212, 175, 55, 0.6);
    color: rgba(212, 175, 55, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tab-btn i {
    font-size: 16px;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Boss Cards */
.bosses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.boss-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.boss-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.boss-image {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(75, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.boss-image::before {
    content: "👹";
    font-size: 60px;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.boss-level {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(212, 175, 55, 0.9);
    color: rgba(26, 26, 26, 1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.boss-info {
    padding: 20px;
}

.boss-info h3 {
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.boss-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.boss-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.boss-stats .stat {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.boss-stats .stat i {
    color: rgba(212, 175, 55, 0.8);
    margin-right: 4px;
}

.boss-rewards h4 {
    color: rgba(212, 175, 55, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
}

.boss-rewards ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boss-rewards li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 2px 0;
    position: relative;
    padding-left: 15px;
}

.boss-rewards li:before {
    content: "•";
    color: rgba(212, 175, 55, 0.8);
    position: absolute;
    left: 0;
}

/* NPC Cards */
.npcs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.npc-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.npc-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.npc-image {
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.npc-image::before {
    content: "👤";
    font-size: 40px;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.npc-info {
    padding: 15px;
}

.npc-info h3 {
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.npc-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.npc-services {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.npc-services .service {
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(60, 60, 60, 0.6);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.npc-services .service i {
    color: rgba(212, 175, 55, 0.8);
    margin-right: 6px;
    width: 14px;
}

/* Dungeon Cards */
.dungeons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.dungeon-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dungeon-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.dungeon-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.3), rgba(0, 0, 139, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.dungeon-image::before {
    content: "🏰";
    font-size: 50px;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.dungeon-level {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(212, 175, 55, 0.9);
    color: rgba(26, 26, 26, 1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.dungeon-info {
    padding: 18px;
}

.dungeon-info h3 {
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
}

.dungeon-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.dungeon-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.dungeon-features .feature {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(60, 60, 60, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.dungeon-features .feature i {
    color: rgba(212, 175, 55, 0.8);
    margin-right: 4px;
}

.dungeon-rewards {
    margin-top: 15px;
}

.dungeon-rewards h4 {
    color: rgba(212, 175, 55, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
}

.dungeon-rewards ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dungeon-rewards li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 2px 0;
    position: relative;
    padding-left: 15px;
}

.dungeon-rewards li:before {
    content: "•";
    color: rgba(212, 175, 55, 0.8);
    position: absolute;
    left: 0;
}

/* Items Grid */
.items-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.item-category h3 {
    color: rgba(212, 175, 55, 0.9);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-category h3 i {
    color: rgba(212, 175, 55, 0.8);
}

.items-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.item-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(60, 60, 60, 0.8);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.item-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.item-card.legendary {
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(255, 165, 0, 0.05);
}

.item-card.epic {
    border-color: rgba(147, 112, 219, 0.6);
    background: rgba(147, 112, 219, 0.05);
}

.item-image {
    width: 60px;
    height: 60px;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.item-image::before {
    content: "💎";
    font-size: 30px;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.item-info {
    flex: 1;
}

.item-info h4 {
    color: rgba(212, 175, 55, 0.9);
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
}

.item-card.legendary .item-info h4 {
    color: rgba(255, 165, 0, 0.9);
}

.item-card.epic .item-info h4 {
    color: rgba(147, 112, 219, 0.9);
}

.item-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 8px;
}

.item-stats {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-stats .stat {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .npcs-content-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .tab-buttons {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-btn i {
        font-size: 18px;
    }
    
    .bosses-grid,
    .npcs-grid,
    .dungeons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .items-list {
        grid-template-columns: 1fr;
    }
    
    .boss-image,
    .dungeon-image {
        height: 120px;
    }
    
    .boss-info,
    .dungeon-info {
        padding: 15px;
    }
    
    .item-card {
        padding: 12px;
        gap: 12px;
    }
    
    .item-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        justify-content: space-around;
        gap: 5px;
    }
    
    .tab-btn {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .boss-stats,
    .dungeon-features {
        flex-direction: column;
        gap: 6px;
    }
    
    .npc-services .service {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* NPC Showcase Section */
.npcs-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.npc-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    max-width: 200px;
}

.npc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.npc-card:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.npc-card:hover::before {
    opacity: 1;
}

.npc-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.npc-card:hover .npc-image {
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.npc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.npc-card:hover .npc-image img {
    transform: scale(1.1);
}

.npc-name {
    color: rgba(212, 175, 55, 0.9);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.npc-card:hover .npc-name {
    color: rgba(212, 175, 55, 1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Mobile Responsive for NPC Showcase */
@media (max-width: 768px) {
    .npcs-showcase {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .npc-card {
        min-width: 150px;
        max-width: 160px;
        padding: 15px;
    }
    
    .npc-image {
        width: 100px;
        height: 100px;
    }
    
    .npc-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .npcs-showcase {
        flex-direction: column;
        gap: 15px;
    }
    
    .npc-card {
        min-width: 140px;
        max-width: 200px;
    }
}

/* ===== NPC SHOWCASE SECTION ===== */
.npcs-showcase {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.npc-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 120px;
}

.npc-card:hover {
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.npc-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.npc-card:hover .npc-image {
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.npc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.npc-card:hover .npc-image img {
    transform: scale(1.1);
}

.npc-placeholder {
    font-size: 30px;
    color: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.npc-name {
    color: rgba(212, 175, 55, 0.9);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    flex: 1;
}

.npc-card:hover .npc-name {
    color: rgba(212, 175, 55, 1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .npcs-showcase {
        gap: 12px;
        padding: 30px 15px;
        max-width: 100%;
    }
    
    .npc-card {
        padding: 15px;
        min-height: 100px;
        gap: 15px;
    }
    
    .npc-image {
        width: 60px;
        height: 60px;
    }
    
    .npc-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .npc-card {
        padding: 12px;
        min-height: 80px;
        gap: 12px;
    }
    
    .npc-image {
        width: 50px;
        height: 50px;
    }
    
    .npc-name {
        font-size: 14px;
    }
}
/* NPC Modal - Sadece Fotoğraf Gösterimi için Özel Düzenleme */
#npcModal .boss-modal-content {
    width: fit-content !important;
    max-width: 90vw !important;
    height: fit-content !important;
    max-height: 90vh !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 5vh auto !important;
}

#npcModal .boss-modal-body {
    padding: 20px !important;
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
}

#npcModal .boss-info-container {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-template-columns: 1fr !important;
}

#npcModal .boss-image-section {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

#npcModal .boss-modal-img,
#npcModal #npcModalImage {
    width: auto !important;
    height: auto !important;
    max-width: 80vw !important;
    max-height: 70vh !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    border: none !important;
    display: block !important;
    margin: 0 auto !important;
}

#npcModal .boss-details-section {
    display: none !important;
}

/* Modal header ve footer düzenlemesi */
#npcModal .boss-modal-header {
    text-align: center !important;
    padding: 15px 20px !important;
    flex-shrink: 0 !important;
}

#npcModal .boss-modal-footer {
    text-align: center !important;
    padding: 15px 20px !important;
    flex-shrink: 0 !important;
}

/* Tüm border-radius'ları kaldır - En güçlü kurallar */
#npcModal img,
#npcModal .boss-modal-img,
#npcModal #npcModalImage {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* NPC Modal için özel override - Ana boss-modal-img kuralını ezme */
#npcModal.npc-photo-modal .boss-modal-img {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

/* Tüm NPC modal elementleri için border-radius sıfırlama */
#npcModal * {
    border-radius: 0 !important;
}

/* Sadece modal header ve footer için border-radius geri ver */
#npcModal .boss-modal-header {
    border-radius: 8px 8px 0 0 !important;
}

#npcModal .boss-modal-footer {
    border-radius: 0 0 8px 8px !important;
}

/* === SIRALAMA ÖDÜLLERİ - GELİŞTİRİLMİŞ ANİMASYONLAR === */
.rewards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rewards-section {
    background: transparent;
    text-align: center;
}

.rewards-week-title {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    position: relative;
}

.rewards-week-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    padding: 0.8rem 1.5rem;
    min-width: 400px;
    justify-content: flex-start;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reward-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.reward-item:hover::before {
    left: 100%;
}

.reward-item:hover {
    transform: translateX(15px) scale(1.02);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.reward-icon {
    font-size: 1.5rem;
    color: #d4af37;
    min-width: 30px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: all 0.4s ease;
}

.rank-number {
    font-weight: 700;
    min-width: 30px;
    text-align: left;
    font-family: 'Cinzel', serif;
}

.separator {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.reward-amount {
    flex: 1;
    text-align: left;
    margin-left: 0.5rem;
}

/* Hover efektleri */
.reward-item:hover .reward-icon {
    transform: scale(1.3);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
}

.reward-item:hover .separator {
    transform: translateX(5px);
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.reward-item:hover .rank-number,
.reward-item:hover .reward-amount {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Özel sıralama renkleri ve güçlü animasyonlar */
.reward-item.rank-1 {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.reward-item.rank-1 .reward-icon {
    color: #ffd700;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: crownBounce 1.5s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
    25% { 
        transform: translateY(-8px) scale(1.15) rotate(-5deg);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
    50% { 
        transform: translateY(-12px) scale(1.2) rotate(0deg);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1.2));
    }
    75% { 
        transform: translateY(-8px) scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
}

.reward-item.rank-2 {
    color: #c0c0c0;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.5);
    background: rgba(192, 192, 192, 0.05);
    border-color: rgba(192, 192, 192, 0.2);
}

.reward-item.rank-2 .reward-icon {
    color: #c0c0c0;
    font-size: 1.7rem;
    filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.7));
    animation: medalSwing 2s ease-in-out infinite;
}

@keyframes medalSwing {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.7));
    }
    25% { 
        transform: rotate(-15deg) scale(1.1);
        filter: drop-shadow(0 0 18px rgba(192, 192, 192, 0.9));
    }
    50% { 
        transform: rotate(0deg) scale(1.15);
        filter: drop-shadow(0 0 20px rgba(192, 192, 192, 1));
    }
    75% { 
        transform: rotate(15deg) scale(1.1);
        filter: drop-shadow(0 0 18px rgba(192, 192, 192, 0.9));
    }
}

.reward-item.rank-3 {
    color: #cd7f32;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(205, 127, 50, 0.5);
    background: rgba(205, 127, 50, 0.05);
    border-color: rgba(205, 127, 50, 0.2);
}

.reward-item.rank-3 .reward-icon {
    color: #cd7f32;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(205, 127, 50, 0.6));
    animation: awardPulse 1.8s ease-in-out infinite;
}

@keyframes awardPulse {
    0%, 100% { 
        transform: scale(1) rotateY(0deg);
        filter: drop-shadow(0 0 10px rgba(205, 127, 50, 0.6));
    }
    33% { 
        transform: scale(1.12) rotateY(120deg);
        filter: drop-shadow(0 0 15px rgba(205, 127, 50, 0.8));
    }
    66% { 
        transform: scale(1.08) rotateY(240deg);
        filter: drop-shadow(0 0 18px rgba(205, 127, 50, 1));
    }
}

/* Diğer sıralar için güçlü animasyonlar */
.reward-item:not(.rank-1):not(.rank-2):not(.rank-3) .reward-icon {
    animation: starDance 2.5s ease-in-out infinite;
}

@keyframes starDance {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    }
    20% { 
        transform: scale(1.1) rotate(72deg);
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    }
    40% { 
        transform: scale(1.15) rotate(144deg);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    }
    60% { 
        transform: scale(1.1) rotate(216deg);
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    }
    80% { 
        transform: scale(1.05) rotate(288deg);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
}

/* Gem ikonları için özel güçlü animasyon */
.reward-item .fa-gem {
    animation: gemSparkle 2s ease-in-out infinite !important;
}

@keyframes gemSparkle {
    0%, 100% { 
        transform: scale(1) rotateX(0deg) rotateY(0deg);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    }
    25% { 
        transform: scale(1.15) rotateX(90deg) rotateY(90deg);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    }
    50% { 
        transform: scale(1.2) rotateX(180deg) rotateY(180deg);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 1));
    }
    75% { 
        transform: scale(1.15) rotateX(270deg) rotateY(270deg);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .rewards-container {
        gap: 2.5rem;
        margin-top: 2rem;
    }
    
    .rewards-section {
        padding: 20px;
    }
    
    .reward-item {
        padding: 12px;
        min-width: 300px;
        font-size: 1rem;
    }
    
    .rewards-week-title {
        font-size: 1.5rem;
    }
    
    .reward-item.rank-1 {
        font-size: 1.2rem;
    }
    
    .reward-item.rank-2 {
        font-size: 1.1rem;
    }
}

/* === TL ÖDÜLLÜ TURNUVALAR === */
.tournament-main-section {
    margin-bottom: 4rem;
}

.tournament-section-title {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    text-align: center;
    position: relative;
}

.tournament-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.tournament-description {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tournament-description p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(26, 26, 26, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.tournament-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.tournament-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    padding: 1rem 1.5rem;
    min-width: 500px;
    justify-content: flex-start;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tournament-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.tournament-item:hover::before {
    left: 100%;
}

.tournament-item:hover {
    transform: translateX(15px) scale(1.02);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.tournament-icon {
    font-size: 1.5rem;
    color: #d4af37;
    min-width: 30px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: all 0.4s ease;
    animation: tournamentIconFloat 3s ease-in-out infinite;
}

@keyframes tournamentIconFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    }
    50% { 
        transform: translateY(-5px) scale(1.1);
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    }
}

.tournament-type {
    font-weight: 600;
    min-width: 200px;
    text-align: left;
    font-family: 'Cinzel', serif;
}

.tournament-separator {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.tournament-prize {
    flex: 1;
    text-align: left;
    margin-left: 0.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Özel turnuva türleri */
.karma-tournament {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
}

.karma-tournament .tournament-icon {
    color: #8a2be2;
    animation: karmaRotate 4s linear infinite;
}

@keyframes karmaRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.character-tournament {
    background: rgba(255, 69, 0, 0.1);
    border-color: rgba(255, 69, 0, 0.3);
}

.character-tournament .tournament-icon {
    color: #ff4500;
    animation: ninjaFlip 2s ease-in-out infinite;
}

@keyframes ninjaFlip {
    0%, 100% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
}

/* Lonca Turnuva Grid */
.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.tournament-category {
    background: rgba(26, 26, 26, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.tournament-category:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.category-header {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.big-category {
    background: linear-gradient(135deg, #4169e1, #1e90ff);
    color: #fff;
}

.mini-category {
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: #fff;
}

.category-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: categoryIconBounce 2s ease-in-out infinite;
}

@keyframes categoryIconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.category-rewards {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-rewards .tournament-item {
    min-width: auto;
    width: 100%;
}

/* Tournament Image Section */
.tournament-image-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Tournament Responsive Design */
@media (max-width: 768px) {
    .tournament-item {
        min-width: 300px;
        padding: 0.6rem 1rem;
        gap: 0.8rem;
    }
    
    .tournament-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tournament-category {
        margin: 0 1rem;
    }
    
    .tournament-description {
        margin: 0 1rem 2rem 1rem;
    }
    
    .tournament-list {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .tournament-item {
        min-width: 250px;
        padding: 0.5rem 0.8rem;
        gap: 0.6rem;
        font-size: 1rem;
    }
    
    .tournament-section-title {
        font-size: 1.5rem;
    }
    
    .category-header {
        font-size: 1.1rem;
        padding: 1rem;
    }
}
/* === BİYOLOG TABLOSU === */
.biyolog-table-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin: 0;
    padding: 0;
}

.biyolog-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    background: transparent;
    margin: 0;
    padding: 0;
}

.biyolog-table thead {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.biyolog-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;
    margin: 0;
}

.biyolog-table th:last-child {
    border-right: none;
}

.level-header { width: 10%; }
.item-header { width: 40%; }
.duration-header { width: 20%; }
.reward-header { width: 30%; }

.biyolog-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    margin: 0;
}

.biyolog-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(0) scale(1.02);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.biyolog-table tbody tr:last-child {
    border-bottom: none;
}

.biyolog-table td {
    padding: 12px;
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 14px;
    color: #e0e0e0;
    margin: 0;
    vertical-align: middle;
}

.biyolog-table td:last-child {
    border-right: none;
}

.level-cell {
    font-weight: 600;
    color: #d4af37 !important;
    font-size: 16px !important;
    background: rgba(212, 175, 55, 0.1);
}

.item-cell {
    text-align: left !important;
    padding-left: 15px !important;
    font-weight: 500;
    color: #fff !important;
}

.duration-cell {
    font-weight: 600;
    color: #ff6b6b !important;
}

.reward-cell {
    font-weight: 600;
    color: #4ecdc4 !important;
    line-height: 1.4;
}

/* Animasyonlu Tablo */
.animated-table tbody tr.table-row {
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover animasyonu */
.biyolog-table tbody tr:hover .level-cell {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.biyolog-table tbody tr:hover .reward-cell {
    color: #d4af37 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Biyolog tablosu için özel düzenleme */
.onsoz-combined .biyolog-table-container {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 0 10px 10px !important;
}

.onsoz-combined .biyolog-table-container:last-child {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

/* Responsive Biologist Table */
@media (max-width: 768px) {
    .biyolog-table th,
    .biyolog-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .level-cell {
        font-size: 14px !important;
    }
    
    .item-cell {
        padding-left: 10px !important;
    }
}