body {
    margin: 0;
    overflow: hidden;
    background-color: #050505;
    color: #ffffff;
    padding-bottom: 2rem;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* Let pointer events pass through to UI underneath if needed */
}

.glass-card {
    background: rgba(11, 12, 16, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.6), inset 0 0 32px rgba(0, 240, 255, 0.05);
    z-index: 10;
}

.glow-text {
    text-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
}

.glow-button {
    position: relative;
    transition: all 0.3s ease;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00F0FF, #FFD700, #00F0FF);
    z-index: -1;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.glow-button:hover::before {
    opacity: 0.8;
}

.glow-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.timer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 0;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timer-box:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
}

/* Abstract Floating Shapes */
.shape {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    top: 10%;
    left: 15%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -10%;
    right: 5%;
}