/* --- Greet Page --- */ .robot-container { display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; margin: 40px auto; width: 100%; user-select: none; } .robot-icon { font-size: 5rem; filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.3)); animation: float 3s ease-in-out infinite; } .bubble { margin-top: 20px; padding: 16px 24px; background: rgba(30, 30, 46, 0.8); border-radius: 20px; border: 1px solid rgba(255, 173, 210, 0.3); color: #ffffff; font-weight: 600; font-size: 1rem; text-align: center; max-width: 90%; } @supports (backdrop-filter: blur(12px)) { .bubble { backdrop-filter: blur(12px); } }