/* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ НОВЫХ СТРАНИЦ ========== */

/* Exchange Process & Order Status */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    background-color: var(--bg-primary);
    transition: var(--transition);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.step.active .step-number {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.step-label {
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

.step-line {
    width: 80px;
    height: 2px;
    background-color: var(--border-color);
    align-self: flex-start;
    margin-top: 23px;
}

.exchange-details-card,
.payment-card,
.timer-card,
.status-banner,
.order-info-card,
.timeline-card,
.addresses-card,
.support-card,
.account-info-card {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.exchange-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.summary-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.summary-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.summary-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.summary-value img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.summary-network {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 4px 10px;
    background-color: var(--bg-secondary);
    border-radius: 6px;
    display: inline-block;
}

.summary-arrow {
    font-size: 28px;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    align-self: center;
    line-height: 1;
}

.currency-icon-inline {
    font-size: 20px;
}

.exchange-info {
    display: flex;
    flex-direction: column;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.info-row:hover {
    background-color: #f0f0f0;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    max-width: 60%;
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* Exchange Form Details */
.exchange-form-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-detail label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input-detail {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input-detail:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-input-detail::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.input-hint {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Memo checkbox wrapper */
.memo-checkbox-wrapper {
    margin-top: 12px;
    margin-bottom: 8px;
}

.memo-warning {
    color: #ff9800;
    font-weight: 500;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--text-primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    opacity: 0.8;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* Уведомление о регламенте курса */
.rate-notice {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border: 1px solid #ffc107;
    border-radius: 10px;
    align-items: flex-start;
}

.rate-notice-icon {
    flex-shrink: 0;
    color: #f59e0b;
    margin-top: 2px;
}

.rate-notice-text {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.rate-notice-text strong {
    color: #664d03;
}

.rate-notice-text a {
    color: #664d03;
    text-decoration: underline;
    font-weight: 500;
}

.rate-notice-text a:hover {
    color: #453008;
}

.payment-step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.payment-step:hover {
    border-color: #ccc;
}

/* Выделение финального шага с реквизитами */
.payment-step.payment-step-action {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 2px solid #2196f3;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
}

.payment-step.payment-step-action:hover {
    border-color: #1976d2;
    box-shadow: 0 6px 24px rgba(33, 150, 243, 0.2);
}

.payment-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Номер финального шага */
.payment-step.payment-step-action .payment-step-number {
    background-color: #2196f3;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.4);
}

.payment-step-content {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.payment-step-content h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

/* Контейнер с адресом и QR-кодом */
.payment-address-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin: 24px 0;
    padding: 24px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.address-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code-wrapper {
    width: 180px;
    height: 180px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#qrCodeCanvas {
    width: 100%;
    height: 100%;
}

.qr-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.wallet-address-box {
    display: flex;
    gap: 10px;
    margin: 0;
}

.wallet-address-input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: monospace;
    font-size: 13px;
    background-color: #ffffff;
    transition: var(--transition);
}

.wallet-address-input:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.copy-button {
    padding: 14px 18px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
}

.copy-button:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.copy-button:active {
    transform: translateY(0);
}

.payment-note {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px 16px;
    background-color: #fff3e0;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
    margin-top: 12px;
}

/* Payment Field Wrapper */
.payment-field-wrapper {
    margin-bottom: 24px;
}

.payment-field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Currency Warnings */
.currency-warnings {
    margin: 20px 0;
}

.info-blocks {
    margin: 20px 0;
}

.currency-warning-box {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 10px;
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.currency-warning-box:hover {
    background-color: #bbdefb;
    transform: translateX(4px);
}

/* Тип предупреждения: важное (оранжевое) */
.currency-warning-box.warning-important {
    background-color: #fff3e0;
    border-left-color: #ff9800;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
}

.currency-warning-box.warning-important:hover {
    background-color: #ffe0b2;
}

/* Тип предупреждения: критическое (красное) */
.currency-warning-box.warning-critical {
    background-color: #ffebee;
    border-left-color: #f44336;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.15);
}

.currency-warning-box.warning-critical:hover {
    background-color: #ffcdd2;
}

/* Тип предупреждения: успех/информация (зеленое) */
.currency-warning-box.warning-success {
    background-color: #e8f5e9;
    border-left-color: #4caf50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.currency-warning-box.warning-success:hover {
    background-color: #c8e6c9;
}

.warning-icon {
    font-size: 26px;
    flex-shrink: 0;
    line-height: 1;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.warning-text {
    font-size: 14px;
    color: #424242;
    line-height: 1.7;
}

.wallet-address-display {
    font-family: monospace;
    background-color: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.timer-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #ff9800 !important;
}

.timer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timer-icon {
    font-size: 56px;
}

.timer-label {
    font-size: 13px;
    color: #e65100;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-value {
    font-size: 36px;
    font-weight: 700;
    color: #e65100;
    font-family: 'Courier New', monospace;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    display: inline-block;
}

.primary-button {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-button svg {
    transition: transform 0.3s ease;
}

.primary-button:hover svg {
    transform: translateX(2px);
}

.secondary-button {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-secondary);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Order Status */
.status-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.status-banner.waiting {
    background-color: rgba(255, 152, 0, 0.1);
    border-color: #ff9800;
}

.status-banner.processing {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.status-banner.completed {
    background-color: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
}

.status-banner.rejected {
    background-color: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
}

.status-banner.error {
    background-color: rgba(255, 87, 34, 0.1);
    border-color: #ff5722;
}

.status-banner.new {
    background-color: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
}

.status-banner.paid {
    background-color: rgba(0, 188, 212, 0.1);
    border-color: #00bcd4;
}

.status-banner.expired {
    background-color: rgba(158, 158, 158, 0.1);
    border-color: #9e9e9e;
}

/* Rejection/Error Reason Container */
.rejection-reason-container {
    max-width: 800px;
    margin: 0 auto 30px;
}

.rejection-reason-card {
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(244, 67, 54, 0.08);
    border: 2px solid #f44336;
}

.rejection-reason-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rejection-reason-icon {
    font-size: 24px;
}

.rejection-reason-title {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
}

.rejection-reason-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.status-icon {
    font-size: 64px;
}

.status-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.order-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
}

.detail-network {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 3px 8px;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
}

.timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    background-color: var(--bg-primary);
}

.timeline-item.completed .timeline-dot {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
}

.timeline-item.active .timeline-dot {
    border-color: #ffc107;
    background-color: #ffc107;
}

.timeline-item.pending .timeline-dot {
    background-color: var(--bg-primary);
}

.timeline-item.error .timeline-dot {
    border-color: #f44336;
    background-color: #f44336;
}

.timeline-item.success .timeline-dot {
    border-color: #4caf50;
    background-color: #4caf50;
}

.timeline-item.success .timeline-title {
    color: #4caf50;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-time {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.confirmations {
    margin-top: 12px;
    font-size: 14px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.address-item {
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 16px;
}

.address-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.address-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: monospace;
    font-size: 14px;
    word-break: break-all;
    overflow-wrap: anywhere;
    margin-bottom: 8px;
    min-width: 0;
}

.copy-btn-small {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.blockchain-link {
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
}

.support-card {
    text-align: center;
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 48px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.dashboard-card {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.card-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.order-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-id {
    font-size: 13px;
    color: var(--text-secondary);
}

.order-pair {
    font-size: 14px;
    font-weight: 600;
}

.order-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.order-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.action-button:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 32px;
}

.action-text {
    font-size: 14px;
    font-weight: 600;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.account-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.account-actions {
    display: flex;
    gap: 12px;
}

/* ========== VERIFICATION PAGE ========== */

.info-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid;
    margin-bottom: 30px;
}

.info-banner.verification-info {
    background-color: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
}

.info-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.verification-card {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 24px;
}

.verification-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--text-primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content-large h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content-large p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-note {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 12px;
}

.step-warning {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 12px;
}

.verification-requirements {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.verification-requirements li {
    padding: 8px 0;
    font-size: 15px;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.example-item {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid;
}

.example-item.correct {
    background: rgba(76, 175, 80, 0.05);
    border-color: #4caf50;
}

.example-item.incorrect {
    background: rgba(244, 67, 54, 0.05);
    border-color: #f44336;
}

.example-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.example-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.example-description p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.upload-form {
    margin-top: 24px;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.upload-area.drag-over {
    border-color: #2196f3;
    background: rgba(33, 150, 243, 0.05);
}

.upload-icon {
    font-size: 64px;
}

.upload-area h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.upload-area p {
    color: var(--text-secondary);
    font-size: 14px;
}

.upload-button, .camera-button {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.upload-button {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.camera-button {
    background: #2196f3;
    color: white;
}

.upload-button:hover, .camera-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.upload-preview {
    margin: 24px 0;
    text-align: center;
}

.upload-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.remove-photo {
    margin-top: 16px;
    padding: 10px 20px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.remove-photo:hover {
    background: #d32f2f;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.faq-item-simple {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.faq-item-simple h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item-simple p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Card Type Switcher */
.card-type-switcher {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-type-btn {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-type-btn:hover {
    border-color: var(--text-primary);
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-type-btn.active {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
}

.card-type-btn.active:hover {
    background: var(--text-primary);
    transform: translateY(-3px);
}

.card-type-btn svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.card-type-btn:hover svg {
    transform: scale(1.1);
}

.card-type-btn.active svg {
    stroke: var(--bg-primary);
    fill: var(--bg-primary);
}

.card-type-btn span {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container {
        padding: 20px 10px;
    }

    .step-line {
        width: 40px;
    }

    .exchange-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-arrow {
        transform: rotate(90deg);
    }

    .timer-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .timer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .timer-icon {
        font-size: 48px;
    }

    .timer-value {
        font-size: 32px;
    }

    .action-buttons,
    .support-buttons,
    .account-actions {
        width: 100%;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    /* Адаптивность для контейнера с QR-кодом */
    .payment-address-container {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
        align-items: center;
    }

    .qr-section {
        order: -1; /* QR-код сверху на мобильных */
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .address-section {
        width: 100%;
    }

    .qr-code-wrapper {
        width: 140px;
        height: 140px;
        padding: 10px;
        margin: 0 auto;
    }

    .wallet-address-box {
        flex-direction: column;
        gap: 10px;
    }

    .wallet-address-input {
        font-size: 11px;
        padding: 12px 10px;
        width: 100%;
        text-align: center;
        word-break: break-all;
    }

    .copy-button {
        width: 100%;
        padding: 12px;
        justify-content: center;
    }

    .qr-label {
        font-size: 12px;
        margin-top: 8px;
    }

    /* Мобильная адаптация для предупреждений */
    .currency-warning-box {
        flex-direction: row;
        gap: 14px;
        padding: 16px 18px;
    }

    .currency-warning-box:hover {
        transform: none;
    }

    .warning-icon {
        font-size: 24px;
    }

    .warning-title {
        font-size: 14px;
    }

    .warning-text {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Мобильная адаптация для шагов */
    .payment-step {
        padding: 18px;
        margin-bottom: 20px;
    }

    .payment-step.payment-step-action {
        padding: 20px;
    }

    .payment-step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .payment-step-content h3 {
        font-size: 16px;
    }

    /* Мобильные кнопки */
    .action-buttons {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        justify-content: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .exchange-details-card,
    .payment-card,
    .timer-card,
    .status-banner,
    .order-info-card,
    .timeline-card,
    .addresses-card,
    .support-card,
    .account-info-card {
        padding: 20px;
    }

    /* Предотвращаем выход текста за границы на мобильных */
    .info-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .info-value {
        max-width: 100%;
        text-align: left;
        font-size: 13px;
    }

    .wallet-address-input {
        font-size: 11px;
    }

    .summary-value {
        font-size: 18px;
    }

    .summary-network {
        font-size: 11px;
    }

    .warning-text {
        font-size: 12px;
    }

    .detail-value {
        font-size: 14px;
        word-break: break-all;
    }

    .address-value span {
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    /* Verification page mobile */
    .verification-step {
        flex-direction: column;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .verification-card {
        padding: 20px;
    }

    .upload-area {
        padding: 32px 16px;
    }

    .upload-icon {
        font-size: 48px;
    }

    .camera-button, .upload-button {
        width: 100%;
        justify-content: center;
    }

    .card-type-switcher {
        flex-direction: column;
    }

    .card-type-btn {
        min-width: 100%;
        max-width: 100%;
    }

    .modal-content {
        width: 90%;
        max-width: 400px;
        padding: 24px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-message {
        font-size: 14px;
    }
}

/* ========== МОДАЛЬНОЕ ОКНО ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 90%;
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-body {
    padding: 24px 28px;
}

.modal-message {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.modal-footer {
    padding: 16px 28px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-button {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.modal-button-primary {
    background: #2196f3;
    color: white;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.modal-button-primary:hover {
    background: #1976d2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.modal-button-primary:active {
    transform: translateY(0);
}

.modal-button-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid var(--border-color);
}

.modal-button-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-button-secondary:active {
    transform: translateY(0);
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.partners-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    min-width: 150px;
    min-height: 80px;
}

.partner-card:hover {
    border-color: var(--text-secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-logo {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .partners-grid {
        gap: 16px;
    }

    .partner-card {
        padding: 12px 16px;
        min-width: 120px;
        min-height: 60px;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 45px;
    }
}

/* ========== TEAM SECTION ========== */
.team-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-bottom: 20px;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--text-secondary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.team-role {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .team-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .team-grid {
        gap: 30px;
        margin-top: 30px;
    }

    .team-card {
        max-width: 180px;
    }

    .team-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 16px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 13px;
    }
}
