@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Crimson Text', 'Georgia', serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #0d0208 0%, #1a0a0f 30%, #2d0a15 70%, #1a0505 100%);
            background-attachment: fixed;
            color: #d4d4d4;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(80, 0, 0, 0.1) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1000px;
        }

        .title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 25px rgba(139, 0, 0, 0.6);
            letter-spacing: 0.08em;
            font-weight: 500;
        }

        .subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            color: #999;
            font-style: italic;
            letter-spacing: 0.05em;
        }

        .back-link {
            text-align: center;
            margin-bottom: 2rem;
        }

        .back-link a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .back-link a:hover {
            color: #8b0000;
        }

        .nav-bar {
            margin-bottom: 2rem;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1rem;
            list-style: none;
            padding: 1rem;
            background: rgba(20, 5, 10, 0.6);
            border: 1px solid rgba(139, 0, 0, 0.3);
            border-radius: 8px;
        }

        .nav-links li a {
            color: #888;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: #f0d0d0;
            background: rgba(139, 0, 0, 0.35);
        }

        .nav-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 3rem;
        }

        .campaign-grid {
            display: none;
        }

        .campaign-grid.visible {
            display: grid;
        }

        .nav-card {
            background: rgba(20, 5, 10, 0.6);
            border: 1px solid rgba(139, 0, 0, 0.3);
            border-radius: 8px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .nav-card:hover {
            background: rgba(30, 8, 15, 0.8);
            border-color: rgba(139, 0, 0, 0.6);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
        }

        .campaign.active {
            background: rgba(30, 8, 15, 0.8);
            border-color: rgba(139, 0, 0, 0.8);
            box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4), inset 0 0 20px rgba(139, 0, 0, 0.15);
        }

        .nav-card h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #c4c4c4;
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .nav-card p {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.5;
            font-style: italic;
        }

        .welcome {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            padding: 2rem;
            background: rgba(10, 5, 8, 0.5);
            border: 1px solid rgba(139, 0, 0, 0.2);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .welcome p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b8b8b8;
            margin-bottom: 1rem;
        }

        .welcome .quote {
            font-style: italic;
            color: #e8d0d0;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(139, 0, 0, 0.3);
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
        }

        .video-container {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(20, 5, 10, 0.6);
            border: 1px solid rgba(139, 0, 0, 0.3);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .video-container iframe {
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .transcript-section {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(20, 5, 10, 0.6);
            border: 1px solid rgba(139, 0, 0, 0.3);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .transcript-section label {
            display: block;
            margin-bottom: 1rem;
            color: #888;
            font-size: 1rem;
            letter-spacing: 0.03em;
        }

        #session-select {
            padding: 0.6rem 1.2rem;
            font-size: 1rem;
            font-family: 'Georgia', 'Garamond', serif;
            background: rgba(10, 5, 8, 0.8);
            color: #d4d4d4;
            border: 1px solid rgba(139, 0, 0, 0.4);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #session-select:hover,
        #session-select:focus {
            border-color: rgba(139, 0, 0, 0.7);
            outline: none;
            box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
        }

        #session-select option {
            background: #0d0208;
            color: #d4d4d4;
        }

        #download-btn {
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            font-family: 'Georgia', 'Garamond', serif;
            background: rgba(139, 0, 0, 0.3);
            color: #f0d0d0;
            border: 2px solid rgba(180, 30, 30, 0.6);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }

        #download-btn:hover {
            background: rgba(139, 0, 0, 0.5);
            border-color: rgba(200, 50, 50, 0.8);
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.5);
            transform: translateY(-2px);
            color: #ffffff;
        }

        .campaign-info {
            background: rgba(20, 5, 10, 0.6);
            border: 1px solid rgba(139, 0, 0, 0.3);
            border-radius: 8px;
            padding: 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            text-align: left;
        }

        .campaign-info h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            text-align: center;
            letter-spacing: 0.05em;
            text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
        }

        .campaign-info h3 {
            color: #999;
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .campaign-info p {
            color: #b8b8b8;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .campaign-info .status {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .campaign-info .status.beendet {
            background: rgba(40, 167, 69, 0.15);
            color: #5cb85c;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .campaign-info .status.pausiert {
            background: rgba(255, 193, 7, 0.15);
            color: #f0ad4e;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }

        .campaign-info .status.aktiv {
            background: rgba(0, 123, 255, 0.15);
            color: #5bc0de;
            border: 1px solid rgba(0, 123, 255, 0.3);
        }

        .campaign-info ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0;
        }

        .campaign-info ul li {
            color: #b8b8b8;
            padding: 0.4rem 0;
            padding-left: 1.2rem;
            position: relative;
        }

        .campaign-info ul li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #8b0000;
            font-size: 0.7rem;
        }

        .campaign-info .player-name {
            color: #888;
            font-style: italic;
        }

        .campaign-info .links {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(139, 0, 0, 0.2);
            text-align: center;
        }

        .campaign-info .links a {
            color: #f0d0d0;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 2px solid rgba(180, 30, 30, 0.5);
            border-radius: 6px;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .campaign-info .links a:hover {
            background: rgba(139, 0, 0, 0.35);
            border-color: rgba(200, 50, 50, 0.8);
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
            color: #ffffff;
        }

        .characters-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .character-card {
            background: rgba(30, 8, 15, 0.85);
            border: 2px solid rgba(180, 30, 30, 0.5);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(139, 0, 0, 0.1);
        }

        .character-card h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
        }

        .character-portrait {
            display: block;
            max-width: 50%;
            height: auto;
            margin: 0 auto 1rem;
            border-radius: 8px;
            border: 2px solid rgba(180, 30, 30, 0.6);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 0, 0, 0.2);
        }

        .character-sheet {
            width: 100%;
            height: 600px;
            border: 2px solid rgba(180, 30, 30, 0.4);
            border-radius: 6px;
            background: rgba(15, 5, 10, 0.7);
        }

        .character-sheet-img {
            width: 100%;
            height: auto;
            border: 2px solid rgba(180, 30, 30, 0.4);
            border-radius: 6px;
        }

        .group-image {
            display: block;
            max-width: 80%;
            height: auto;
            margin: 2rem auto;
            border-radius: 8px;
            border: 2px solid rgba(180, 30, 30, 0.6);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
            }

            .nav-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Wiki Styles - Vampire Theme */
        .wiki-nav-links {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .wiki-nav-links li a {
            color: #a08080;
        }

        .wiki-nav-links li a:hover,
        .wiki-nav-links li a.active {
            color: #e8d0d0;
            background: rgba(139, 0, 0, 0.3);
            text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .stat-card::before {
            background: linear-gradient(90deg, #500000, #8b0000, #500000);
        }

        .stat-number {
            color: #e8d0d0;
            font-family: 'Playfair Display', 'Georgia', serif;
            text-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
        }

        .stat-label {
            color: #a08080;
        }

        .category-card {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.75) 0%, rgba(15, 5, 10, 0.75) 100%);
            border: 2px solid rgba(139, 0, 0, 0.35);
            color: #a08080;
        }

        .category-card:hover {
            background: linear-gradient(135deg, rgba(60, 20, 30, 0.85) 0%, rgba(30, 10, 15, 0.85) 100%);
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 8px 30px rgba(139, 0, 0, 0.3);
        }

        .category-count {
            background: rgba(139, 0, 0, 0.4);
            color: #e8d0d0;
        }

        .wiki-section {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .wiki-section h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            border-bottom: 2px solid rgba(139, 0, 0, 0.4);
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
        }

        .entry-list li {
            background: rgba(15, 5, 10, 0.4);
            border: 1px solid rgba(139, 0, 0, 0.15);
        }

        .entry-list li:hover {
            background: rgba(60, 20, 30, 0.4);
            border-color: rgba(180, 30, 30, 0.3);
        }

        .entry-list li a {
            color: #d8c8c8;
        }

        .entry-list li a:hover {
            color: #e8d0d0;
        }

        .entry-type,
        .entry-views {
            background: rgba(139, 0, 0, 0.3);
            color: #e8d0d0;
        }

        .filter-form {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .filter-group label {
            color: #a08080;
        }

        .filter-group select {
            background: rgba(15, 5, 10, 0.9);
            color: #d0c0c0;
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .filter-group select:hover,
        .filter-group select:focus {
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.15);
        }

        .entry-card {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .entry-card:hover {
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 12px 35px rgba(139, 0, 0, 0.3);
        }

        .entry-card h3 a {
            color: #d8c8c8;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .entry-card h3 a:hover {
            color: #e8d0d0;
        }

        .entry-type-badge {
            background: rgba(139, 0, 0, 0.4);
            color: #e8d0d0;
        }

        .entry-summary {
            color: #a08080;
        }

        .entry-meta {
            color: #807070;
            border-top: 1px solid rgba(139, 0, 0, 0.2);
        }

        .entry-header {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .entry-header h1 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            text-shadow: 0 0 25px rgba(139, 0, 0, 0.5);
        }

        .edit-link {
            color: #a08080;
            border: 2px solid rgba(139, 0, 0, 0.5);
            background: rgba(139, 0, 0, 0.1);
        }

        .edit-link:hover {
            color: #e8d0d0;
            background: rgba(139, 0, 0, 0.3);
            border-color: rgba(180, 30, 30, 0.7);
        }

        .entry-main-image {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.7) 0%, rgba(15, 5, 10, 0.7) 100%);
            border: 2px solid rgba(139, 0, 0, 0.4);
        }

        .entry-main-image img {
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .entry-summary-box {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.75) 0%, rgba(15, 5, 10, 0.75) 100%);
            border: 2px solid rgba(139, 0, 0, 0.3);
            border-left: 5px solid #8b0000;
            color: #a08080;
        }

        .entry-body {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
            color: #c8b8b8;
        }

        .entry-tags {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.75) 0%, rgba(15, 5, 10, 0.75) 100%);
            border: 2px solid rgba(139, 0, 0, 0.35);
        }

        .tags-label {
            color: #a08080;
        }

        .tag {
            background: rgba(139, 0, 0, 0.3);
            color: #e8d0d0;
            border: 1px solid rgba(139, 0, 0, 0.5);
        }

        .tag:hover {
            background: rgba(139, 0, 0, 0.45);
            box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
        }

        .entry-metadata {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.7) 0%, rgba(15, 5, 10, 0.7) 100%);
            border: 2px solid rgba(139, 0, 0, 0.35);
            color: #807070;
        }

        .related-section,
        .similar-section {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.75) 0%, rgba(15, 5, 10, 0.75) 100%);
            border: 2px solid rgba(139, 0, 0, 0.4);
        }

        .related-section h2,
        .similar-section h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            border-bottom: 1px solid rgba(139, 0, 0, 0.3);
        }

        .related-list li,
        .similar-list li {
            background: rgba(15, 5, 10, 0.4);
            border: 1px solid rgba(139, 0, 0, 0.15);
        }

        .related-list li:hover,
        .similar-list li:hover {
            background: rgba(60, 20, 30, 0.4);
            border-color: rgba(180, 30, 30, 0.3);
        }

        .related-list li a,
        .similar-list li a {
            color: #d8c8c8;
        }

        .related-list li a:hover,
        .similar-list li a:hover {
            color: #e8d0d0;
        }

        .search-form {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .search-input {
            background: rgba(15, 5, 10, 0.9);
            color: #d0c0c0;
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .search-input:focus {
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.2);
        }

        .search-button {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(80, 0, 0, 0.4) 100%);
            color: #e8d0d0;
            border: 2px solid rgba(139, 0, 0, 0.6);
        }

        .search-button:hover {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(80, 0, 0, 0.6) 100%);
            border-color: rgba(180, 30, 30, 0.9);
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.35);
        }

        .search-results {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .search-results h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
        }

        .result-count {
            color: #a08080;
            border-bottom: 1px solid rgba(139, 0, 0, 0.3);
        }

        .result-card {
            background: rgba(15, 5, 10, 0.5);
            border: 2px solid rgba(139, 0, 0, 0.35);
        }

        .result-card:hover {
            background: rgba(60, 20, 30, 0.4);
            border-color: rgba(180, 30, 30, 0.5);
        }

        .result-card h3 a {
            color: #d8c8c8;
            font-family: 'Playfair Display', 'Georgia', serif;
        }

        .result-card h3 a:hover {
            color: #e8d0d0;
        }

        .result-summary {
            color: #a08080;
        }

        .no-results,
        .no-entries {
            color: #807070;
            background: rgba(15, 5, 10, 0.4);
        }

        .type-heading {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
            text-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
        }

        .back-to-wiki a {
            color: #a08080;
            border: 2px solid rgba(139, 0, 0, 0.5);
            background: rgba(139, 0, 0, 0.1);
        }

        .back-to-wiki a:hover {
            color: #e8d0d0;
            background: rgba(139, 0, 0, 0.3);
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.25);
        }

        .wiki-form h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.3);
        }

        .entry-form {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .form-group label {
            color: #a08080;
        }

        .form-input,
        .form-select,
        .form-textarea {
            background: rgba(15, 5, 10, 0.9);
            color: #d0c0c0;
            border: 2px solid rgba(139, 0, 0, 0.5);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.15);
        }

        .submit-button {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(80, 0, 0, 0.4) 100%);
            color: #e8d0d0;
            border: 2px solid rgba(139, 0, 0, 0.6);
        }

        .submit-button:hover {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(80, 0, 0, 0.6) 100%);
            border-color: rgba(180, 30, 30, 0.9);
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
        }

        .cancel-link {
            color: #a08080;
            border: 2px solid rgba(139, 0, 0, 0.5);
            background: rgba(139, 0, 0, 0.1);
        }

        .cancel-link:hover {
            color: #e8d0d0;
            background: rgba(139, 0, 0, 0.3);
            border-color: rgba(180, 30, 30, 0.7);
        }

        .wiki-footer a {
            color: #a08080;
            border: 2px solid rgba(139, 0, 0, 0.5);
            background: rgba(139, 0, 0, 0.1);
        }

        .wiki-footer a:hover {
            color: #e8d0d0;
            background: rgba(139, 0, 0, 0.3);
            border-color: rgba(180, 30, 30, 0.7);
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.25);
        }

        /* Lore Page Styles */
        .lore-content {
            max-width: 800px;
            margin: 2rem auto;
        }

        .lore-section {
            background: linear-gradient(135deg, rgba(30, 10, 15, 0.85) 0%, rgba(15, 5, 10, 0.85) 100%);
            border: 2px solid rgba(139, 0, 0, 0.5);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
        }

        .lore-section h2 {
            font-family: 'Playfair Display', 'Georgia', serif;
            color: #e8d0d0;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
        }

        .lore-section p {
            color: #a08080;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .wiki-link-container {
            margin-top: 1rem;
        }

        .wiki-link-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(80, 0, 0, 0.4) 100%);
            color: #e8d0d0;
            border: 2px solid rgba(139, 0, 0, 0.6);
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Playfair Display', 'Georgia', serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .wiki-link-button:hover {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(80, 0, 0, 0.6) 100%);
            border-color: rgba(180, 30, 30, 0.8);
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
            transform: translateY(-2px);
        }