        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-red: #e62429;
            --primary-blue: #0067b1;
            --dark-bg: #111;
            --light-bg: #f5f5f5;
            --text-light: #f0f0f0;
            --text-dark: #222;
            --accent-yellow: #ffd700;
            --shadow: 0 4px 12px rgba(0,0,0,0.15);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--dark-bg) 70%, #2a0a0a);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-red) 30%, var(--accent-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a {
            color: inherit;
        }
        .search-box {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 20px;
            position: relative;
        }
        #search-form {
            display: flex;
        }
        #search-input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: rgba(255,255,255,0.15);
            color: white;
            font-size: 1rem;
        }
        #search-input::placeholder {
            color: #ccc;
        }
        #search-button {
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 12px 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        #search-button:hover {
            background: #ff3a3a;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(0,0,0,0.05);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #777;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 20px auto;
        }
        .article-header {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 3px solid var(--primary-red);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 0 30px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        h2, h3, h4 {
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary-red);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(230,36,41,0.1) 0%, rgba(255,215,0,0.1) 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-red);
            margin: 30px 0;
        }
        .highlight strong {
            color: var(--primary-red);
            font-size: 1.2rem;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            padding: 10px;
            background: #f9f9f9;
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid var(--accent-yellow);
            padding-left: 20px;
            margin: 25px 0 25px 20px;
            color: #555;
            background: #fff9e6;
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        aside {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--dark-bg);
            padding-bottom: 10px;
            border-bottom: 2px dashed #ccc;
        }
        .game-info ul {
            list-style: none;
        }
        .game-info li {
            padding: 10px 0;
            border-bottom: 1px dotted #ddd;
            display: flex;
            justify-content: space-between;
        }
        .game-info .label {
            font-weight: 600;
            color: #333;
        }
        .user-interaction {
            background: #f0f8ff;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #cce7ff;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .comment-box, .rating-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,103,177,0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-yellow);
        }
        .btn {
            background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(230,36,41,0.3);
            text-decoration: none;
        }
        .internal-links {
            background: #fff5f5;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #ffe6e6;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: var(--primary-red);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: var(--accent-yellow);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box {
                max-width: 100%;
                margin: 10px 0;
                order: 3;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark-bg);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                order: 2;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                padding: 0 15px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
