:root {
            --primary-dark: #0a0a12;
            --primary-red: #9d0208;
            --accent-gold: #e9c46a;
            --accent-silver: #b8b8b8;
            --text-light: #f8f9fa;
            --text-gray: #adb5bd;
            --bg-section: #14141f;
            --bg-card: #1c1c2e;
            --border-color: #2e2e4a;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Cinzel', serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, rgba(10,10,18,0.95), rgba(10,10,18,0.8));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(233, 196, 106, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: var(--text-light);
        }
        .menu-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 {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: block;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--primary-red);
            color: var(--text-light);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--bg-section);
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--accent-silver);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-gray);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        article {
            background-color: var(--bg-card);
            padding: 2.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-red);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        article h1,
        article h2,
        article h3,
        article h4 {
            font-family: var(--font-heading);
            color: var(--accent-gold);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h1 { font-size: 2.8rem; }
        article h2 { font-size: 2.2rem; border-bottom: 2px solid var(--border-color); padding-bottom: 0.5rem; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.4rem; color: var(--accent-silver); }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            color: var(--text-gray);
        }
        article strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        article em {
            color: var(--accent-silver);
            font-style: italic;
        }
        .article-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--border-color);
            max-width: 900px;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 1rem;
            background-color: rgba(0,0,0,0.5);
            color: var(--text-gray);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--primary-red);
        }
        .widget h3 {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-light);
        }
        .search-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #7a0106;
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .stars i {
            color: var(--accent-silver);
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button,
        .rating-widget button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover,
        .rating-widget button:hover {
            background-color: #7a0106;
        }
        .site-footer {
            background-color: var(--bg-section);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background-color: var(--bg-card);
            padding: 1rem;
            margin-bottom: 0.8rem;
            border-radius: 5px;
            border-left: 3px solid var(--accent-gold);
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: var(--primary-dark);
                transition: left 0.4s ease;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .highlight {
            background-color: rgba(233, 196, 106, 0.1);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-gold);
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .last-updated {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
