* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f4d03f;
            text-decoration: none;
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }
        .container {
            width: 94%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #f4d03f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        h1 {
            color: #1a5276;
            font-size: 2.5rem;
            margin: 35px 0 25px;
            text-align: center;
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }
        h2 {
            color: #2980b9;
            font-size: 1.9rem;
            margin: 50px 0 20px;
            border-bottom: 2px solid #f4d03f;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #1a5276;
            font-size: 1.5rem;
            margin: 35px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #e67e22;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 15px 25px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            font-size: 1rem;
        }
        .btn-download {
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
        }
        .btn-login {
            background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        }
        .btn:active {
            transform: translateY(-1px);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 10px solid white;
        }
        strong {
            color: #c0392b;
        }
        .tag {
            display: inline-block;
            background-color: #ecf0f1;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 6px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #d5dbdb;
            transform: scale(1.03);
        }
        .tag a {
            color: #3498db;
            text-decoration: none;
        }
        .game-type {
            margin: 10px 0;
            padding: 6px 12px;
            background-color: #f1f8e9;
            border-radius: 5px;
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .game-type a {
            color: #27ae60;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type:hover {
            background-color: #e8f5e9;
        }
        footer {
            background-color: #1a5276;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 220px;
            margin-bottom: 25px;
            padding-right: 20px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #f4d03f;
            border-bottom: 2px solid #f4d03f;
            padding-bottom: 6px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #f4d03f;
            padding-left: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2980b9;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid #e67e22;
            padding-left: 12px;
            margin: 20px 0;
            color: #34495e;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 18px;
            margin: 18px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            border-top: 3px solid #3498db;
        }
        .feature-box h4 {
            color: #3498db;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #1a5276;
                padding: 15px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                margin-left: 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 35px 0 12px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 10px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 8px 0;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-section {
                padding-right: 0;
            }
        }
