:root {
    --accent: #00F5FF;
    --secondary: #7000FF;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #020203;
    color: #ffffff;
    overflow-x: hidden;
}

.aurora-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    animation: move 25s infinite alternate;
}

@keyframes move {
    from { transform: translate(-10%, -10%) rotate(0deg); }
    to { transform: translate(30%, 20%) rotate(360deg); }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-panel:hover {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.08);
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-item { opacity: 0; transform: translateY(30px); }
.hp-field { display: none !important; visibility: hidden !important; }

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 2rem)); }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #020203; }
::-webkit-scrollbar-thumb { background: #1a1a1a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }