/* ── RUNE DETAIL PAGE ────────────────────────────── */
.rune-detail-header {
    background: rgba(212, 175, 55, 0.1);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.rune-type-icon-wrap { position: relative; }
.rune-type-spin-border {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed var(--rune-color, #d4af37);
    animation: spin 10s linear infinite;
}
.rune-type-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.rune-type-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.rune-type-dot { color: var(--rune-color, #d4af37); margin-right: 8px; }
.rune-type-description { color: #e2e8f0; font-size: 1.1rem; line-height: 1.7; }

.runes-list-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 2px solid var(--rune-color, #d4af37);
    padding-bottom: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.rune-card {
    height: 100%;
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.6), rgba(20, 20, 40, 0.8));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.rune-card:hover {
    transform: translateY(-5px);
    border-color: var(--rune-color, #d4af37);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5);
}

.rune-card-header { display: flex; gap: 15px; margin-bottom: 15px; }
.rune-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid var(--rune-color, #d4af37);
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
}
.rune-card-name { color: #fff; font-size: 1.1rem; font-weight: 700; margin: 0 0 5px 0; }
.rune-card-underline { height: 2px; width: 40px; background: var(--rune-color, #d4af37); opacity: 0.5; }

.rune-desc-content { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; }

.rune-empty-state {
    text-align: center;
    padding: 60px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
}
.rune-empty-icon { font-size: 3rem; margin-bottom: 20px; opacity: 0.3; }
.rune-empty-text { color: #9ca3af; font-size: 1.1rem; }

@keyframes spin { 100% { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .rune-type-title { font-size: 1.8rem; }
    .rune-detail-header { border-right: none; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
}
