@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

        body {
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1520 40%, #0f1a1a 70%, #05050a 100%);
            background-attachment: fixed;
            color: #c8c8c8;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(ellipse at 30% 20%, rgba(70, 50, 80, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(50, 70, 60, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(80, 60, 90, 0.05) 0%, transparent 80%);
            pointer-events: none;
            z-index: 1;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(120, 100, 130, 0.03) 2px,
                    rgba(120, 100, 130, 0.03) 4px
                );
            pointer-events: none;
            z-index: 1;
        }

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

        .title {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            text-shadow:
                2px 2px 4px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(154, 143, 168, 0.3),
                0 0 60px rgba(154, 143, 168, 0.15);
            letter-spacing: 0.15em;
            font-weight: 400;
        }

        .subtitle {
            text-align: center;
            font-size: 1rem;
            margin-bottom: 2.5rem;
            color: #7a8a7a;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

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

        .back-link a {
            color: #808080;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .back-link a:hover {
            color: #9a8fa8;
        }

        .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(15, 15, 20, 0.7);
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
        }

        .nav-links li a {
            color: #808080;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: #9a8fa8;
            background: rgba(154, 143, 168, 0.15);
        }

        .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(15, 15, 20, 0.7);
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            position: relative;
        }

        .nav-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(154, 143, 168, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

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

        .nav-card:hover {
            background: rgba(20, 20, 28, 0.9);
            border-color: rgba(154, 143, 168, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(154, 143, 168, 0.2);
        }

        .campaign.active {
            background: rgba(20, 20, 28, 0.9);
            border-color: rgba(154, 143, 168, 0.6);
            box-shadow: 0 8px 24px rgba(154, 143, 168, 0.3), inset 0 0 20px rgba(154, 143, 168, 0.1);
        }

        .nav-card h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #b8b8b8;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 400;
            letter-spacing: 0.08em;
        }

        .nav-card p {
            color: #888;
            font-size: 0.85rem;
            line-height: 1.6;
            font-family: 'Georgia', serif;
        }

        .welcome {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            padding: 2rem;
            background: rgba(10, 10, 15, 0.6);
            border: 1px solid rgba(154, 143, 168, 0.15);
            border-radius: 4px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
        }

        .welcome p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #a8a8a8;
            margin-bottom: 1rem;
            font-family: 'Georgia', serif;
        }

        .welcome .quote {
            color: #7a8a7a;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(154, 143, 168, 0.15);
            font-size: 0.95rem;
            letter-spacing: 0.05em;
        }

        .video-container {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(15, 15, 20, 0.7);
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        }

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

        .transcript-section {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(15, 15, 20, 0.7);
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        }

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

        #session-select {
            padding: 0.6rem 1.2rem;
            font-size: 1rem;
            font-family: 'Courier New', 'Courier', monospace;
            background: rgba(10, 10, 15, 0.8);
            color: #c8c8c8;
            border: 1px solid rgba(154, 143, 168, 0.3);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #session-select:hover,
        #session-select:focus {
            border-color: rgba(154, 143, 168, 0.5);
            outline: none;
            box-shadow: 0 0 10px rgba(154, 143, 168, 0.2);
        }

        #session-select option {
            background: #0a0a0f;
            color: #c8c8c8;
        }

        #download-btn {
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            font-family: 'Courier New', 'Courier', monospace;
            background: rgba(154, 143, 168, 0.15);
            color: #9a8fa8;
            border: 1px solid rgba(154, 143, 168, 0.3);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }

        #download-btn:hover {
            background: rgba(154, 143, 168, 0.25);
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 4px 15px rgba(154, 143, 168, 0.2);
            transform: translateY(-2px);
            color: #b8a8c8;
        }

        .campaign-info {
            background: rgba(15, 15, 20, 0.7);
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
            padding: 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            text-align: left;
        }

        .campaign-info h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            letter-spacing: 0.08em;
            text-shadow: 0 0 15px rgba(154, 143, 168, 0.3);
        }

        .campaign-info h3 {
            color: #808080;
            font-size: 1rem;
            margin: 1.2rem 0 0.5rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .campaign-info p {
            color: #a8a8a8;
            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.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .campaign-info .status.beendet {
            background: rgba(122, 138, 122, 0.2);
            color: #7a8a7a;
            border: 1px solid rgba(122, 138, 122, 0.3);
        }

        .campaign-info .status.pausiert {
            background: rgba(168, 158, 120, 0.2);
            color: #a89e78;
            border: 1px solid rgba(168, 158, 120, 0.3);
        }

        .campaign-info .status.aktiv {
            background: rgba(120, 140, 168, 0.2);
            color: #788ca8;
            border: 1px solid rgba(120, 140, 168, 0.3);
        }

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

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

        .campaign-info ul li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #7a8a7a;
        }

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

        .campaign-info .links {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(154, 143, 168, 0.15);
            text-align: center;
        }

        .campaign-info .links a {
            color: #9a8fa8;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(154, 143, 168, 0.3);
            border-radius: 4px;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            display: inline-block;
            letter-spacing: 0.05em;
        }

        .campaign-info .links a:hover {
            background: rgba(154, 143, 168, 0.15);
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 0 10px rgba(154, 143, 168, 0.15);
        }

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

        .character-card {
            background: rgba(15, 15, 20, 0.7);
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        }

        .character-card h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.08em;
            text-shadow: 0 0 15px rgba(154, 143, 168, 0.3);
        }

        .character-portrait {
            display: block;
            max-width: 50%;
            height: auto;
            margin: 0 auto 1rem;
            border-radius: 4px;
            border: 1px solid rgba(154, 143, 168, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .character-sheet {
            width: 100%;
            height: 600px;
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
            background: rgba(10, 10, 15, 0.5);
        }

        .character-sheet-img {
            width: 100%;
            height: auto;
            border: 1px solid rgba(154, 143, 168, 0.2);
            border-radius: 4px;
        }

        .group-image {
            display: block;
            max-width: 80%;
            height: auto;
            margin: 2rem auto;
            border-radius: 4px;
            border: 1px solid rgba(154, 143, 168, 0.3);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }

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

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

        /* Wiki Styles - KULT Theme */
        .wiki-nav-links {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .wiki-nav-links li a {
            color: #7a7088;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .wiki-nav-links li a:hover,
        .wiki-nav-links li a.active {
            color: #9a8fa8;
            background: rgba(154, 143, 168, 0.2);
        }

        .stat-card {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .stat-card::before {
            background: linear-gradient(90deg, #5a5268, #9a8fa8, #5a5268);
        }

        .stat-number {
            color: #9a8fa8;
            font-family: 'Special Elite', 'Courier New', monospace;
            text-shadow: 0 0 15px rgba(154, 143, 168, 0.4);
        }

        .stat-label {
            color: #7a7088;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .category-card {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.75) 0%, rgba(10, 10, 15, 0.75) 100%);
            border: 2px solid rgba(154, 143, 168, 0.2);
            color: #7a7088;
        }

        .category-card:hover {
            background: linear-gradient(180deg, rgba(35, 32, 45, 0.85) 0%, rgba(20, 18, 25, 0.85) 100%);
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        }

        .category-count {
            background: rgba(154, 143, 168, 0.25);
            color: #9a8fa8;
        }

        .wiki-section {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .wiki-section h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            border-bottom: 2px solid rgba(154, 143, 168, 0.25);
            letter-spacing: 0.08em;
        }

        .entry-list li {
            background: rgba(10, 10, 15, 0.4);
            border: 1px solid rgba(154, 143, 168, 0.1);
        }

        .entry-list li:hover {
            background: rgba(35, 32, 45, 0.4);
            border-color: rgba(154, 143, 168, 0.25);
        }

        .entry-list li a {
            color: #b8b0c8;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

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

        .entry-type,
        .entry-views {
            background: rgba(154, 143, 168, 0.2);
            color: #9a8fa8;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .filter-form {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .filter-group label {
            color: #7a7088;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .filter-group select {
            background: rgba(10, 10, 15, 0.9);
            color: #b8b0c8;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .filter-group select:hover,
        .filter-group select:focus {
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 0 10px rgba(154, 143, 168, 0.1);
        }

        .entry-card {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.25);
        }

        .entry-card:hover {
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .entry-card h3 a {
            color: #b8b0c8;
            font-family: 'Special Elite', 'Courier New', monospace;
        }

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

        .entry-type-badge {
            background: rgba(154, 143, 168, 0.25);
            color: #9a8fa8;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .entry-summary {
            color: #7a7088;
        }

        .entry-meta {
            color: #5a5268;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            border-top: 1px solid rgba(154, 143, 168, 0.15);
        }

        .entry-header {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .entry-header h1 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(154, 143, 168, 0.3);
        }

        .edit-link {
            color: #7a7088;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            background: rgba(154, 143, 168, 0.05);
        }

        .edit-link:hover {
            color: #9a8fa8;
            background: rgba(154, 143, 168, 0.2);
            border-color: rgba(154, 143, 168, 0.5);
        }

        .entry-main-image {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.7) 0%, rgba(10, 10, 15, 0.7) 100%);
            border: 2px solid rgba(154, 143, 168, 0.25);
        }

        .entry-main-image img {
            border: 1px solid rgba(154, 143, 168, 0.3);
        }

        .entry-summary-box {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.75) 0%, rgba(10, 10, 15, 0.75) 100%);
            border: 2px solid rgba(154, 143, 168, 0.2);
            border-left: 4px solid #9a8fa8;
            color: #7a7088;
        }

        .entry-body {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
            color: #b8b0c8;
        }

        .entry-tags {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.75) 0%, rgba(10, 10, 15, 0.75) 100%);
            border: 2px solid rgba(154, 143, 168, 0.2);
        }

        .tags-label {
            color: #7a7088;
        }

        .tag {
            background: rgba(154, 143, 168, 0.2);
            color: #9a8fa8;
            border: 1px solid rgba(154, 143, 168, 0.35);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .tag:hover {
            background: rgba(154, 143, 168, 0.3);
            box-shadow: 0 0 8px rgba(154, 143, 168, 0.2);
        }

        .entry-metadata {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.7) 0%, rgba(10, 10, 15, 0.7) 100%);
            border: 2px solid rgba(154, 143, 168, 0.2);
            color: #5a5268;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .related-section,
        .similar-section {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.75) 0%, rgba(10, 10, 15, 0.75) 100%);
            border: 2px solid rgba(154, 143, 168, 0.25);
        }

        .related-section h2,
        .similar-section h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            border-bottom: 1px solid rgba(154, 143, 168, 0.2);
        }

        .related-list li,
        .similar-list li {
            background: rgba(10, 10, 15, 0.4);
            border: 1px solid rgba(154, 143, 168, 0.1);
        }

        .related-list li:hover,
        .similar-list li:hover {
            background: rgba(35, 32, 45, 0.4);
            border-color: rgba(154, 143, 168, 0.25);
        }

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

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

        .search-form {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .search-input {
            background: rgba(10, 10, 15, 0.9);
            color: #b8b0c8;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .search-input:focus {
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 0 10px rgba(154, 143, 168, 0.15);
        }

        .search-button {
            background: rgba(154, 143, 168, 0.2);
            color: #9a8fa8;
            border: 2px solid rgba(154, 143, 168, 0.4);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .search-button:hover {
            background: rgba(154, 143, 168, 0.35);
            border-color: rgba(154, 143, 168, 0.6);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .search-results {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .search-results h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
        }

        .result-count {
            color: #7a7088;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            border-bottom: 1px solid rgba(154, 143, 168, 0.2);
        }

        .result-card {
            background: rgba(10, 10, 15, 0.5);
            border: 2px solid rgba(154, 143, 168, 0.2);
        }

        .result-card:hover {
            background: rgba(35, 32, 45, 0.4);
            border-color: rgba(154, 143, 168, 0.4);
        }

        .result-card h3 a {
            color: #b8b0c8;
            font-family: 'Special Elite', 'Courier New', monospace;
        }

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

        .result-summary {
            color: #7a7088;
        }

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

        .type-heading {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
            letter-spacing: 0.1em;
            text-shadow: 0 0 15px rgba(154, 143, 168, 0.3);
        }

        .back-to-wiki a {
            color: #7a7088;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            background: rgba(154, 143, 168, 0.05);
        }

        .back-to-wiki a:hover {
            color: #9a8fa8;
            background: rgba(154, 143, 168, 0.2);
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .wiki-form h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            text-shadow: 0 0 12px rgba(154, 143, 168, 0.25);
        }

        .entry-form {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 2px solid rgba(154, 143, 168, 0.3);
        }

        .form-group label {
            color: #7a7088;
        }

        .form-input,
        .form-select,
        .form-textarea {
            background: rgba(10, 10, 15, 0.9);
            color: #b8b0c8;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 0 10px rgba(154, 143, 168, 0.1);
        }

        .submit-button {
            background: rgba(154, 143, 168, 0.25);
            color: #9a8fa8;
            border: 2px solid rgba(154, 143, 168, 0.4);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

        .submit-button:hover {
            background: rgba(154, 143, 168, 0.4);
            border-color: rgba(154, 143, 168, 0.6);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .cancel-link {
            color: #7a7088;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            background: rgba(154, 143, 168, 0.05);
        }

        .cancel-link:hover {
            color: #9a8fa8;
            background: rgba(154, 143, 168, 0.2);
            border-color: rgba(154, 143, 168, 0.5);
        }

        .wiki-footer a {
            color: #7a7088;
            border: 2px solid rgba(154, 143, 168, 0.3);
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            background: rgba(154, 143, 168, 0.05);
        }

        .wiki-footer a:hover {
            color: #9a8fa8;
            background: rgba(154, 143, 168, 0.2);
            border-color: rgba(154, 143, 168, 0.5);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

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

        .lore-section {
            background: linear-gradient(180deg, rgba(20, 18, 25, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
            border: 1px solid rgba(154, 143, 168, 0.25);
            border-radius: 6px;
            padding: 2rem;
            text-align: center;
        }

        .lore-section h2 {
            font-family: 'Special Elite', 'Courier New', monospace;
            color: #9a8fa8;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            letter-spacing: 0.08em;
        }

        .lore-section p {
            color: #7a7088;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
        }

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

        .wiki-link-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(154, 143, 168, 0.15);
            color: #9a8fa8;
            border: 1px solid rgba(154, 143, 168, 0.4);
            border-radius: 4px;
            text-decoration: none;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            font-size: 1rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .wiki-link-button:hover {
            background: rgba(154, 143, 168, 0.25);
            border-color: rgba(154, 143, 168, 0.6);
            transform: translateY(-2px);
        }