.table-simple { width: 100%; }
.table-simple th, .table-simple td { padding: 8px; border-top: 1px solid #2a2931; }

.zag_ver {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 7px;
}

.opis_ver {
    font-weight: 600;
    color: #959595;
    font-size: 11px;
    line-height: 16px;
    padding-bottom: 10px;
    border-bottom: solid 1px #4b4b4b;
}

.kak_verif {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 7px;
    margin-top: 10px;
}

.vir_primer {
    display: flex;
    background: #525661;
    border-radius: 11px;
    gap: 10px;
    padding: 10px;
    margin-top: 5px;
    align-items: center;
}

.img_nulled_ver {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.flex_ver {
    display: flex;
    line-height: 15px;
    flex-direction: column;
}

.login_ver {
    display: flex;
    gap: 5px;
    font-weight: 600;
    font-size: 11px;
    align-items: center;
    margin-bottom: -1px;
}

.group_ver {
    font-size: 11px;
    font-weight: 600;
    margin-left: -1px;
    color: #858585;
}

.save_all {
    border: none;
    padding: 14px;
    background: var(--GLOBAL, radial-gradient(100% 100% at 50% 0, #ff7591 0, #fe9544 250%));
    color: #fff;
    transition: .2s all;
    font-weight: 600;
    width: 100%;
    border-radius: 10px;
}

.save_all:hover {
    opacity: 0.7;
}

.block_verif {
    border-radius: 15px;
    background: linear-gradient(15deg, #3c4049 30%, #41454f 100%);
    padding: 20px;
    margin-bottom: 10px;
    display: flex;
    margin-top: 14px;
    flex-direction: column;
}


#place_verification_new.space-depth {
    background: radial-gradient(ellipse at center, #0c0e29 0%, #000000 100%);
    height: 170px;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
	margin-bottom: 15px;
}

#place_verification_new.space-depth::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

#place_verification_new.space-depth::after {
    content: '✦';
    position: absolute;
    color: white;
    font-size: 24px;
    animation: twinkle 3s infinite;
    top: 15%;
    right: 15%;
}

.verification-text {
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
}

.text-main {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, 
        #ffffff 0%, 
        #a3d9ff 30%, 
        #5c8df5 50%, 
        #a3d9ff 70%, 
        #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(92, 141, 245, 0.5);
    animation: gradientShine 3s linear infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}
.subtext {
    margin-top: 10px;
    font-size: 15px;
    color: #a3d9ff;
    opacity: 0.9;
    letter-spacing: 1.5px;
    font-weight: 300;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    padding: 8px 20px;
}

.subtext span {
    z-index: 2;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #5c8df5, 
        #00ff9d, 
        #5c8df5, 
        transparent);
    animation: underlineWave 3s ease-in-out infinite;
    opacity: 0.7;
}

.subtext::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(92, 141, 245, 0.05);
    border-radius: 20px;
    z-index: 1;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(92, 141, 245, 0.1);
}

@keyframes underlineWave {
    0%, 100% { 
        background-position: 0% 0%;
        opacity: 0.5;
    }
    50% { 
        background-position: 100% 0%;
        opacity: 1;
    }
}

.text-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(92, 141, 245, 0.3) 0%, 
        transparent 70%);
    filter: blur(15px);
    z-index: -1;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.8; 
    }
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: rotate(180deg); 
    }
}

@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes glowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes shineMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

#place_verification_new.space-depth .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: starTwinkle var(--duration) infinite var(--delay);
}

#place_verification_new.space-depth .star:nth-child(1) {
    --duration: 2s;
    --delay: 0s;
    top: 20%; left: 15%; width: 2px; height: 2px;
}
#place_verification_new.space-depth .star:nth-child(2) {
    --duration: 3s;
    --delay: 0.5s;
    top: 40%; left: 80%; width: 3px; height: 3px;
}
#place_verification_new.space-depth .star:nth-child(3) {
    --duration: 4s;
    --delay: 1s;
    top: 70%; left: 30%; width: 1px; height: 1px;
}
#place_verification_new.space-depth .star:nth-child(4) {
    --duration: 2.5s;
    --delay: 1.5s;
    top: 15%; left: 60%; width: 2px; height: 2px;
}
#place_verification_new.space-depth .star:nth-child(5) {
    --duration: 3.5s;
    --delay: 0.8s;
    top: 85%; left: 70%; width: 1.5px; height: 1.5px;
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5); 
    }
}