        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0a0a14;
            --primary-red: #c41e3a;
            --primary-gold: #daa520;
            --secondary-gray: #2a2a3c;
            --light-gray: #f5f5f7;
            --text-light: #e8e8e8;
            --text-dark: #1a1a1a;
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --max-width: 1400px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 20, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo:hover {
            color: var(--primary-red);
            transform: scale(1.05);
        }
        .my-logo span {
            color: var(--primary-red);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            background-color: var(--primary-red);
            color: white;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-gold);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .burger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--primary-gold);
        }
        .breadcrumb {
            background-color: var(--secondary-gray);
            padding: 15px 0;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--primary-gold);
        }
        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
            text-decoration: underline;
        }
        main {
            padding: 30px 0 60px;
            background: linear-gradient(to bottom, var(--primary-dark) 0%, #151528 100%);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: rgba(42, 42, 60, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(202, 161, 32, 0.1);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-red);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-gray);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-gold);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin: 25px 0 10px;
            background-color: rgba(10, 10, 20, 0.5);
            padding: 10px 15px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-red);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-gold);
            background-color: rgba(202, 161, 32, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-red);
            margin-bottom: 30px;
        }
        strong {
            color: var(--primary-gold);
            font-weight: 700;
        }
        em {
            color: #ffcc99;
            font-style: italic;
        }
        a.content-link {
            color: #4da6ff;
            text-decoration: none;
            border-bottom: 1px dotted #4da6ff;
            transition: var(--transition);
        }
        a.content-link:hover {
            color: #80c1ff;
            border-bottom: 1px solid #80c1ff;
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 30px 0;
            border: 3px solid var(--primary-gold);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .update-time {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 30px;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: var(--border-radius);
        }
        .icon-list {
            list-style: none;
            margin: 25px 0;
        }
        .icon-list li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
        }
        .icon-list li::before {
            content: '▶';
            color: var(--primary-red);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: rgba(42, 42, 60, 0.8);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(202, 161, 32, 0.1);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 20px;
            color: var(--primary-gold);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .search-form input {
            padding: 12px 15px;
            border-radius: var(--border-radius);
            border: 1px solid var(--secondary-gray);
            background-color: rgba(10, 10, 20, 0.7);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 12px 20px;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .search-form button:hover {
            background-color: #a0172e;
            transform: translateY(-3px);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--primary-gold);
        }
        .star-rating input:checked ~ label {
            color: var(--primary-gold);
        }
        .rating-form textarea {
            padding: 12px 15px;
            border-radius: var(--border-radius);
            border: 1px solid var(--secondary-gray);
            background-color: rgba(10, 10, 20, 0.7);
            color: var(--text-light);
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .rating-form button {
            padding: 12px 20px;
            background-color: var(--primary-gold);
            color: var(--text-dark);
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #c5941b;
            transform: translateY(-3px);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 15px;
            border-radius: var(--border-radius);
            border: 1px solid var(--secondary-gray);
            background-color: rgba(10, 10, 20, 0.7);
            color: var(--text-light);
            font-size: 1rem;
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            padding: 12px 20px;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #a0172e;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--secondary-gray);
            padding: 50px 0 30px;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 8px;
        }
        friend-link {
            display: block;
            margin: 25px 0;
            padding: 20px;
            background-color: rgba(10, 10, 20, 0.5);
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-gold);
        }
        friend-link a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
                margin-bottom: 40px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: rgba(10, 10, 20, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                padding: 30px 0;
                gap: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .burger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article {
                padding: 25px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .highlight {
            background-color: rgba(202, 161, 32, 0.15);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(202, 161, 32, 0.3);
            margin: 25px 0;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid var(--primary-red);
            padding-left: 20px;
            margin: 25px 0;
            color: #ccc;
        }
