:root {
            --primary-dark: #2C1810;
            --primary-red: #8B0000;
            --primary-brown: #5D4037;
            --secondary-gold: #D4AF37;
            --secondary-tan: #D2B48C;
            --light-bg: #F5F1E8;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--light-bg);
            background-image: linear-gradient(rgba(245, 241, 232, 0.9), rgba(245, 241, 232, 0.9)), url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L80,80 M80,20 L20,80" stroke="%235D4037" stroke-opacity="0.05" stroke-width="1"/>');
        }
        .site-header {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--secondary-gold);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .logo a:hover {
            color: var(--text-light);
            text-shadow: 0 0 10px var(--secondary-gold);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--secondary-tan);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--primary-red);
            color: var(--text-light);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--secondary-tan);
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--primary-brown);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--primary-red);
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-red);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 3rem;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--primary-red);
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 8px solid var(--primary-brown);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-tan);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-brown);
            margin: 2.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, var(--secondary-gold) 0%, transparent 100%);
            padding: 2rem;
            border-left: 5px solid var(--primary-red);
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-dark);
        }
        .exclusive-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: bold;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .gameplay-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .detail-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            border-top: 4px solid var(--secondary-gold);
            transition: var(--transition);
        }
        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .detail-card h4 {
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .interview-section {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .interview-quote {
            font-size: 1.3rem;
            font-style: italic;
            border-left: 4px solid var(--secondary-gold);
            padding-left: 2rem;
            margin: 2rem 0;
            color: var(--secondary-tan);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .search-form {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-form input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--secondary-tan);
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--primary-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: var(--secondary-gold);
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
            color: #FFD700;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            border: 2px solid var(--secondary-tan);
            border-radius: 6px;
            margin-bottom: 1rem;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form button {
            background: var(--primary-brown);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        .web-links-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .web-link a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            line-height: 1.5;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: var(--primary-dark);
        }
        .site-footer {
            background: var(--primary-dark);
            color: var(--text-light);
            margin-top: 4rem;
            padding-top: 3rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h4 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--secondary-tan);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--primary-brown);
            color: var(--secondary-tan);
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-container {
                padding: 0 1rem;
            }
            .article-content {
                padding: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .featured-image {
                height: 300px;
            }
            .gameplay-details {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 480px) {
            .article-content {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .highlight {
                padding: 1.5rem;
                font-size: 1.1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget, .web-link {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .underline { text-decoration: underline; }
        .emoji { font-size: 1.2em; margin: 0 0.2rem; }
