/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    color: white;
}

/* Title */
.title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(255,255,255,0.25);
}

/* Glass Box */
.glass-box {
    padding: 30px 50px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 40px rgba(255,255,255,0.05);
    display: flex;
    gap: 12px;
    font-size: 22px;
    letter-spacing: 1px;
}

/* Label + Value */
.label {
    opacity: 0.7;
}

.value {
    font-weight: 500;
}

/* Cursor Glow */
#cursor-glow {
    position: fixed;
    width: 220px;
    height: 220px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.18), rgba(255,0,0,0));
    filter: blur(60px);
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
    z-index: 1;
}

/* Particle container */
#particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Individual particle */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.8;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from { transform: translateY(0); opacity: 0.8; }
    to { transform: translateY(-120vh); opacity: 0; }
}

