        * { 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: #f0e6d2;
            background: linear-gradient(135deg, #0c0e1a 0%, #1a1d2e 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Cinzel', serif; color: #ffcc66; margin-bottom: 1rem; font-weight: 700; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-bottom: 3px solid #c8aa6e; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #e6b87a; margin-top: 2.5rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #d1a96a; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #7eb5e3; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #ffcc66; }
        strong { color: #ffcc66; font-weight: 700; }
        em { font-style: italic; color: #b8d4ff; }
        blockquote {
            border-left: 4px solid #c8aa6e;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #c9c1b4;
            background: rgba(200, 170, 110, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding { padding: 3rem 0; }
        .site-header {
            background: rgba(12, 14, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #2a2f4a;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 900;
            color: #ffcc66;
            text-shadow: 0 0 10px rgba(255, 204, 102, 0.5);
        }
        .logo a { color: inherit; }
        .logo span { color: #7eb5e3; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #f0e6d2;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #2a2f4a;
            color: #ffcc66;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc66;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(42, 47, 74, 0.3);
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #c8aa6e;
        }
        .breadcrumb a { color: #b8d4ff; }
        .breadcrumb a:hover { color: #ffcc66; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(26, 29, 46, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #3a3f5a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .intro-box {
            background: linear-gradient(90deg, rgba(200,170,110,0.1) 0%, rgba(42,47,74,0.3) 100%);
            padding: 1.5rem;
            border-left: 5px solid #c8aa6e;
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(26, 29, 46, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #3a3f5a;
        }
        .sidebar-widget h3 {
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2f4a;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { margin-bottom: 0.5rem; font-weight: 600; color: #ffcc66; }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background: #1e2238;
            border: 1px solid #3a3f5a;
            border-radius: 6px;
            color: #f0e6d2;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c8aa6e;
            box-shadow: 0 0 0 2px rgba(200, 170, 110, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #c8aa6e 0%, #a8905c 100%);
            color: #0c0e1a;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            font-size: 1rem;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #d1b67e 0%, #b89c68 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 170, 110, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            margin: 0.5rem 0;
        }
        .rating-stars .star { cursor: pointer; }
        .rating-stars .star.active { color: #ffcc66; }
        .gear-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: #1e2238;
            border-radius: 8px;
            overflow: hidden;
        }
        .gear-table th, .gear-table td {
            padding: 1rem;
            border: 1px solid #3a3f5a;
            text-align: left;
        }
        .gear-table th {
            background: #2a2f4a;
            color: #ffcc66;
            font-weight: 700;
        }
        .gear-table tr:nth-child(even) { background: rgba(42, 47, 74, 0.3); }
        .gear-table tr:hover { background: rgba(200, 170, 110, 0.1); }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #c8aa6e;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .featured-image img { width: 100%; }
        .img-caption {
            text-align: center;
            padding: 1rem;
            background: rgba(42, 47, 74, 0.7);
            font-style: italic;
            color: #b8d4ff;
        }
        .comments-section { margin-top: 3rem; }
        .comment {
            background: rgba(30, 34, 56, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #2a2f4a;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: #c9c1b4;
            font-size: 0.9rem;
        }
        .comment-author { color: #ffcc66; font-weight: 600; }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: rgba(42, 47, 74, 0.5);
            padding: 1.2rem;
            border-radius: 6px;
            transition: transform 0.3s, background 0.3s;
            border: 1px solid #3a3f5a;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(200, 170, 110, 0.1);
            border-color: #c8aa6e;
        }
        .web-link a {
            display: block;
            font-weight: 600;
            color: #b8d4ff;
        }
        .site-footer {
            background: #0c0e1a;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #2a2f4a;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 {
            color: #ffcc66;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2f4a;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: #b8d4ff; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a2f4a;
            color: #8a8ea8;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(12, 14, 26, 0.98);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid #2a2f4a;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .article-content { padding: 1.5rem; }
            .section-padding { padding: 2rem 0; }
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .highlight { background: rgba(255, 204, 102, 0.1); padding: 0.2rem 0.4rem; border-radius: 3px; }
        .badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: #2a2f4a;
            color: #7eb5e3;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
