
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        :root {
            --primary: #6366f1;
            --secondary: #f43f5e;
            --glass-bg: rgba(255, 255, 255, 0.12);
            --glass-border: rgba(255, 255, 255, 0.25);
            --radius: 18px;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            --text: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        main {
            width: 100%;
            max-width: 900px;
        }

        h1 {
            text-align: center;
            color: var(--text);
            font-size: 1.7rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;

        }

        .card {
            width: 260px;
            height: 260px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: var(--radius);
            box-shadow: 0px 0px 20px black  inset;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text);
            transition: 0.3s ease;


        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        .card h2 {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            opacity: 0.9;
        }

        .value {
            font-size: 4rem;
            font-weight: 600;
            color: #fff;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 1.3rem;
            }
            .card {
                width: 200px;
                height: 200px;
            }
            .value {
                font-size: 3rem;
            }
        }
