/* BÜYÜ KİTABI STİLLERİ */

.spells-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.spells-title {
    font-size: 2em;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spells-subtitle {
    color: #888;
    margin-top: 5px;
    font-size: 1.1em;
}

.spells-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.spell-search-input, .spell-filter-select {
    background: #111;
    border: 1px solid var(--border);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

.spell-search-input:focus, .spell-filter-select:focus {
    border-color: var(--gold);
}

.spells-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding-bottom: 30px;
}

.spell-card {
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.spell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border-color: var(--gold);
}

.spell-name {
    font-size: 1.3em;
    color: var(--gold);
    margin: 0 0 5px 0;
}

.spell-school {
    font-size: 0.9em;
    color: #aaa;
    font-style: italic;
    margin-bottom: 10px;
}

.spell-classes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.spell-class-tag {
    background: #333;
    color: #eee;
    font-size: 0.75em;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #444;
}

.spell-class-tag.warlock { border-color: #5d2c08; background: #2a1000; }
.spell-class-tag.wizard { border-color: #084c5d; background: #001a2a; }
.spell-class-tag.sorcerer { border-color: #5d0818; background: #2a0005; }
.spell-class-tag.bard { border-color: #5d0856; background: #2a0026; }
.spell-class-tag.cleric { border-color: #5d5d5d; background: #2a2a2a; }
.spell-class-tag.druid { border-color: #1c5d08; background: #0a2a00; }

.spell-desc-short {
    font-size: 0.9em;
    color: #ccc;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

/* Detay Görünümü (Tıklandığında) */
.spell-detail-view {
    background: #111;
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 25px;
    color: white;
}

.spell-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.spell-detail-title {
    font-size: 2em;
    color: var(--gold);
    margin: 0;
}

.btn-close-detail {
    background: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-close-detail:hover {
    background: #555;
}

.spell-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.meta-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.meta-item span {
    color: #eee;
    font-size: 1em;
}

.spell-full-desc {
    font-size: 1.05em;
    line-height: 1.6;
    color: #ddd;
    white-space: pre-wrap;
}

#tab-spells {
    overflow-y: auto;
    height: 100%;
    padding-bottom: 50px;
}
