:root {
            --primary-red: #e10600;
            --primary-black: #15151e;
            --primary-grey: #38383f;
            --accent-silver: #f8f9fa;
            --text-light: #ffffff;
            --text-dark: #222222;
            --transition-speed: 0.3s;
        }
        * {
            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-dark);
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        .site-header {
            background-color: var(--primary-black);
            color: var(--text-light);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color var(--transition-speed);
        }
        .my-logo:hover {
            color: var(--text-light);
            text-shadow: 0 0 8px var(--primary-red);
        }
        .my-logo span {
            color: var(--text-light);
            font-weight: 300;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color var(--transition-speed);
        }
        .main-nav a:hover {
            color: var(--primary-red);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            left: 0;
            bottom: 0;
            transition: width var(--transition-speed);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--primary-grey);
            border-radius: 25px;
            padding: 0.5rem 1rem;
        }
        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-light);
            outline: none;
            width: 200px;
            padding: 0.3rem;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: var(--primary-red);
            cursor: pointer;
            font-size: 1.1rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--primary-grey);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            color: #ccc;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #aaa;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 0 2rem;
        }
        .main-content {
            background-color: var(--text-light);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        article h1 {
            color: var(--primary-black);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--primary-red);
            padding-bottom: 0.8rem;
        }
        article h2 {
            color: var(--primary-red);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-top: 1rem;
        }
        article h3 {
            color: var(--primary-grey);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        article h4 {
            color: var(--primary-black);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        article em {
            font-style: italic;
            background: linear-gradient(transparent 60%, #ffeaa7 60%);
        }
        article strong {
            color: var(--primary-red);
            font-weight: 800;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px dashed #ddd;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
            color: #666;
        }
        .last-updated {
            font-weight: 600;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform var(--transition-speed);
        }
        .featured-image:hover {
            transform: scale(1.008);
        }
        .content-block {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--primary-red);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .game-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all var(--transition-speed);
        }
        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .game-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .game-card-content {
            padding: 1.5rem;
        }
        .sidebar {
            background-color: var(--text-light);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-red);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .sidebar ul {
            list-style: none;
            margin-bottom: 2.5rem;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .sidebar li::before {
            content: '🏎️';
            position: absolute;
            left: 0;
        }
        .sidebar a {
            color: var(--primary-grey);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        .sidebar a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .rating-widget, .comment-widget {
            background-color: #f8f9fa;
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .rating-widget h4, .comment-widget h4 {
            color: var(--primary-black);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.2rem;
        }
        .stars i {
            color: #ffd700;
            font-size: 1.4rem;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .stars i:hover {
            color: #ffed4e;
        }
        .rating-form input, .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color var(--transition-speed);
            width: 100%;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #c10500;
        }
        .site-footer {
            background-color: var(--primary-black);
            color: #aaa;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        .footer-section h4 {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary-red);
            left: 0;
            bottom: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: var(--primary-grey);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        friend-link h5 {
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #4fc3f7;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
            }
            .search-box input {
                width: 150px;
            }
            .main-content {
                padding: 2rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 480px) {
            .site-header, .breadcrumb, .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .main-content, .sidebar {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 1.9rem;
            }
            .game-list {
                grid-template-columns: 1fr;
            }
        }
