:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #b22222;
            --secondary-accent: #d4af37;
            --text-light: #f5f5f5;
            --text-dim: #cccccc;
            --bg-card: #252547;
            --border-color: #444477;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #16213e 100%);
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #d4af37, #b22222);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(180, 34, 34, 0.2);
            border-color: var(--primary-accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-dim);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--secondary-accent);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-module {
            background-color: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px 0 0 8px;
            background-color: #1e1e3a;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #d63333;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(37, 37, 71, 0.8);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 2px solid var(--secondary-accent);
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-accent);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #ff9966;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: #66ccff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #99cc99;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-dim);
            background: rgba(0,0,0,0.3);
            padding: 20px;
            border-left: 5px solid var(--primary-accent);
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: linear-gradient(145deg, #2a2a4a, #1f1f3a);
            border-left: 6px solid var(--secondary-accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: var(--shadow);
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid var(--border-color);
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-dim);
            margin-top: -25px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        em {
            color: #ffcc99;
        }
        strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted var(--secondary-accent);
        }
        .inline-link:hover {
            border-bottom: 2px solid var(--secondary-accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background-color: var(--bg-card);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--secondary-accent);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            margin: 10px 0;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: gold;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            background-color: #1e1e3a;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-accent), #d63333);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(180, 34, 34, 0.4);
        }
        .update-info {
            background-color: rgba(0, 50, 0, 0.3);
            padding: 15px;
            border-radius: 8px;
            border-left: 5px solid #4CAF50;
            font-size: 0.95rem;
        }
        .site-footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 3px solid var(--primary-accent);
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 15px 15px 0 0;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-title {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            border-bottom: 1px dashed #444;
            color: #aaa;
        }
        friend-link:hover {
            color: var(--secondary-accent);
            border-bottom-color: var(--secondary-accent);
        }
        .copyright {
            text-align: center;
            padding: 20px;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary-dark);
                padding: 20px;
                border-top: 2px solid var(--primary-accent);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
