* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a237e;
            padding: 15px 20px;
            color: white;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }
        .nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background-color: #3f51b5;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a237e;
            margin: 20px 0;
            font-size: 32px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
        }
        h2 {
            color: #3f51b5;
            margin: 30px 0 15px;
            font-size: 26px;
        }
        h3 {
            color: #5c6bc0;
            margin: 20px 0 10px;
            font-size: 22px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #d32f2f;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background 0.3s;
        }
        .btn:hover {
            background-color: #b71c1c;
        }
        .image-container {
            margin: 20px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .tag {
            display: inline-block;
            background-color: #e8eaf6;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #3f51b5;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #c5cae9;
        }
        .game-type {
            margin: 10px 0;
        }
        .game-type a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type a:hover {
            text-decoration: underline;
        }
        .footer {
            background-color: #1a237e;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 20px;
            font-size: 14px;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
                margin-top: 15px;
            }
            .nav.show {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
