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

        body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
            color: #333;
        }

        .title {
            margin-bottom: 40px;
            text-align: center;
        }

        .title h1 {
            font-size: 3rem;
            color: #0b74d1;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 300px;
        }

        .container a {
            display: block;
            padding: 20px;
            text-align: center;
            text-decoration: none;
            color: #fff;
            font-size: 1.2rem;
            border-radius: 12px;
            background: #0b74d1;
            box-shadow: 4px 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.2s, background 0.3s;
        }

        .container a:hover {
            background: #095ca6;
            transform: translateY(-3px);
            box-shadow: 6px 6px 18px rgba(0,0,0,0.15);
        }

        @media (max-width: 400px) {
            .container {
                width: 90%;
            }
        }