/* ===== URANIUM VIDEO PLAYER ===== */
/* CodeNumber 1.0 */
.uranium-video-player {
    position: relative;
    width: 100% !important;
    max-width: 645px !important;
    margin: 0 auto;
    border-radius: 16px;
}

/* CodeNumber 1.1 */
.uranium-video-player video {
    display: block;
    width: 100% !important;
    max-width: 645px !important;
    height: auto !important;
    border-radius: 16px;
}

/* CodeNumber 1.2 */
.uranium-video-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    animation: uranium-pulse 3s ease-in-out infinite;
}

/* CodeNumber 1.3 */
@keyframes uranium-pulse {
    0%, 100% {
        box-shadow:
            0 0 10px rgba(57, 255, 20, 0.4),
            0 0 25px rgba(57, 255, 20, 0.2),
            0 0 50px rgba(57, 255, 20, 0.1);
    }
    50% {
        box-shadow:
            0 0 15px rgba(57, 255, 20, 0.7),
            0 0 35px rgba(57, 255, 20, 0.4),
            0 0 70px rgba(57, 255, 20, 0.2),
            0 0 100px rgba(57, 255, 20, 0.1);
    }
}
















































/* ===== URANIUM LOGO GLOW ===== */
/* CodeNumber 2.0 */
.uranium-logo-wrapper {
    width: 100% !important;
    max-width: 645px !important;
    margin: 0 auto;
    text-align: center;
}

/* CodeNumber 2.1 */
.uranium-logo {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    animation: uranium-logo-pulse 3s ease-in-out infinite;
}

/* CodeNumber 2.2 */
@keyframes uranium-logo-pulse {
    0%, 100% {
        filter:
            drop-shadow(0 0 8px rgba(57, 255, 20, 0.4))
            drop-shadow(0 0 20px rgba(57, 255, 20, 0.2));
    }
    50% {
        filter:
            drop-shadow(0 0 12px rgba(57, 255, 20, 0.7))
            drop-shadow(0 0 30px rgba(57, 255, 20, 0.4))
            drop-shadow(0 0 50px rgba(57, 255, 20, 0.15));
    }
}