/* Dungeon section styled to match main site palette (altın / koyu tema) */
.dungeons-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(24,24,28,0.92), rgba(24,24,28,0.78)), url('../images/background/dungeon-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dungeons-title {
    text-align: center;
    color: #ffe9a7; /* açık altın */
    margin-bottom: 50px;
    font-size: 2.4rem;
    text-transform: uppercase;
    text-shadow: 0 1px 8px #2a210033, 0 0 6px #ffb34744;
}

.dungeons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.dungeon-card {
    background: rgba(24,24,28,0.7);
    border: 1.5px solid #ffb347cc; /* site altın vurgusu */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.dungeon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 28px #ffb34744;
}

.dungeon-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.35));
}

.dungeon-info {
    padding: 18px 20px;
    color: #ffe9a7;
}

.dungeon-name {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #ffb347; /* ana altın tonu */
    text-shadow: 0 1px 6px #ffb34733;
    font-weight: 700;
}

.dungeon-type {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,179,71,0.08);
    border-radius: 6px;
    margin-bottom: 14px;
    font-size: 0.9em;
    color: #ffb347;
    font-weight: 700;
}

.dungeon-type.group {
    background: linear-gradient(90deg, #ffe066 0%, #ffb347 100%);
    color: #18181b;
    border: 1px solid #ffb347cc;
}

.dungeon-type.solo {
    background: linear-gradient(90deg, #00ffe7 0%, #0077ff 100%);
    color: #181c24;
    border: 1px solid rgba(0,255,231,0.12);
}

.dungeon-rewards {
    margin-top: 12px;
}

.dungeon-rewards h4 {
    color: #ffb347;
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.rewards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rewards-list li {
    padding: 6px 0;
    color: #e6d8b0; /* yumuşak altın-metin */
    font-size: 0.95em;
}

.rewards-list li:before {
    content: "➤";
    color: #ffb347;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .dungeons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .dungeons-title {
        font-size: 1.8rem;
    }
    .dungeon-image { height: 160px; }
}
