
        .login-btn {
            --button-bg: linear-gradient(135deg, #2cab23 0%, #2cab23 100%);
            --button-hover-bg: #2cab23;
            --button-active-bg: #2cab23;
            background: linear-gradient(135deg, #2cab23 0%, #2cab23 100%);
        }

        .login-btn:hover {
            background: linear-gradient(135deg, #2cab23 0%, #2cab23 100%);
            color: hsla(0, 0%, 100%, 1);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2), 0px 10px 40px rgba(0, 0, 0, 0.4)
        }

        .register-btn {
            --button-bg: linear-gradient(135deg, #1354d7 0%, #1354d7 100%);
            --button-hover-bg: #1354d7;
            --button-active-bg: #1354d7;
            background: linear-gradient(135deg, #1354d7 0%, #1354d7 100%);
        }

        .register-btn:hover {
            background: linear-gradient(135deg, #1354d7 0%, #1354d7 100%);
            color: hsla(0, 0%, 100%, 1);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2), 0px 10px 40px rgba(0, 0, 0, 0.4)
        }

        .cardFooter.inputGroupAddon.progressCircle {
            padding-top: 52px;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 0;
            z-index: 3;
            transition: .3s ease-in-out;
        }
        .header.fixed {
            padding: 10px 0;
            background: #202b38;
            box-shadow: 0 0 10px 4px rgb(255, 255, 255, 0.05);
        }

        .header-inner {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        /* style for mobile */
        @media (max-width: 768px) {

            .login-btn,
            .register-btn {
                padding-right: 10px;
                padding-left: 10px;
            }
        }
    

    .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .game-box {
            background: #2d2d2d;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s ease;
            border: 2px solid transparent;
        }

        .game-box:hover {
            transform: translateY(-4px);
            border-color: #dc2626;
        }

        .game-image {
            width: 100%;
            height: 160px;
            position: relative;
            overflow: hidden;
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .game-content {
            padding: 16px;
        }

        .game-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            text-align: center;
        }

        .game-buttons {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .game-btn {
            padding: 10px 16px;
            border-radius: 6px;
            text-decoration: none;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            display: block;
        }

        .btn-primary {
            background: #dc2626;
            color: #fff;
            border: none;
        }

        .btn-primary:hover {
            background: #b91c1c;
        }

        .btn-secondary {
            background: transparent;
            color: #dc2626;
            border: 1px solid #dc2626;
        }

        .btn-secondary:hover {
            background: #dc2626;
            color: #fff;
        }

        /* Mobile first approach */
        @media (max-width: 480px) {
            body {
                padding: 15px;
            }
            
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .game-box {
                border-radius: 8px;
            }
            
            .game-image {
                height: 120px;
            }
            
            .game-content {
                padding: 12px;
            }
            
            .game-title {
                font-size: 14px;
                margin-bottom: 12px;
            }
            
            .game-btn {
                padding: 8px 12px;
                font-size: 13px;
            }
        }

        @media (min-width: 768px) {
            .games-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            
            .game-image {
                height: 180px;
            }
        }

        /* Subtle imperfections for human touch */
        .game-box:nth-child(2) {
            transform: rotate(0.3deg);
        }
        
        .game-box:nth-child(4) {
            transform: rotate(-0.2deg);
        }
        
        .game-box:nth-child(6) {
            transform: rotate(0.1deg);
        }

        .game-box:nth-child(odd) .game-content {
            padding: 17px 16px 15px;
        }

        /* Slightly different button widths */
        .game-box:nth-child(3n) .btn-secondary {
            padding: 10px 14px;
        }

