/* ==========================================================================
   Chatoye Crystal Light - Final Center Box, Same Buttons, Stars & Flashing Tick
   ========================================================================== */

#login_wrap { 
    width: 100%; 
    height: 100vh; 
    display: block;
    position: relative;
}

#intro_top { 
    width: 100% !important; 
    height: 100vh !important; 
    z-index: 1; 
    position: relative; 
    background: #292929 url('images/background.jpg') no-repeat center center fixed; 
    background-size: cover; 
    overflow: hidden; 
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#intro_top .btable {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 5; 
}

#intro_top .bcell_mid {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
}

/* --------------------------------------------------------------------------
   STARFIELD TWINKLING PARTICLES LAYERS
   -------------------------------------------------------------------------- */
.stars_layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none;
    display: block !important;
}
.layer1 {
    background: transparent;
    box-shadow: 120px 85px #fff, 340px 180px rgba(0, 223, 216, 0.8), 560px 420px #fff, 
                890px 120px rgba(255, 0, 127, 0.7), 230px 610px #fff, 710px 290px rgba(0, 223, 216, 0.8);
    width: 3px; height: 3px; border-radius: 50%;
    animation: realTwinkle 3s infinite alternate ease-in-out !important;
}
.layer2 {
    background: transparent;
    box-shadow: 200px 250px #fff, 680px 150px #fff, 920px 580px rgba(255, 0, 127, 0.6), 140px 510px rgba(0, 223, 216, 0.8);
    width: 4px; height: 4px; border-radius: 50%;
    animation: realTwinkle 4.5s infinite alternate-reverse ease-in-out !important;
}
@keyframes realTwinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.4; transform: scale(0.9); }
}

/* --------------------------------------------------------------------------
   CRYSTAL WHITE BOX PANEL (370PX COMPACT SIZE LOCK)
   -------------------------------------------------------------------------- */
.crystal_light_card { 
    width: 370px; 
    max-width: 94%; 
    background: rgba(255, 255, 255, 0.90) !important; 
    border: 2px solid transparent !important;
    border-image: linear-gradient(135deg, #ff007f, #00dfd8) 1 !important; 
    border-radius: 20px !important; 
    margin: 0 auto !important; 
    position: relative !important;
    float: none !important;
    padding: 30px 20px !important; 
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
}

#login_logo { 
    height: 70px !important;
    object-fit: contain;
    margin-bottom: 5px;
}

.dynamic_main_title {
    color: #0f172a !important; 
    font-weight: 800 !important;
    font-size: 20px !important; 
    letter-spacing: -0.5px;
    margin-top: 5px;
}

.light_subtitle_text {
    color: #475569 !important; 
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   USER AVATARS SYSTEM GRID
   -------------------------------------------------------------------------- */
.last_users_wrapper {
    margin: 15px 0 10px 0 !important;
    text-align: center;
    width: 100%;
}
.last_users_title {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px !important;
}
.users_avatar_grid {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important; 
    gap: 12px !important; 
    flex-wrap: nowrap !important; 
    overflow: hidden;
    padding: 4px 0;
}
.user_container_block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important; 
    cursor: pointer;
    transition: transform 0.2s ease;
}
.user_container_block:hover {
    transform: translateY(-2px);
}
.user_mini_node {
    position: relative !important;
    width: 36px !important; 
    height: 36px !important;
    border-radius: 50% !important;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.mini_avatar_img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   RESTORED CONTINUOUS SYNC FLASHING MECHANISMS
   -------------------------------------------------------------------------- */
.online_flash_active {
    border-color: #10b981 !important; 
    animation: dpFlashPulse 1.6s infinite ease-in-out !important;
}

.name_flash_active {
    animation: nameFlashPulse 1.6s infinite ease-in-out !important;
}

/* Base style mapping for text checkmark */
.online_indicator_dot {
    position: absolute !important;
    background: #10b981 !important; 
    color: #ffffff !important; 
    font-size: 8px !important; 
    font-weight: bold !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    width: 12px !important; 
    height: 12px !important; 
    bottom: -2px !important; 
    right: -2px !important; 
    border: 1.5px solid #ffffff !important; 
    border-radius: 50% !important;
    z-index: 6;
}

/* FIXED RESTORED: Continuous flashing wave engine loop for the tick mark tag */
.tick_flashing_animation {
    animation: tickContinuousFlash 1.6s infinite ease-in-out !important;
    transform-origin: center;
}

@keyframes dpFlashPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); filter: brightness(1); }
    50% { box-shadow: 0 0 10px 4px rgba(16, 185, 129, 0.35); filter: brightness(1.06); }
}

@keyframes nameFlashPulse {
    0%, 100% { color: #0072ff !important; opacity: 1; }
    50% { color: #00dfd8 !important; opacity: 0.8; }
}

/* Continuous looping flash framework for green indicator checkmark icon */
@keyframes tickContinuousFlash {
    0%, 100% { transform: scale(1); opacity: 1; background: #10b981 !important; }
    50% { transform: scale(1.15); opacity: 0.7; background: #00dfd8 !important; box-shadow: 0 0 8px #00dfd8; }
}

.user_mini_name {
    font-size: 10px !important;
    font-weight: 800 !important;
    color: #0072ff !important; 
    margin-top: 5px !important;
    text-align: center !important;
    width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important; 
    display: block !important;
}
.blank_node {
    background: #e2e8f0; 
}

/* --------------------------------------------------------------------------
   BUTTONS THEME ARCHITECTURE
   -------------------------------------------------------------------------- */
.multicolor_btn_main {
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    gap: 10px !important; 
    height: 44px !important; 
    padding: 0 35px !important; 
    background: linear-gradient(135deg, #7928ca 0%, #ff007f 100%) !important; 
    border: none !important;
    outline: none !important;
    border-radius: 50px !important; 
    color: #ffffff !important; 
    text-shadow: none !important;
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.35) !important;
    cursor: pointer;
    transition: all 0.25s ease-in-out !important;
}
.multicolor_btn_main:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.5) !important;
    filter: brightness(1.1) !important;
}
.btn_text_large {
    font-size: 15px !important; 
    font-weight: 800 !important; 
    color: #ffffff !important;
    display: inline-block;
}

.light_register_layout {
    display: flex !important; 
    flex-direction: row !important; 
    align-items: center !important; 
    justify-content: center !important; 
    gap: 8px !important; 
    margin-top: 12px !important;
    width: 100% !important;
}

.clean_white_tag {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    height: 34px !important; 
    padding: 0 10px !important; 
    flex: 1 !important; 
    background: linear-gradient(135deg, #7928ca 0%, #ff007f 100%) !important; 
    border: none !important;
    outline: none !important;
    border-radius: 40px !important;
    color: #ffffff !important;
    font-size: 11px !important; 
    font-weight: 800 !important;
    pointer-events: none !important; 
    white-space: nowrap !important; 
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.2) !important;
}

.multicolor_btn_register {
    margin: 0 !important; 
    height: 34px !important; 
    padding: 0 12px !important; 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    gap: 4px !important; 
    flex: 1 !important; 
    border-radius: 40px !important;
    border: none !important;
    outline: none !important;
    background: linear-gradient(135deg, #7928ca 0%, #ff007f 100%) !important; 
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.2) !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
}
.multicolor_btn_register:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 15px rgba(255, 0, 127, 0.35) !important;
}
.btn_text_mini {
    font-size: 11px !important; 
