* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            padding-bottom: 50px;
        }
        .header {
            background-color: #8b4513;
            padding: 15px 20px;
            color: white;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }
        .nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .nav a:hover {
            color: #ffd700;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.2rem;
            margin: 20px 0;
            text-align: center;
            border-bottom: 2px solid #cd853f;
            padding-bottom: 10px;
        }
        h2 {
            color: #8b4513;
            font-size: 1.8rem;
            margin: 30px 0 15px;
            border-left: 4px solid #cd853f;
            padding-left: 10px;
        }
        h3 {
            color: #8b4513;
            font-size: 1.4rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #8b4513;
        }
        .btn-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .tag {
            display: inline-block;
            background-color: #e6e6fa;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #333;
        }
        .tag:hover {
            background-color: #cd853f;
            color: white;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
            text-decoration: none;
            color: #8b4513;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
                margin-top: 15px;
            }
            .nav.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
                text-align: center;
            }
        }
