:root {
            --primary-red: #e10600;
            --dark-bg: #15151e;
            --light-bg: #f5f5f5;
            --text-dark: #333333;
            --text-light: #ffffff;
            --accent-gold: #ffd700;
            --accent-silver: #c0c0c0;
            --grid-gap: 1.5rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ff3a33;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            border-bottom: 4px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--primary-red);
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--primary-red);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: var(--text-light);
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #444;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #eee;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #777;
        }
        .search-container {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a3a 100%);
            padding: 2rem 0;
            text-align: center;
            margin: 1rem 0 2rem;
            border-radius: var(--border-radius);
        }
        .search-box {
            display: inline-flex;
            max-width: 600px;
            width: 90%;
        }
        .search-box input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--primary-red);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color var(--transition-speed);
        }
        .search-box button:hover {
            background-color: #ff3a33;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: var(--grid-gap);
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--dark-bg);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-red);
            border-bottom: 3px solid var(--accent-silver);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #222;
            padding-top: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #444;
        }
        h4 {
            font-size: 1.4rem;
            color: #666;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-red);
            background-color: #fff5f5;
            padding: 1.5rem;
            border-left: 5px solid var(--primary-red);
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-gold);
            margin: 2rem 0;
        }
        .highlight strong {
            color: #b8860b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform var(--transition-speed);
        }
        img:hover {
            transform: scale(1.01);
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            font-style: italic;
            border-left: 5px solid var(--accent-silver);
            padding-left: 2rem;
            margin: 2rem 0;
            color: #555;
            background-color: #f9f9f9;
            padding: 1.5rem 2rem;
            border-radius: var(--border-radius);
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 1px dashed var(--primary-red);
        }
        .inline-link:hover {
            border-bottom: 2px solid var(--primary-red);
        }
        .content-link-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .content-link-item {
            background-color: #f0f0f0;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: all var(--transition-speed);
            border: 1px solid #ddd;
        }
        .content-link-item:hover {
            background-color: #e9e9e9;
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .content-link-item a {
            color: var(--text-dark);
            display: block;
            font-weight: 600;
        }
        .content-link-item a:hover {
            color: var(--primary-red);
        }
        aside {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-red);
            margin-bottom: 1.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .stars .active {
            color: var(--accent-gold);
        }
        .rating-form input,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: var(--font-body);
        }
        .rating-form button,
        .comment-form button {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background-color: #ff3a33;
        }
        .update-time {
            font-size: 0.9rem;
            color: #777;
            background-color: #f8f8f8;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            text-align: center;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--text-light);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-section ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #ccc;
        }
        .footer-section a:hover {
            color: white;
        }
        friend-link {
            display: block;
            background-color: #222;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1rem 0;
            border-left: 4px solid var(--primary-red);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .content-link-box {
                grid-template-columns: 1fr;
            }
        }
