:root {
            --primary-dark: #0a0a0f;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c9a35e;
            --accent-red: #8b0000;
            --accent-steel: #5d737e;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --text-muted: #888;
            --spacing-unit: 1rem;
            --border-radius: 4px;
            --transition-speed: 0.3s;
            --font-serif: Georgia, 'Times New Roman', serif;
            --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-sans);
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(26, 26, 46, 0.9) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(139, 0, 0, 0.15) 0%, transparent 20%);
            background-attachment: fixed;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: #fff;
            border-bottom-color: var(--accent-gold);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(10, 10, 15, 0.95);
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .my-logo:hover {
            text-shadow: 0 0 10px rgba(201, 163, 94, 0.7);
        }
        .breadcrumb {
            padding: 0.8rem 0;
            background-color: rgba(26, 26, 46, 0.8);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--accent-steel);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--accent-steel);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            font-size: 1.1rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .search-container {
            background: linear-gradient(to right, var(--secondary-dark), #2a2a4a);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid var(--accent-gold);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.1);
        }
        .search-button {
            padding: 0 1.5rem;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-weight: bold;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .search-button:hover {
            background-color: #e0b95a;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        main {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 1px solid var(--accent-steel);
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--accent-steel);
        }
        h1 {
            font-family: var(--font-serif);
            font-size: 3.2rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--text-primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-steel);
            font-family: var(--font-serif);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .intro {
            font-size: 1.3rem;
            color: var(--text-secondary);
            background-color: rgba(139, 0, 0, 0.1);
            padding: 1.5rem;
            border-left: 5px solid var(--accent-red);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 3rem;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(201, 163, 94, 0.1), rgba(139, 0, 0, 0.1));
            border: 1px solid var(--accent-gold);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
        }
        .lore-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            border: 2px solid var(--accent-gold);
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform var(--transition-speed);
        }
        .lore-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .pull-quote {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            line-height: 1.6;
            color: var(--accent-gold);
            padding: 2.5rem;
            margin: 3rem 0;
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
            text-align: center;
            background-color: rgba(26, 26, 46, 0.9);
            position: relative;
        }
        .pull-quote::before {
            content: "“";
            font-size: 5rem;
            color: var(--accent-red);
            position: absolute;
            top: -1rem;
            left: 1rem;
            opacity: 0.7;
        }
        .pull-quote::after {
            content: "”";
            font-size: 5rem;
            color: var(--accent-red);
            position: absolute;
            bottom: -3rem;
            right: 1rem;
            opacity: 0.7;
        }
        aside {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: var(--border-radius);
            padding: 2rem;
            border: 1px solid var(--accent-steel);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 3rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            border-bottom: 1px solid var(--accent-steel);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed rgba(93, 115, 126, 0.3);
        }
        .widget-links a {
            display: block;
            padding: 0.5rem;
            border-radius: var(--border-radius);
            transition: all var(--transition-speed);
        }
        .widget-links a:hover {
            background-color: rgba(201, 163, 94, 0.1);
            padding-left: 1rem;
        }
        .rating-section, .comments-section {
            background-color: rgba(10, 10, 15, 0.7);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid var(--accent-steel);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: var(--accent-steel);
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: bold;
            color: var(--text-secondary);
        }
        .form-control {
            padding: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--accent-steel);
            border-radius: var(--border-radius);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            background-color: rgba(255, 255, 255, 0.1);
        }
        .submit-button {
            background: linear-gradient(to right, var(--accent-gold), #b89446);
            color: var(--primary-dark);
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all var(--transition-speed);
            align-self: flex-start;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #e0b95a, #d4a842);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(201, 163, 94, 0.4);
        }
        .site-footer {
            background-color: var(--secondary-dark);
            border-top: 3px solid var(--accent-red);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-widget h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-widget ul {
            list-style: none;
        }
        .footer-widget li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            margin-bottom: 0.8rem;
            border-left: 3px solid var(--accent-gold);
            transition: all var(--transition-speed);
        }
        friend-link:hover {
            background-color: rgba(201, 163, 94, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--accent-steel);
            color: var(--text-muted);
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                order: 3;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid var(--accent-steel);
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            main {
                padding: 2rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-right: 2px solid var(--accent-gold);
                border-radius: var(--border-radius);
                margin-bottom: 0.5rem;
            }
            .search-button {
                border-radius: var(--border-radius);
                padding: 1rem;
            }
            .pull-quote {
                font-size: 1.5rem;
                padding: 2rem 1rem;
            }
        }
