:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #fbbf24;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --transition: all 0.3s ease;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background: var(--light);
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: var(--dark);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }
        .nav-desktop a:hover {
            color: var(--accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary);
            padding: 1rem;
            gap: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.05);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.05);
            padding: 0.75rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #e2e8f0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: white;
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .article h2 {
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
            font-size: 1.8rem;
        }
        .article h3 {
            color: var(--dark);
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article em {
            color: var(--secondary);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(90deg, #f0f9ff, #e0f2fe);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .game-image {
            margin: 2.5rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        }
        .game-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.75rem;
            background: #f1f5f9;
            color: var(--gray);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #cbd5e1;
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #cbd5e1;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent);
        }
        .rating-widget input,
        .rating-widget textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .rating-widget button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background: #b91c1c;
            transform: translateY(-2px);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
        }
        .related-links a:hover {
            color: var(--primary);
            padding-left: 0.5rem;
        }
        .comments-section {
            background: white;
            border-radius: var(--radius);
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 640px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.75rem;
            border: 2px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .comment-form button:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        .comment {
            background: #f8fafc;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .footer-links {
            background: var(--dark);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(10px);
        }
        .web-link a {
            color: var(--accent);
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .footer {
            background: #0a0a0a;
            color: #94a3b8;
            text-align: center;
            padding: 3rem 0;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .footer-links-col h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .footer-links-col a {
            display: block;
            margin-bottom: 0.75rem;
            color: #94a3b8;
        }
        .footer-links-col a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.25rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article {
                padding: 2rem;
            }
            .comments-section {
                padding: 2rem;
            }
        }
