/* ═══════════════════════════════════════════════════════════════════
   VERMINTIDE 2 TOOLS - SHARED STYLES
   Dark Fantasy Medieval Aesthetic - Inspired by Warhammer Universe
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=IM+Fell+English:ital@0;1&display=swap');

/* ═══════════════════════════════════════════════════════════════════
   CSS VARIABLES - THE BLOOD & GOLD PALETTE
   ═══════════════════════════════════════════════════════════════════ */
:root {
    /* Core Colors */
    --bg-abyss: #080604;
    --bg-dark: #0d0a08;
    --bg-primary: #12100c;
    --bg-secondary: #1a1612;
    --bg-card: #221c16;
    --bg-card-hover: #2a231b;

    /* Gold & Bronze */
    --gold-bright: #ffd700;
    --gold-primary: #c9a961;
    --gold-muted: #a08347;
    --gold-dark: #7a6235;
    --bronze: #cd7f32;

    /* Blood & Fire */
    --blood-bright: #dc143c;
    --blood-primary: #8b1a1a;
    --blood-dark: #5a1010;
    --fire-orange: #ff6b35;
    --fire-ember: #ff8c42;

    /* Text */
    --text-light: #f5f0e8;
    --text-primary: #e8e3d8;
    --text-secondary: #b8a88d;
    --text-muted: #8a7a60;

    /* Effects */
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --shadow-gold: rgba(201, 169, 97, 0.3);
    --glow-gold: rgba(255, 215, 0, 0.4);
    --glow-blood: rgba(139, 26, 26, 0.4);

    /* Borders */
    --border-gold: #c9a961;
    --border-subtle: rgba(201, 169, 97, 0.3);
    --border-dark: rgba(255, 255, 255, 0.05);

    /* Hero Colors */
    --hero-kruber: #2563eb;
    --hero-bardin: #ea580c;
    --hero-kerillian: #059669;
    --hero-sienna: #dc2626;
    --hero-viktor: #9333ea;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   COLORBLIND MODE - Alternative color palette
   ═══════════════════════════════════════════════════════════════════ */
body.colorblind-mode {
    /* Status colors - colorblind friendly */
    --status-complete: #0077BB;    /* Blue instead of green */
    --status-partial: #EE7733;     /* Orange instead of yellow */
    --status-incomplete: #CC3311;  /* Red-orange instead of red */

    /* Player colors - high contrast & distinct */
    --player-1: #0077BB;  /* Blue */
    --player-2: #EE7733;  /* Orange */
    --player-3: #009988;  /* Teal */
    --player-4: #CC3311;  /* Red-orange */
}

/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════════
   BACKGROUND ATMOSPHERE
   ═══════════════════════════════════════════════════════════════════ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Vignette effect */
        radial-gradient(ellipse at center, transparent 0%, var(--bg-abyss) 100%),
        /* Subtle light sources */
        radial-gradient(ellipse at 15% 15%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 85%, rgba(139, 26, 26, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg);
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════
   DECORATIVE BORDERS & FRAMES
   ═══════════════════════════════════════════════════════════════════ */
.ornate-border {
    position: relative;
    border: 2px solid var(--gold-dark);
    background: var(--bg-card);
}

.ornate-border::before,
.ornate-border::after {
    content: '◆';
    position: absolute;
    font-size: 12px;
    color: var(--gold-primary);
    background: var(--bg-card);
    padding: 0 4px;
}

.ornate-border::before {
    top: -8px;
    left: 20px;
}

.ornate-border::after {
    bottom: -8px;
    right: 20px;
}

/* Corner ornaments */
.corner-ornaments {
    position: relative;
}

.corner-ornaments::before,
.corner-ornaments::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold-primary);
}

.corner-ornaments::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.corner-ornaments::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    border: 2px solid var(--gold-primary);
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.05) 100%);
    color: var(--gold-primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover {
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.3) 0%, rgba(201, 169, 97, 0.1) 100%);
    box-shadow:
        0 0 20px rgba(201, 169, 97, 0.3),
        inset 0 0 20px rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(180deg, var(--fire-orange) 0%, var(--blood-primary) 100%);
    border-color: var(--fire-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--fire-ember) 0%, var(--fire-orange) 100%);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.btn-danger {
    border-color: var(--blood-primary);
    color: var(--blood-bright);
    background: linear-gradient(180deg, rgba(139, 26, 26, 0.3) 0%, rgba(139, 26, 26, 0.1) 100%);
}

.btn-danger:hover {
    background: linear-gradient(180deg, rgba(139, 26, 26, 0.5) 0%, rgba(139, 26, 26, 0.2) 100%);
    box-shadow: 0 0 20px rgba(139, 26, 26, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════ */
.card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    transition: all var(--transition-normal);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-4px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(201, 169, 97, 0.1);
}

.card:hover::before {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════ */
input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: all var(--transition-normal);
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

/* Checkbox styling */
input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-muted) 100%);
    border-color: var(--gold-primary);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-dark);
    font-size: 14px;
    font-weight: bold;
}

input[type="checkbox"]:hover {
    border-color: var(--gold-muted);
}

label {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: var(--space-xs);
}

/* ═══════════════════════════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════════════════════════ */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 16px;
    color: var(--gold-primary);
    border-bottom: 2px solid var(--gold-dark);
    text-align: center;
}

th:first-child {
    text-align: left;
    padding-left: 20px;
}

td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-dark);
    vertical-align: middle;
}

td:first-child {
    font-weight: 600;
    padding-left: 20px;
}

tr {
    transition: background var(--transition-fast);
}

tr:hover {
    background: rgba(201, 169, 97, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRESS BARS
   ═══════════════════════════════════════════════════════════════════ */
.progress-bar {
    width: 100%;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blood-primary) 0%, var(--fire-orange) 50%, var(--gold-primary) 100%);
    border-radius: 14px;
    transition: width var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO BADGES
   ═══════════════════════════════════════════════════════════════════ */
.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-Kruber, .hero-kruber, .hero-Markus {
    background: linear-gradient(135deg, var(--hero-kruber) 0%, #1d4ed8 100%);
    color: #fff;
    border: 1px solid #3b82f6;
}

.hero-Bardin, .hero-bardin {
    background: linear-gradient(135deg, var(--hero-bardin) 0%, #c2410c 100%);
    color: #fff;
    border: 1px solid #f97316;
}

.hero-Kerillian, .hero-kerillian {
    background: linear-gradient(135deg, var(--hero-kerillian) 0%, #047857 100%);
    color: #fff;
    border: 1px solid #10b981;
}

.hero-Sienna, .hero-sienna {
    background: linear-gradient(135deg, var(--hero-sienna) 0%, #b91c1c 100%);
    color: #fff;
    border: 1px solid #ef4444;
}

.hero-Viktor, .hero-viktor {
    background: linear-gradient(135deg, var(--hero-viktor) 0%, #7c3aed 100%);
    color: #fff;
    border: 1px solid #a855f7;
}

/* ═══════════════════════════════════════════════════════════════════
   BACK BUTTON / NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 20px;
    background: rgba(12, 10, 8, 0.9);
    border: 2px solid var(--gold-dark);
    color: var(--gold-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.back-button::before {
    content: '⚔';
    font-size: 1.1em;
}

.back-button:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold-primary);
    transform: translateX(-5px);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════
   MESSAGES / ALERTS
   ═══════════════════════════════════════════════════════════════════ */
.message {
    font-family: 'Cinzel', serif;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin: var(--space-md) 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.message.success {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.message.error {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════ */
.section {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.section-title::before {
    content: '◆';
    color: var(--gold-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid var(--border-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--bg-dark);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-muted) 0%, var(--gold-dark) 100%);
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 169, 97, 0.3); }
    50% { box-shadow: 0 0 25px rgba(201, 169, 97, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(201, 169, 97, 0.3); }
    to { text-shadow: 0 0 25px rgba(201, 169, 97, 0.6); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-pulse-gold {
    animation: pulse-gold 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .container {
        padding: var(--space-md);
    }

    .section {
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .back-button {
        position: static;
        margin-bottom: var(--space-lg);
        display: inline-flex;
    }

    .container {
        padding: var(--space-md);
        padding-top: var(--space-md);
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    th, td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .section {
        padding: var(--space-md);
    }

    .card {
        padding: var(--space-md);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-muted { color: var(--text-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.grid { display: grid; }

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY BUTTON - Fixed position
   ═══════════════════════════════════════════════════════════════════ */
.accessibility-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.accessibility-toggle:hover {
    border-color: var(--gold-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 169, 97, 0.3);
}

.accessibility-panel {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    z-index: 9998;
    display: none;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.accessibility-panel.show {
    display: block;
}

.accessibility-panel h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.accessibility-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accessibility-option:hover {
    background: rgba(201, 169, 97, 0.05);
    padding-left: var(--space-sm);
}

.accessibility-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.accessibility-option label {
    flex: 1;
    cursor: pointer;
    font-family: 'Crimson Text', serif;
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .accessibility-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 16px;
        right: 16px;
    }

    .accessibility-panel {
        bottom: 76px;
        right: 16px;
        min-width: 240px;
        padding: var(--space-md);
    }
}
