* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #FF6B00;
            --secondary: #0F172A;
            --accent: #FFD166;
            --light: #F8FAFC;
            --dark: #1E293B;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            padding-bottom: 50px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent);
        }
        .logo span {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav a:hover {
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--secondary);
            padding: 20px;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            z-index: 100;
        }
        .mobile-nav.active {
            display: block;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-right: 10px;
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .btn:hover {
            background-color: #E05A00;
        }
        .btn-secondary:hover {
            background-color: #FFC145;
        }
        .hero {
            background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)), 
                        url('https://host.com/images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
        }
        article {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .content-section {
            margin-bottom: 40px;
        }
        h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            color: var(--primary);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: var(--accent);
            padding: 15px;
            border-left: 5px solid var(--primary);
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .game-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 20px 0;
            background-color: #f1f5f9;
            padding: 20px;
            border-radius: 10px;
        }
        .info-item {
            display: flex;
            flex-direction: column;
        }
        .info-label {
            font-weight: bold;
            color: var(--secondary);
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .game-info {
                grid-template-columns: 1fr;
            }
        }
