* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .container {
            width: 94%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 101;
        }
        h1 {
            color: #d35400;
            margin: 35px 0 25px;
            font-size: 36px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #c0392b;
            margin: 45px 0 20px;
            font-size: 26px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e67e22;
        }
        h3 {
            color: #27ae60;
            margin: 30px 0 15px;
            font-size: 22px;
            padding-left: 10px;
            border-left: 3px solid #c0392b;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: #d35400;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(211, 84, 0, 0.4);
            background-color: #d35400;
        }
        .btn-download {
            background-color: #27ae60;
            box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
        }
        .btn-download:hover {
            background-color: #219653;
            box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
        }
        .btn-login {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        .btn-login:hover {
            background-color: #2980b9;
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
            border: 3px solid #ffffff;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #e67e22;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f8f5f0;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #d35400;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #2d2d2d;
            font-size: 15px;
        }
        .tag {
            display: inline-block;
            background-color: #f1c40f;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #2d2d2d;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #f39c12;
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .game-types {
            margin: 30px 0;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-types h3 {
            margin-top: 0;
        }
        .game-types a {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            color: #3498db;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .game-types a:hover {
            background-color: rgba(52, 152, 219, 0.1);
            color: #2980b9;
        }
        footer {
            background-color: #2d2d2d;
            color: #ffffff;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #f39c12;
            border-bottom: 2px solid rgba(243, 156, 18, 0.3);
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-section a:hover {
            color: #f39c12;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #95a5a6;
        }
        .recommendation {
            background-color: rgba(39, 174, 96, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #27ae60;
        }
        .recommendation p {
            margin-bottom: 0;
            color: #2c3e50;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-table th, .game-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .game-table th {
            background-color: #e67e22;
            color: white;
            font-weight: bold;
        }
        .game-table tr:last-child td {
            border-bottom: none;
        }
        .game-table tr:hover {
            background-color: #f8f5f0;
        }
        .highlight-box {
            background-color: rgba(241, 196, 15, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #f1c40f;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .tips-box {
            background-color: rgba(52, 152, 219, 0.1);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        .tips-box h4 {
            color: #2980b9;
            margin-bottom: 15px;
            font-size: 17px;
        }
        .tips-box ul {
            padding-left: 20px;
        }
        .tips-box li {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: #d35400;
                padding: 60px 20px 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .nav-links a {
                font-size: 17px;
                display: block;
                padding: 8px 12px;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 19px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
                margin-bottom: 18px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .game-table th, .game-table td {
                padding: 10px;
                font-size: 14px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
                padding: 12px 0;
            }
            .footer-content {
                gap: 20px;
            }
        }
