        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0d8c0;
            background: #0c0b0a;
            background-image: radial-gradient(circle at 20% 30%, #1a1714 0%, #0c0b0a 40%);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Times New Roman', serif;
            font-weight: 700;
            color: #d4af37;
            margin-bottom: 1.2rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }
        h1 {
            font-size: 3rem;
            line-height: 1.2;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 1rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-left: 0.5rem;
            border-left: 4px solid #8b4513;
        }
        h3 {
            font-size: 1.8rem;
            color: #c19a6b;
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: rgba(20, 18, 16, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #3a2c1a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo span {
            color: #8b4513;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 18, 16, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #3a2c1a;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a2318;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #1a1714;
            padding: 1rem 0;
            border-bottom: 1px solid #3a2c1a;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #c19a6b;
        }
        .breadcrumb span {
            color: #8b7355;
            margin: 0 0.5rem;
        }
        .search-container {
            background: #1a1714;
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid #3a2c1a;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            background: #0c0b0a;
            border: 2px solid #3a2c1a;
            border-right: none;
            border-radius: 4px 0 0 4px;
            color: #e0d8c0;
            font-size: 1rem;
        }
        .search-button {
            background: #8b4513;
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #a0522d;
        }
        main {
            padding: 2rem 0;
        }
        .article-content {
            background: rgba(26, 23, 20, 0.7);
            border-radius: 8px;
            padding: 2.5rem;
            border: 1px solid #3a2c1a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 3rem;
        }
        .featured-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #2a2318, #1a1714);
            border-radius: 8px;
            margin: 2rem 0;
            overflow: hidden;
            position: relative;
            border: 2px solid #3a2c1a;
        }
        .featured-image::before {
            content: 'Nightreign Expansion Art';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #8b7355;
            font-size: 1.5rem;
            text-align: center;
            z-index: 1;
        }
        .content-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #3a2c1a;
        }
        .content-section:last-of-type {
            border-bottom: none;
        }
        .highlight {
            background: linear-gradient(135deg, #2a2318, #1a1714);
            border-left: 5px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
            color: #f0e6d2;
        }
        .user-interaction {
            background: #1a1714;
            border-radius: 8px;
            padding: 2rem;
            border: 1px solid #3a2c1a;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            margin-bottom: 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #8b7355;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.1);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #c19a6b;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            background: #0c0b0a;
            border: 1px solid #3a2c1a;
            border-radius: 4px;
            color: #e0d8c0;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        .submit-button {
            background: linear-gradient(to right, #8b4513, #a0522d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .submit-button:hover {
            background: linear-gradient(to right, #a0522d, #d2691e);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
        }
        .footer-links {
            background: #1a1714;
            padding: 3rem 0;
            border-top: 2px solid #3a2c1a;
            border-bottom: 2px solid #3a2c1a;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(12, 11, 10, 0.7);
            padding: 1.2rem;
            border-radius: 6px;
            border: 1px solid #3a2c1a;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #8b4513;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        footer {
            background: #0c0b0a;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #3a2c1a;
        }
        .copyright {
            color: #8b7355;
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .featured-image { height: 400px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .featured-image { height: 300px; }
            .article-content { padding: 1.5rem; }
            .web-links-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .container { padding: 0 1rem; }
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.6rem; }
            .featured-image { height: 250px; }
            .search-form { flex-direction: column; }
            .search-input { border-right: 2px solid #3a2c1a; border-radius: 4px; margin-bottom: 1rem; }
            .search-button { border-radius: 4px; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
        .text-bold { font-weight: 700; color: #f0e6d2; }
        .text-italic { font-style: italic; }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin: 0 0.2rem; }
