			/* Стили для KYC спойлеров */
.kyc-spoilers {
    max-width: 100%;
    margin: 30px 0;
}

.kyc-spoiler {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.kyc-spoiler-title {
    background: #1ed15c;
    color: black;
    padding: 18px 20px;
    margin: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s ease;
    position: relative;
}

.kyc-spoiler-title:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.kyc-spoiler-title.active:after {
    content: '-';
}

.kyc-spoiler-title:hover {
    background: #0141;
}

.kyc-spoiler-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: gray;
}

.kyc-spoiler-content.show {
    padding: 25px;
    max-height: 2000px;
}

.kyc-spoiler-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.kyc-spoiler-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.kyc-spoiler-content li {
    margin-bottom: 8px;
    line-height: 1.
}

/* Стили для баннера проверки кошелька */
.wallet-security-banner {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6d 100%);
    padding: 40px 30px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
    border: 1px solid rgba(255,255,255,0.1);
}

.security-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.security-text {
    color: white;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.security-check-btn {
    display: inline-block;
    background: white;
    color: #2c5aa0;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.security-check-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.security-check-btn:active {
    transform: translateY(0);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .wallet-security-banner {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .security-text {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .security-check-btn {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .wallet-security-banner {
        padding: 25px 15px;
    }
    
    .security-text {
        font-size: 16px;
    }
}
.compact-wallet-check {
    background: linear-gradient(135deg, #1ed15c 0%, #1ed15c 100%);
    border-radius: 10px;
    margin: 25px 0;
    padding: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.compact-content {
    text-align: center;
}

.compact-text {
    color: Black;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.button-wrapper {
    text-align: center;
}

.compact-button {
    display: inline-block;
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.compact-button:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Контейнер для кнопок (если нужно выстроить их в ряд) */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 20px 0;
    justify-content: center;
}

/* Базовая кнопка */
.button-link {
    display: inline-block;
    padding: 12px 50px;
    border-radius: 40px;
    background-color: #23c55e;      /* Основной цвет */
    color: #ffffff;
    text-decoration: none;
    font-family: inherit;            /* Использовать шрифт темы */
    font-weight: 600;
    font-size: 1.rem;
    line-height: 1;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
}

/* Эффект при наведении */
.button-link:hover {
    background-color: #1aa44a;       /* Темнее на 10-15% */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    text-decoration: none;
}

/* Эффект при нажатии */
.button-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Кнопка с обводкой (прозрачный фон) */
.button-link-outline {
    background-color: transparent;
    color: #23c55e;
    border: 2px solid #23c55e;
    box-shadow: none;
}

.button-link-outline:hover {
    background-color: #23c55e;
    color: #ffffff;
}

/* Для внешних ссылок добавляем символ ↗ (опционально) */
.button-link[target="_blank"]::after,
.button-link-outline[target="_blank"]::after {
    content: " ↗";
    font-size: 1.1em;
    display: inline-block;
    margin-left: 4px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
    .button-link,
    .button-link-outline {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;                  /* Кнопки на всю ширину */
    }
}	
