        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        :root {
            --primary: #E63946; 
            --secondary: #1D3557; 
            --accent: #FFB703; 
            --text-dark: #1A1A1A;
            --text-light: #FFFFFF;
            --bg-light: #F8F9FA;
            --bg-dark: #2C3E50;
            --shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            font-size: 16px;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-light);
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
        }
        .logo span {
            color: var(--text-light);
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger div {
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 3px;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0.5rem 0;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--text-light);
        }
        .btn-download:hover {
            background-color: #D02E3C;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--text-light);
        }
        .btn-login:hover {
            background-color: #162940;
            transform: translateY(-2px);
        }
        h1 {
            font-size: 2.8rem;
            margin: 2rem 0;
            color: var(--secondary);
            border-bottom: 3px solid var(--primary);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin: 1.8rem 0;
            color: var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0;
            color: var(--secondary);
        }
        p {
            margin: 1rem 0;
            text-align: justify;
            padding: 0.5rem 0;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        .content-section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .highlight-box {
            background-color: rgba(255, 183, 3, 0.1);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .game-facts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .fact-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }
        .fact-card h4 {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin: 0.8rem 0;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--bg-dark);
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 1rem;
                display: none;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 1rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .content-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 2rem 0;
        }
        .tag {
            background-color: rgba(29, 53, 87, 0.1);
            color: var(--secondary);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--secondary);
            color: var(--text-light);
        }
        .categories {
            margin: 2rem 0;
        }
        .category-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            margin-right: 1.5rem;
        }
        .category-link:hover {
            text-decoration: underline;
        }
