* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body {
    background: #020617;
    height: 100vh;
    display: flex; justify-content: center; align-items: center;
}

.visualizer-container {
    background: #0f172a;
    width: 380px; height: 500px;
    border-radius: 40px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.orb-wrapper { position: relative; margin-bottom: 50px; }

.orb {
    width: 120px; height: 120px;
    background: radial-gradient(circle, #00d2ff, #3a7bd5);
    border-radius: 50%;
    z-index: 2; position: relative;
    transition: transform 0.05s linear;
}

.orb-glow {
    position: absolute; top: 0; left: 0;
    width: 120px; height: 120px;
    background: #00d2ff;
    filter: blur(40px); opacity: 0.5;
    border-radius: 50%;
}

.status-info { text-align: center; color: white; }
.status-info h3 { font-size: 1.5rem; letter-spacing: 1px; }
.status-info p { color: #94a3b8; font-size: 0.9rem; margin-top: 5px; }

.pro-tag {
    background: #00d2ff; color: #000;
    font-size: 10px; font-weight: bold;
    padding: 2px 6px; border-radius: 4px; vertical-align: middle;
}

#startBtn {
    margin-top: 40px;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    background: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#startBtn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,255,255,0.2); }