* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1a365d;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .container {
            width: 92%;
            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: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #1a365d;
            font-size: 36px;
            margin: 35px 0 25px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            color: #1a365d;
            font-size: 28px;
            margin: 35px 0 20px;
            border-bottom: 3px solid #2563eb;
            padding-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #2563eb;
        }
        h3 {
            color: #1e40af;
            font-size: 22px;
            margin: 25px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #f59e0b;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #2563eb;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .btn:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
        }
        .btn-download {
            background-color: #10b981;
        }
        .btn-download:hover {
            background-color: #059669;
        }
        .btn-login {
            background-color: #f59e0b;
        }
        .btn-login:hover {
            background-color: #d97706;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 25px auto;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: block;
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
            text-shadow: 0 0 1px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
            border-top: 5px solid #3b82f6;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 18px 0;
            padding-bottom: 12px;
            border-bottom: 1px dashed #e5e7eb;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background-color: #3b82f6;
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 6px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 22px;
            color: #f59e0b;
            padding-bottom: 8px;
            border-bottom: 2px solid #f59e0b;
            display: inline-block;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .game-type {
            color: #e2e8f0;
            text-decoration: none;
            margin-right: 18px;
            margin-bottom: 12px;
            display: inline-block;
            transition: color 0.3s ease;
            position: relative;
            padding-left: 10px;
        }
        .game-type:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #f59e0b;
        }
        .game-type:hover {
            color: #f59e0b;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid #334155;
            font-size: 15px;
            color: #94a3b8;
        }
        .quote-box {
            background-color: #eff6ff;
            border-left: 4px solid #3b82f6;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 6px 6px 0;
        }
        .quote-box p {
            font-style: italic;
            color: #1e40af;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 18px;
            }
            h3 {
                font-size: 20px;
                margin: 22px 0 14px;
            }
            p {
                font-size: 17px;
                margin-bottom: 20px;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
                padding: 12px 0;
            }
            .stats-box {
                padding: 20px;
                margin: 25px 0;
            }
            footer {
                padding: 35px 0 20px;
            }
        }
