body {
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.verification-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
}
.verification-box {
    background: rgba(25, 25, 30, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 221, 87, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.verification-title {
    color: #dbdbdb;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.verification-subtitle {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

.verification-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: #dbdbdb;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.verification-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 221, 87, 0.5);
}

.verification-btn.warning {
    background: linear-gradient(135deg, rgba(255, 221, 87, 0.9), rgba(255, 200, 50, 0.9));
    border-color: #ffdd57;
    color: #1a1a1a;
    font-weight: 600;
}

.verification-btn.warning:hover {
    background: linear-gradient(135deg, #ffdd57, #ffd324);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 221, 87, 0.3);
}

/* Шапка без даты */
.section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 221, 87, 0.3);
}

.section-title {
    color: #ffdd57;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.step-container {
    margin-top: 20px;
}

.step-item {
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 221, 87, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 221, 87, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffdd57;
    font-size: 16px;
}

.step-content h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.step-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.step-item img {
    max-width: 100%;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.verification-btn-container {
    margin-top: 25px;
}

.modal__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal__overlay.active {
    display: flex;
}

.modal__overlay.closing {
    animation: fadeOut 0.3s ease-in forwards;
}

@keyframes fadeOut {
    from { opacity: 1; backdrop-filter: blur(5px); }
    to { opacity: 0; backdrop-filter: blur(0px); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.block__modal {
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 221, 87, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.header__modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 28px;
    color: #dbdbdb;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 221, 87, 0.2);
}

.header__modal span {
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px 10px;
    font-size: 28px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.header__modal span:hover {
    color: #ffdd57;
    background: rgba(255, 221, 87, 0.1);
}

.body__modal {
    padding: 32px 28px;
    background: transparent;
    overflow: hidden;
}
.spinner-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 30px;
    position: relative;
    width: 100px;
    height: 100px;
}

.spinner-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #ffdd57;
    border-right-color: rgba(255, 221, 87, 0.3);
    animation: spin-ring 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 55px;
    height: 55px;
    border-top-color: #ffaa33;
    border-left-color: rgba(255, 170, 51, 0.2);
    border-right-color: transparent;
    animation: spin-ring-reverse 1.2s linear infinite;
    opacity: 0.7;
}

.spinner-dot {
    width: 10px;
    height: 10px;
    background: #ffdd57;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(255, 221, 87, 0.8);
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-ring-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.loading-text {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 221, 87, 0.8);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

.block__modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.status__modal__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffdd57;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.status__items__container {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    align-items: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.status__check__row {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    width: 100%;
}

.status__check__row:hover {
    background: rgba(255, 221, 87, 0.05);
    border-color: rgba(255, 221, 87, 0.3);
}

.status__check__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

.status__check__label {
    margin: 0;
    font-size: 14px;
    color: #dbdbdb;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.status__check__badge {
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    background: rgba(0, 0, 0, 0.3);
}

.status__check__badge.status__green {
    color: #6fcf97;
    border: 1px solid rgba(35, 209, 96, 0.4);
}

.status__check__badge.status__yellow {
    color: #ffdd57;
    border: 1px solid rgba(255, 221, 87, 0.4);
}

.status__more__link {
    color: #ffaa33;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
    background: rgba(255, 170, 51, 0.1);
    margin-left: 8px;
}

.status__more__link:hover {
    color: #ffdd57;
    background: rgba(255, 221, 87, 0.2);
}

.status__bottom__text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    padding: 12px 20px;
    white-space: normal;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status__bottom__text b {
    color: #ffdd57;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .verification-container {
        margin: 30px auto;
        padding: 10px;
    }

    .verification-box {
        padding: 20px;
        background: rgba(25, 25, 30, 0.85);
    }

    .block__modal {
        max-width: 95%;
        margin: 20px auto;
    }

    .body__modal {
        padding: 20px;
    }

    .status__items__container {
        gap: 8px;
        padding: 0 10px;
    }

    .step-item {
        padding-left: 40px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }
}