  body {
            margin: 0;
            min-height: 100vh;
            background: linear-gradient(45deg, #1e0d3a, #83448e, #905daf, #d297d7);
            position: relative;
            overflow-x: hidden;
        }

        .bokeh-circle {
            position: absolute;
            width: 20vw;
            height: 20vw;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            filter: blur(30px);
            animation: bloom 10s infinite ease-in-out;
        }

        @keyframes bloom {
            0% { transform: translate(-20vw, -20vh); opacity: 0; }
            50% { transform: translate(vw, vh); opacity: 1; }
            100% { transform: translate(40vw, 60vh); opacity: 0; }
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 20px auto;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .welcome-container {
            text-align: center;
        }

        .links-container {
            text-align: center;
        }

        h1 {
            color: #333;
            margin-bottom: 20px;
            font-family: 'Segoe UI', sans-serif;
        }

        a {
            display: block;
            margin-top: 15px;
            text-align: center;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            filter: brightness(1.2);
        }
