        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #1a472a;
            --primary-medium: #2d5a3d;
            --primary-light: #3d6b4f;
            --accent-gold: #d4af37;
            --accent-silver: #c0c0c0;
            --text-primary: #f0f0f0;
            --text-secondary: #cccccc;
            --bg-dark: #0d1f0d;
            --bg-medium: #152415;
            --bg-light: #1e2f1e;
            --border-color: #3a4a3a;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-dark);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(26, 71, 42, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(45, 90, 61, 0.1) 0%, transparent 20%);
            min-height: 100vh;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--bg-medium);
            border-bottom: 2px solid var(--primary-dark);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Cinzel', 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 1.5px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            color: #ffd700;
            text-decoration: none;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--accent-silver);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: var(--text-primary);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: var(--primary-dark);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
        }
        .hamburger span {
            height: 4px;
            width: 100%;
            background-color: var(--accent-gold);
            border-radius: 2px;
            transition: var(--transition);
        }
        #nav-toggle {
            display: none;
        }
        .search-form {
            display: flex;
            margin-left: 30px;
            position: relative;
        }
        .search-form input {
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background-color: var(--bg-light);
            color: var(--text-primary);
            width: 250px;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        .search-form button {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        main {
            padding: 40px 0;
            background-color: rgba(21, 36, 21, 0.7);
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--primary-dark);
        }
        h1 {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .last-updated {
            color: var(--accent-silver);
            background-color: rgba(45, 90, 61, 0.3);
            padding: 8px 15px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-main {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-silver);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.8rem;
            color: #a0d6a0;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #88c988;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }
        .highlight strong {
            color: var(--accent-gold);
            display: block;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .rune-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: var(--bg-medium);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .rune-table th {
            background-color: var(--primary-dark);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        .rune-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .rune-table tr:hover {
            background-color: rgba(45, 90, 61, 0.3);
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            border: 2px solid var(--primary-dark);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: var(--bg-light);
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            margin-top: 0;
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        .sidebar ul {
            list-style: none;
            margin: 20px 0;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border-color);
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .interactive-section {
            background-color: var(--bg-medium);
            padding: 30px;
            border-radius: 8px;
            margin: 50px 0;
            border: 1px solid var(--border-color);
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--accent-silver);
            cursor: pointer;
            margin-bottom: 10px;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-secondary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--bg-light);
            color: var(--text-primary);
            font-family: inherit;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        button[type="submit"] {
            background-color: var(--primary-medium);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        footer {
            background-color: var(--bg-medium);
            padding: 50px 0 30px;
            border-top: 2px solid var(--primary-dark);
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background-color: rgba(45, 90, 61, 0.3);
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 4px;
            border-left: 3px solid var(--accent-gold);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(45, 90, 61, 0.5);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
                order: 1;
            }
            #nav-toggle:checked ~ .nav-links {
                max-height: 500px;
                opacity: 1;
                padding: 20px 0;
            }
            .nav-links {
                display: flex;
                flex-direction: column;
                width: 100%;
                order: 3;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                transition: all 0.5s ease;
                gap: 0;
            }
            .nav-links li {
                width: 100%;
                margin: 5px 0;
            }
            .nav-links a {
                display: block;
                padding: 15px;
                border-radius: 4px;
                background-color: var(--bg-light);
            }
            .search-form {
                order: 2;
                margin-left: auto;
                margin-right: 20px;
            }
            .search-form input {
                width: 180px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-main {
                padding: 25px;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-form {
                width: 100%;
                margin: 20px 0 0 0;
            }
            .search-form input {
                width: 100%;
            }
            .article-meta {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            h1 {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-main {
            animation: fadeIn 0.8s ease-out;
        }
        .text-bold {
            font-weight: 700;
            color: var(--accent-silver);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .text-center {
            text-align: center;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
