        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --accent-color: #f4a261;
            --light-bg: #f8f9fa;
            --dark-text: #2b2d42;
            --light-text: #8d99ae;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --container-padding: 1rem;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--secondary-color);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        em {
            color: var(--accent-color);
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo a:hover {
            text-decoration: none;
            color: var(--secondary-color);
        }
        .breadcrumb {
            background-color: rgba(29, 53, 87, 0.05);
            padding: 0.8rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--light-text);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 2rem;
        }
        nav a {
            font-weight: 600;
            color: var(--secondary-color);
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .nav-active {
            color: var(--primary-color);
        }
        .nav-active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--secondary-color);
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            background: linear-gradient(135deg, var(--secondary-color), #457b9d);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            text-align: center;
            color: var(--white);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #c1121f;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .game-card {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 1.5rem;
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 2rem;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-color);
        }
        .game-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid var(--white);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .game-info h3 {
            margin-top: 0;
        }
        .game-rating {
            display: flex;
            align-items: center;
            margin: 0.5rem 0;
        }
        .stars {
            color: #ffc107;
            margin-right: 0.5rem;
        }
        .rating-text {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .tag {
            background-color: rgba(230, 57, 70, 0.1);
            color: var(--primary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: var(--white);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--light-bg);
            margin-bottom: 1.5rem;
        }
        .popular-games-list {
            list-style: none;
        }
        .popular-games-list li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        .popular-games-list li:last-child {
            border-bottom: none;
        }
        .popular-games-list i {
            color: var(--primary-color);
            margin-right: 0.8rem;
            font-size: 0.9rem;
        }
        .user-interaction {
            margin-top: 4rem;
        }
        .interaction-tabs {
            display: flex;
            border-bottom: 2px solid var(--light-bg);
            margin-bottom: 2rem;
        }
        .tab-button {
            padding: 1rem 2rem;
            background: none;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--light-text);
            cursor: pointer;
            position: relative;
            transition: var(--transition);
        }
        .tab-button.active {
            color: var(--primary-color);
        }
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
        }
        .tab-content {
            display: none;
            background-color: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .tab-content.active {
            display: block;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars-input {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            margin: 1rem 0;
        }
        .rating-star {
            cursor: pointer;
            color: #ddd;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: #ffc107;
        }
        .submit-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .submit-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(230, 57, 70, 0.3);
        }
        .submit-button i {
            margin-left: 0.5rem;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background-color: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary-color);
        }
        .comment-date {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        .comment-rating {
            color: #ffc107;
            margin: 0.5rem 0;
        }
        .internal-links {
            background-color: var(--secondary-color);
            padding: 3rem 0;
            margin-top: 4rem;
            color: var(--white);
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: var(--white);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        footer {
            background-color: #1a1a2e;
            color: var(--light-text);
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-column h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #b0b7c3;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav li {
                margin: 0;
                width: 100%;
            }
            nav a {
                display: block;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            .article-content {
                padding: 1.5rem;
            }
            .game-card {
                grid-template-columns: 1fr;
            }
            .game-image {
                height: 200px;
            }
            .interaction-tabs {
                flex-direction: column;
            }
            .tab-button {
                text-align: left;
                border-bottom: 1px solid var(--light-bg);
            }
        }
        @media print {
            header, .sidebar, .user-interaction, .internal-links, footer {
                display: none;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            body {
                background-color: white;
                color: black;
                font-size: 12pt;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        :focus-visible {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget, .user-interaction {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #c1121f;
        }
