body, html {
    background-color: #000000;
    color: #ffffff;
    overflow-x: clip;
    width: 100%;
    position: relative;
}
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #814ac8; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes rotate-glow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.xtract-hero-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.65;
}
.xtract-glow-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(229deg, #df7afe 13%, transparent 35%, transparent 64%, #814ac8 88%);
    animation: rotate-glow 12s linear infinite;
}
.xtract-glow-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(141deg, #df7afe 13%, transparent 35%, transparent 64%, #814ac8 88%);
    animation: rotate-glow 8s linear infinite reverse;
}