:root {
            --primary-dark: #0a0a14;
            --accent-gold: #d4af37;
            --accent-silver: #c0c0c0;
            --accent-crimson: #8b0000;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-section: #111122;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-silver);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #000000 0%, var(--primary-dark) 100%);
            padding: 1rem 0;
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            font-family: 'Impact', 'Arial Black', sans-serif;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .main-nav a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .hero {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(circle at center, #1a1a2e 0%, var(--primary-dark) 70%);
            border-bottom: 1px solid #333;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-gray);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background-color: var(--bg-section);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        article h2 {
            color: var(--accent-gold);
            border-left: 5px solid var(--accent-crimson);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
        }
        article h3 {
            color: var(--accent-silver);
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        article h4 {
            color: #d0d0d0;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid var(--accent-gold);
            margin: 2rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        }
        .link-list {
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #444;
        }
        aside {
            background-color: var(--bg-section);
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: var(--accent-gold);
            border-bottom: 2px solid var(--accent-crimson);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            background: #222233;
            border: 1px solid #444;
            border-radius: 5px;
            color: white;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, var(--accent-crimson), #660000);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: linear-gradient(to right, #990000, var(--accent-crimson));
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #444;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .site-footer {
            background: #000;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--accent-gold);
        }
        .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 h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                right: -100%;
                background: var(--primary-dark);
                width: 80%;
                height: calc(100vh - 80px);
                transition: right 0.4s ease;
                padding: 2rem;
                border-left: 2px solid var(--accent-gold);
            }
            .main-nav.active {
                right: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article section {
            animation: fadeIn 0.8s ease-out;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
