
body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(circle at center, #0b0013, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.energy-ball {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #222222 10%, #3b0a54 50%, transparent 100%);
    box-shadow:
    0 0 20px #5a00a0,
    0 0 40px #5a00a0,
    0 0 60px #8811aa,
    inset 0 0 10px #aaaaaa11;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.clock {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid #fff;
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    transform: rotate(90deg);
    transition: transform 0.5s ease-in-out;
}

.hour {
    width: 6px;
    height: 50px;
    background-color: #9900cc;
}

.minute {
    width: 4px;
    height: 70px;
    background-color: #cc66ff;
}

.second {
    width: 2px;
    height: 90px;
    background-color: #ffffff;
}

.center-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #cccccc;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 2px #cccccc88;
}

.number {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 4px #cc99ff;
}
