body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f0f8ff;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu {
            display: none;
            text-align: center;
            margin: 10px 0;
        }
        h1 {
            color: #004d40;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 10px;
        }
        h2 {
            color: #00796b;
            margin-top: 30px;
        }
        h3 {
            color: #00897b;
        }
        .game-buttons {
            text-align: center;
            margin: 30px 0;
        }
        .game-buttons a {
            display: inline-block;
            padding: 12px 30px;
            margin: 0 15px;
            background-color: #ff6b35;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .game-buttons a:hover {
            background-color: #e65100;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        footer {
            background-color: #004d40;
            color: white;
            padding: 20px;
            margin-top: 50px;
            border-radius: 10px;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9em;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu {
                display: block;
            }
            .game-buttons a {
                display: block;
                margin: 10px 0;
                width: 80%;
            }
        }
