:root {
            --primary-dark: #0a0a12;
            --primary-red: #9c1d24;
            --primary-gold: #c79b3d;
            --secondary-steel: #5a6268;
            --text-light: #f0f0f0;
            --text-muted: #b0b0b0;
            --bg-card: #1a1a24;
            --border-color: #333344;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: linear-gradient(to bottom, #0a0a12 0%, #1a1a28 100%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #f0d070;
            text-shadow: 0 0 5px rgba(199, 155, 61, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .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;
            background: linear-gradient(to right, var(--primary-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav {
            display: flex;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-list a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-list a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        .nav-list a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .search-box {
            margin: 30px 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--primary-red);
            background: var(--bg-card);
            color: var(--text-light);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 25px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #b52a32;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px double var(--primary-gold);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-gold);
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2.3rem;
            color: var(--primary-red);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: var(--primary-gold);
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 2em;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(156,29,36,0.2) 0%, rgba(10,10,18,0) 100%);
            border-left: 4px solid var(--primary-red);
            padding: 20px 25px;
            margin: 30px 0;
            font-style: italic;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            border: 3px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: #222233;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(156, 29, 36, 0.2);
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 50px;
            padding-top: 15px;
            border-top: 1px dashed var(--border-color);
        }
        .rating-comment-section {
            background: var(--bg-card);
            border-radius: 10px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0 25px;
        }
        .star {
            font-size: 2rem;
            color: var(--secondary-steel);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--primary-gold);
            transform: scale(1.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: #222233;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-gold);
        }
        .submit-btn {
            background: var(--primary-red);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #b52a32;
            transform: translateY(-2px);
        }
        footer {
            background: #080810;
            padding: 50px 0 20px;
            border-top: 3px solid var(--primary-red);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-gold);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background: #222233;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 5px;
            border-left: 4px solid var(--primary-gold);
            transition: var(--transition);
        }
        friend-link:hover {
            background: #2a2a3b;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(10, 10, 18, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                transition: left 0.5s ease;
                border-top: 2px solid var(--primary-red);
            }
            .main-nav.active {
                left: 0;
            }
            .nav-list {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .header-container {
                padding: 15px 0;
            }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .lead { font-size: 1.2rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            article, .rating-comment-section { padding: 20px; }
            h1 { font-size: 2rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 5px; margin-bottom: 10px; }
            .search-btn { border-radius: 5px; padding: 15px; }
        }
