:root {
            --primary-dark: #0a0a16;
            --primary-blue: #1a2a6c;
            --secondary-gold: #d4af37;
            --accent-red: #c41e3a;
            --light-gray: #f5f5f5;
            --text-light: #e8e8e8;
            --text-muted: #aaa;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
            border-bottom: 3px solid var(--secondary-gold);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(to right, #f5d742, #d4af37, #b8941f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            text-decoration: none;
            color: transparent;
        }
        .main-nav {
            display: flex;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-red);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--secondary-gold);
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            background-color: rgba(26, 42, 108, 0.3);
            padding: 12px 20px;
            border-radius: 0 0 8px 8px;
            margin-bottom: 25px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: var(--text-muted);
        }
        .search-bar {
            margin: 30px auto;
            max-width: 600px;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: rgba(255,255,255,0.95);
            font-size: 1.1rem;
            color: var(--primary-dark);
        }
        .search-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        .search-button:hover {
            background-color: #a0162d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        article {
            background: rgba(20, 25, 45, 0.8);
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--secondary-gold);
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #6ab0ff;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid var(--secondary-gold);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-light);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #b0d0ff;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(26,42,108,0.5) 0%, rgba(196,30,58,0.3) 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary-gold);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(10, 10, 22, 0.7);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--primary-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-red);
            display: block;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
            border: 3px solid var(--secondary-gold);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: -25px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .quote {
            font-size: 1.4rem;
            font-style: italic;
            color: var(--secondary-gold);
            padding: 30px 40px;
            margin: 40px 0;
            background: rgba(26, 42, 108, 0.3);
            border-radius: 10px;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: rgba(212, 175, 55, 0.3);
            position: absolute;
        }
        .quote::before { top: 10px; left: 20px; }
        .quote::after { bottom: -20px; right: 20px; }
        .content-link {
            background: rgba(212, 175, 55, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .content-link:hover {
            background: rgba(212, 175, 55, 0.25);
        }
        aside {
            background: rgba(20, 25, 45, 0.8);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-title {
            color: var(--secondary-gold);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-red);
        }
        .related-links li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li::before {
            content: '>';
            color: var(--accent-red);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .rating-section, .comment-section {
            background: rgba(20, 25, 45, 0.9);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid rgba(106, 176, 255, 0.3);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--secondary-gold);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-input, .form-textarea {
            padding: 15px;
            background: rgba(10, 10, 22, 0.7);
            border: 1px solid var(--primary-blue);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(to right, var(--primary-blue), var(--accent-red));
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(196, 30, 58, 0.4);
        }
        .site-footer {
            background: linear-gradient(to bottom, var(--primary-blue) 0%, #050510 100%);
            padding: 50px 0 30px;
            margin-top: 60px;
            border-top: 5px solid var(--secondary-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            margin: 10px 0;
            border-radius: 6px;
            text-align: center;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--secondary-gold);
            font-weight: bold;
            margin-top: 10px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
                border-top: 2px solid var(--secondary-gold);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                justify-content: space-between;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .search-input {
                padding: 15px 20px;
            }
            article, aside {
                padding: 25px 20px;
            }
            .quote {
                padding: 20px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            .lead {
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
