/* Spells */
/* Sidebar background can stay dark to frame the card */
.fantasy-rules-sidebar {
    background: radial-gradient(circle at top, #15181d 0, #050609 55%, #000000 100%);
    color: #f5f3e7;
}

/* The card itself */
.spell-card {
    background: radial-gradient(circle at top, #f6f0ff 0, #ede9ff 45%, #f3ecff 100%);
    color: #241b14;
    border-radius: 10px;
    border: 2px solid #7c3aed;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
    padding: 16px 18px 18px;
    max-width: 420px;
    margin: 12px auto;
    box-sizing: border-box;
    font-family: "Georgia", "Times New Roman", serif;
}

/* Top band – classic 5E-style header bar */
.spell-card-header {
    background: linear-gradient(90deg, #5b21b6 0, #7c3aed 50%, #5b21b6 100%);
    margin: -16px -18px 12px;
    padding: 10px 18px 8px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #7c3aed;
    color: #fcefd5;
}

.spell-name {
    margin: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(124, 58, 237, 0.4);
}

/* Add arcane icon before spell name */
.spell-name::before {
    content: "✦ ";
    font-weight: normal;
    margin-right: 4px;
}

.spell-level-school {
    font-size: 1rem;
    font-style: italic;
    margin-top: 2px;
    opacity: 0.9;
}

/* Metadata rows */
.spell-meta {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 8px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.spell-meta > div {
    margin-bottom: 4px;
}

.spell-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-right: 4px;
}

/* Body text */
.spell-body p {
    margin: 0 0 8px;
    font-size: 1.3rem;
    line-height: 1.55;
}

.spell-body i {
    font-style: italic;
}

/* Spell Links */
a.sidebar-link[data-type="spell"] {
    color: #7c3aed;
    text-decoration: none;
    border-bottom: 1px dotted #9b59ff;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

/* Add arcane icon automatically */
a.sidebar-link[data-type="spell"]::before {
    content: "✦ ";
    color: #9b59ff;
    font-weight: normal;
}

/* Hover glow effect */
a.sidebar-link[data-type="spell"]:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    text-shadow:
        0 0 6px #7c3aed,
        0 0 12px rgba(207,168,255,0.6);
}

a.sidebar-link[data-type="spell"] {
    color: #7c3aed;
    text-decoration: none;
    border-bottom: 1px dotted #9b59ff;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

/* Add arcane icon automatically */
a.sidebar-link[data-type="spell"]::before {
    content: "✦ ";
    color: #7c3aed;
    font-weight: normal;
}

/* Hover glow effect */
a.sidebar-link[data-type="spell"]:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    text-shadow:
        0 0 6px #7c3aed,
        0 0 12px rgba(207,168,255,0.6);
}

/* Close button tweak so it fits the theme */
.fantasy-sidebar-top-right #fantasy-sidebar-close {
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #7d4722;
    color: #f5f3e7;
    font-weight: 700;
    font-size: 1rem;
}