/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цветовая гамма сайта Omega Crypto Exchange */
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --gold-color: #e94560;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --bg-dark: #0f0f1e;
    --bg-card: #1a1a2e;
    --border-color: #2a2a3e;
    --success-color: #4caf50;
    --error-color: #f44336;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* Премиальный анимированный фон с переливами */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(167, 139, 250, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 30% 90%, rgba(233, 69, 96, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(196, 181, 253, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a14 0%, #0f0f1e 25%, #0d0d18 50%, #0f0f1e 75%, #0a0a14 100%);
    background-size: 150% 150%, 140% 140%, 130% 130%, 160% 160%, 145% 145%, 135% 135%, 125% 125%, 100% 100%;
    z-index: -3;
    animation: colorFlow 30s ease-in-out infinite, backgroundShift 25s ease-in-out infinite, pulseGlow 10s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(4px 4px at 15% 25%, rgba(102, 126, 234, 0.3), transparent),
        radial-gradient(3px 3px at 45% 60%, rgba(167, 139, 250, 0.25), transparent),
        radial-gradient(3px 3px at 75% 35%, rgba(118, 75, 162, 0.25), transparent),
        radial-gradient(2px 2px at 25% 80%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 60% 15%, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(2px 2px at 85% 75%, rgba(102, 126, 234, 0.2), transparent),
        radial-gradient(1px 1px at 35% 45%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90% 50%, rgba(167, 139, 250, 0.18), transparent),
        radial-gradient(2px 2px at 5% 40%, rgba(139, 92, 246, 0.18), transparent),
        radial-gradient(1px 1px at 95% 60%, rgba(196, 181, 253, 0.15), transparent);
    background-size: 300% 300%, 250% 250%, 220% 220%, 200% 200%, 280% 280%, 240% 240%, 180% 180%, 260% 260%, 270% 270%, 230% 230%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 0%, 0% 50%, 100% 50%, 25% 75%, 75% 25%;
    z-index: -1;
    animation: starfield 50s linear infinite, twinkle 4s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes colorFlow {
    0% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
    25% {
        filter: hue-rotate(30deg) brightness(1.05) saturate(1.15);
    }
    50% {
        filter: hue-rotate(60deg) brightness(1.1) saturate(1.3);
    }
    75% {
        filter: hue-rotate(30deg) brightness(1.05) saturate(1.15);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 50% 50%, 0% 0%, 25% 75%, 75% 25%;
        opacity: 1;
    }
    25% {
        background-position: 20% 20%, 80% 80%, 60% 40%, 20% 80%, 40% 60%, 10% 10%, 35% 65%, 65% 35%;
        opacity: 0.95;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 0% 100%, 100% 0%, 0% 50%, 100% 100%, 50% 0%, 0% 50%;
        opacity: 1;
    }
    75% {
        background-position: 80% 80%, 20% 20%, 40% 60%, 80% 20%, 60% 40%, 90% 90%, 70% 30%, 30% 70%;
        opacity: 0.95;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: brightness(1) saturate(1) contrast(1);
    }
    50% {
        filter: brightness(1.15) saturate(1.25) contrast(1.1);
    }
}

@keyframes starfield {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 0%, 0% 50%, 100% 50%, 25% 75%, 75% 25%;
    }
    100% {
        background-position: 300% 300%, -100% -100%, 220% 220%, 200% 0%, -120% 280%, 240% 180%, 180% 260%, -110% 190%, 270% 230%, -130% 270%;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Премиальные декоративные элементы */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.35) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.35) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

.orb-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-delay: -15s;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: gridMove 30s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.25;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.3;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.85);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.4));
    transition: all 0.3s ease;
    background: rgba(26, 26, 46, 0.3);
    padding: 4px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.logo-img:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.6));
    border-color: rgba(102, 126, 234, 0.4);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.back-btn:hover {
    background: var(--border-color);
}

.profile-btn {
    background: var(--accent-color);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    position: relative;
}

.profile-btn svg {
    width: 24px;
    height: 24px;
}

.profile-btn-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

/* Exchange Section */
.exchange-section {
    padding: 24px 20px;
}

.exchange-buttons {
    display: flex;
    gap: 12px;
    background: rgba(26, 26, 46, 0.8);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.exchange-btn {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.exchange-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Exchange Toggle (for exchange page) */
.exchange-toggle-section {
    padding: 24px 20px 0;
}

.exchange-toggle {
    display: flex;
    gap: 12px;
    background: rgba(26, 26, 46, 0.8);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.toggle-btn {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Rates Section */
.rates-section {
    padding: 24px 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Rates Table */
.rates-table-container {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.rates-table-header {
    display: flex;
    background: rgba(15, 15, 30, 0.6);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
}

.rates-header-cell {
    flex: 1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    text-align: center;
}

.rates-header-cell.currency-header {
    text-align: left;
    flex: 1.2;
}

.rates-header-cell.buy-header {
    color: #4caf50;
}

.rates-header-cell.sell-header {
    color: #e94560;
}

.rates-table-body {
    display: flex;
    flex-direction: column;
}

.rates-table-row {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid rgba(42, 42, 62, 0.5);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.rates-table-row:last-child {
    border-bottom: none;
}

.rates-table-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s;
}

.rates-table-row:hover::before {
    left: 100%;
}

.rates-table-row:hover {
    background: rgba(26, 26, 46, 0.6);
}

.rates-table-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rates-table-cell.currency-cell {
    flex: 1.2;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.currency-code {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.rates-table-cell.buy-cell .rate-value {
    color: #4caf50;
}

.rates-table-cell.sell-cell .rate-value {
    color: #e94560;
}

.rate-value {
    font-size: 16px;
    font-weight: 700;
    margin-right: 4px;
}

.rate-label {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.rate-loader {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    padding: 20px;
    width: 100%;
}

/* Partner Section */
.partner-section {
    padding: 24px 20px;
}

.partner-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

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

.partner-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Verification Section */
.verification-section {
    padding: 0 20px 24px;
}

.verification-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.verification-btn {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.verification-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.verification-btn:hover::before {
    left: 100%;
}

.verification-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
}

.verification-btn .btn-icon {
    font-size: 24px;
    line-height: 1;
}

.verification-btn .btn-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.partner-btn {
    background: var(--gradient-gold);
    border: none;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 87, 108, 0.3);
}

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

/* Footer */
.footer {
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(42, 42, 62, 0.5);
    margin-top: 32px;
    background: rgba(15, 15, 30, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.4), 
        rgba(118, 75, 162, 0.4),
        rgba(102, 126, 234, 0.4),
        transparent
    );
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--text-primary);
}

/* Exchange Form */
.exchange-form {
    padding: 24px 20px;
    max-width: 100%;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.form-group:focus-within label {
    color: rgba(102, 126, 234, 0.9);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.8),
        rgba(118, 75, 162, 0.8),
        rgba(102, 126, 234, 0.8)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-wrapper:focus-within {
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 8px 24px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.input-wrapper:focus-within::before {
    transform: scaleX(1);
}

.input-wrapper:hover:not(:focus-within) {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s;
}

/* Скрытие стрелочек для input[type="number"] */
.form-input[type="number"] {
    -moz-appearance: textfield;
}

.form-input[type="number"]::-webkit-outer-spin-button,
.form-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-input:focus {
    background: rgba(102, 126, 234, 0.05);
}

.form-input::placeholder {
    color: rgba(184, 184, 184, 0.5);
    font-weight: 400;
}

/* Стили для текстовых полей вне input-wrapper (ФИО, адрес кошелька) */
.form-group input[type="text"].form-input {
    width: 100%;
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.form-group input[type="text"].form-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.8),
        rgba(118, 75, 162, 0.8),
        rgba(102, 126, 234, 0.8)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input[type="text"].form-input:focus {
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 8px 24px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 46, 0.95);
    transform: translateY(-1px);
}

.form-group input[type="text"].form-input:hover:not(:focus) {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.currency-label {
    background: rgba(102, 126, 234, 0.4);
    border: none;
    border-left: 1px solid rgba(102, 126, 234, 0.5);
    color: #ffffff;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    min-width: 110px;
    width: 110px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    padding-left: 20px;
    padding-right: 0;
}

.input-wrapper:hover:not(:focus-within) .currency-label {
    background: rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

.input-wrapper:focus-within .currency-label {
    background: rgba(102, 126, 234, 0.6);
    color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(102, 126, 234, 0.7);
}

.input-wrapper:active .currency-label {
    background: rgba(102, 126, 234, 0.7);
    color: #ffffff;
}

.currency-select {
    background: rgba(102, 126, 234, 0.4);
    border: none;
    border-left: 1px solid rgba(102, 126, 234, 0.5);
    color: #ffffff;
    padding: 18px 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    min-width: 110px;
    width: 110px;
    transition: all 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.currency-select option {
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
    padding: 12px;
    font-weight: 600;
}

.currency-select:hover {
    background: rgba(102, 126, 234, 0.5);
    color: #ffffff;
}

.currency-select:focus {
    background: rgba(102, 126, 234, 0.6);
    color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(102, 126, 234, 0.7);
}

.currency-select:active {
    background: rgba(102, 126, 234, 0.7);
    color: #ffffff;
}

.checkbox-group {
    margin-bottom: 24px;
}

/* Verification Page Styles */
.verification-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.verification-status {
    margin-bottom: 24px;
}

.status-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.status-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.status-card.status-approved {
    border-color: rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.status-card.status-pending {
    border-color: rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.status-card.status-rejected {
    border-color: rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.btn-contact-support {
    margin-top: 16px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.btn-contact-support:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(245, 87, 108, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-contact-support:active {
    transform: translateY(0);
}

/* Blocked Screen Styles */
.blocked-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 20px;
}

.blocked-content {
    text-align: center;
    max-width: 400px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.2);
    backdrop-filter: blur(20px);
}

.blocked-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.blocked-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 1) 0%, rgba(245, 87, 108, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blocked-message {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.blocked-screen .btn-contact-support {
    margin-top: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* AML Check Page Styles */
.aml-check-content {
    padding: 24px 20px;
    max-width: 100%;
}

.aml-check-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.aml-check-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.aml-check-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aml-form-group {
    margin-bottom: 0;
}

.aml-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.required-star {
    color: #e94560;
}

.aml-wallet-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 13px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', 'Courier New', monospace;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    overflow-x: visible;
    overflow-y: hidden;
    white-space: nowrap;
    min-width: 0;
    word-break: keep-all;
    direction: ltr;
    text-align: left;
    outline: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.aml-wallet-input:focus {
    border-bottom-color: rgba(102, 126, 234, 0.6);
    background: rgba(15, 15, 30, 0.3);
}

.aml-wallet-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.aml-checks-remaining {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.aml-info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.aml-wallet-input::-webkit-scrollbar {
    height: 4px;
}

.aml-wallet-input::-webkit-scrollbar-track {
    background: rgba(15, 15, 30, 0.3);
    border-radius: 2px;
}

.aml-wallet-input::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 2px;
}

.aml-wallet-input::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

.aml-wallet-input:focus {
    outline: none;
    border-bottom-color: rgba(102, 126, 234, 0.6);
    background: rgba(15, 15, 30, 0.2);
}

.aml-wallet-input.valid {
    border-bottom-color: rgba(76, 175, 80, 0.6);
}

.aml-wallet-input.invalid {
    border-bottom-color: rgba(233, 69, 96, 0.6);
}

.wallet-length-indicator {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
    transition: color 0.3s ease;
}

.wallet-length-indicator.valid {
    color: #4caf50;
}

.wallet-length-indicator.invalid {
    color: #e94560;
}

/* Verification Review Tabs */
.verification-tabs {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(26, 26, 46, 0.5);
}

.verification-tab {
    flex: 1;
    padding: 12px 20px;
    background: rgba(15, 15, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.verification-tab:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(102, 126, 234, 0.4);
}

.verification-tab.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    border-color: rgba(102, 126, 234, 0.6);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.tab-content {
    padding: 20px;
}

/* AML Checks List */
.aml-checks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aml-check-card-item {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.aml-check-wallet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

.aml-check-wallet-address {
    flex: 1;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-all;
    letter-spacing: 0.3px;
}

.btn-copy-aml-wallet {
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-copy-aml-wallet:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-1px);
}

.aml-check-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.btn-reject-aml,
.btn-approve-aml {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    text-align: center;
}

.btn-reject-aml {
    background: rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.4);
    color: var(--text-primary);
}

.btn-reject-aml:hover {
    background: rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.6);
    transform: translateY(-1px);
}

.btn-approve-aml {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.4);
    color: var(--text-primary);
}

.btn-approve-aml:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.6);
    transform: translateY(-1px);
}

.no-aml-checks {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Admin Wallets List */
.admin-wallets-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.admin-wallet-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.admin-wallet-card:hover {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.admin-wallet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-wallet-address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wallet-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.wallet-value {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-all;
    letter-spacing: 0.3px;
}

.admin-wallet-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}

.wallet-user-id,
.wallet-date {
    opacity: 0.8;
}

.btn-copy-wallet {
    padding: 10px 14px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.btn-copy-wallet:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-1px);
}

/* Wallet Search */
.wallet-search-container {
    margin-bottom: 16px;
}

.wallet-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.wallet-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.wallet-search-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.6);
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.wallet-search-input::placeholder {
    color: var(--text-secondary);
}

/* Wallet Filters */
.wallet-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.wallet-filter-btn {
    padding: 10px 16px;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.wallet-filter-btn:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(102, 126, 234, 0.4);
    color: var(--text-primary);
}

.wallet-filter-btn.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    border-color: rgba(102, 126, 234, 0.6);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Wallet Status */
.wallet-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.wallet-status-approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.wallet-status-rejected {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.wallet-status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.aml-wallet-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.btn-submit-aml {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 8px;
}

.btn-submit-aml:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(118, 75, 162, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-submit-aml:active {
    transform: translateY(0);
}

.btn-submit-aml:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

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

.form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-col label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group-small {
    margin-bottom: 8px;
}

.form-group-small label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

/* Profile Verification Status */
.profile-verification-status {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    padding: 0;
}

.profile-verification-status.status-approved {
    color: #4caf50;
}

.profile-verification-status.status-pending {
    color: #ffc107;
}

.profile-verification-status.status-not-verified {
    color: #e94560;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s;
}

.checkbox-label:hover {
    background: rgba(102, 126, 234, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

.checkbox-label input[type="checkbox"] + .checkbox-text {
    position: relative;
}

.checkbox-label input[type="checkbox"] + .checkbox-text::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 6px;
    background: rgba(26, 26, 46, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 12px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    box-sizing: border-box;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-text::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border-color: rgba(102, 126, 234, 1);
    box-shadow: 
        0 0 0 3px rgba(102, 126, 234, 0.2),
        0 4px 12px rgba(102, 126, 234, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-text::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-text::before {
    box-shadow: 
        0 0 0 3px rgba(102, 126, 234, 0.3),
        0 4px 12px rgba(102, 126, 234, 0.2);
}

.checkbox-label:hover input[type="checkbox"] + .checkbox-text::before {
    border-color: rgba(102, 126, 234, 0.8);
    background: rgba(26, 26, 46, 0.9);
}

.checkbox-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    position: relative;
    cursor: pointer;
    padding-left: 0;
}


.terms-link {
    color: rgba(102, 126, 234, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
    position: relative;
}

.terms-link:hover {
    color: rgba(102, 126, 234, 1);
    border-bottom-color: rgba(102, 126, 234, 0.6);
    text-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
}

.terms-link:active {
    color: rgba(118, 75, 162, 1);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.5);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Message */
.message {
    padding: 16px 20px;
    margin: 16px 20px;
    border-radius: 12px;
    display: none;
    font-size: 14px;
    font-weight: 600;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success-color);
    border: 1px solid var(--success-color);
    display: block;
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    color: var(--error-color);
    border: 1px solid var(--error-color);
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    .rates-header-cell,
    .rates-table-cell {
        font-size: 12px;
    }
    
    .currency-code {
        font-size: 14px;
    }
    
    .currency-name {
        font-size: 10px;
    }
    
    .rate-value {
        font-size: 14px;
    }
    
    .rate-label {
        font-size: 10px;
    }
    
    .rates-table-row {
        padding: 12px;
    }
    
    .footer {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.rates-table-row {
    animation: fadeIn 0.3s ease-out;
}

/* Дополнительные эффекты для премиального вида */
.exchange-section,
.rates-section,
.partner-section {
    position: relative;
}

.exchange-section::before,
.rates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.3), 
        transparent
    );
    opacity: 0.5;
}

/* Эффект свечения для активных элементов */
.exchange-btn.active,
.toggle-btn.active {
    position: relative;
    overflow: hidden;
}

.exchange-btn.active::after,
.toggle-btn.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.exchange-btn.active:hover::after,
.toggle-btn.active:hover::after {
    width: 300px;
    height: 300px;
}

/* Улучшенные тени для карточек */
.partner-card {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.partner-card:hover {
    box-shadow: 
        0 10px 25px rgba(102, 126, 234, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Privacy Policy Page */
.privacy-content {
    padding: 24px 20px;
    max-width: 100%;
}

.privacy-section {
    margin-bottom: 32px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.privacy-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.privacy-section ul {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-left: 20px;
    margin-top: 8px;
}

.privacy-section li {
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::marker {
    color: rgba(102, 126, 234, 0.8);
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* About Page */
.about-content {
    padding: 24px 20px;
    max-width: 100%;
}

.about-section {
    margin-bottom: 32px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-hero {
    text-align: center;
    padding: 20px 0;
}

.about-hero h2 {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.advantage-card {
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
}

.advantage-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.advantage-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.work-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.work-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.work-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.work-steps li strong {
    display: block;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.work-steps li p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-info {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-link {
    color: rgba(102, 126, 234, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: rgba(102, 126, 234, 1);
    border-bottom-color: rgba(102, 126, 234, 0.6);
}

/* Office Page */
.office-content {
    padding: 24px 20px;
    max-width: 100%;
}

.office-section {
    margin-bottom: 24px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.office-address {
    text-align: center;
    padding: 10px 0;
}

.office-address h2 {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.address-text {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.office-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Яндекс карта */
.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.map-container:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.map-container:active {
    transform: scale(0.99);
}

.yandex-map-iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
}

/* Описание как пройти */
.directions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direction-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.direction-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.direction-text {
    flex: 1;
}

.direction-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.direction-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.work-hours {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.work-hours p {
    margin-bottom: 8px;
}

.work-hours strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Confirmation Modal */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.confirmation-modal.show {
    display: flex;
}

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

.confirmation-modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirmation-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.confirmation-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirmation-body {
    padding: 24px;
}

.confirmation-warning {
    text-align: center;
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.info-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.info-row:hover::before {
    left: 100%;
}

.info-row:hover {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.info-row.highlight-row {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(245, 87, 108, 0.15) 100%);
    border-color: rgba(102, 126, 234, 0.4);
}

.info-row.highlight-row:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(245, 87, 108, 0.25) 100%);
    border-color: rgba(102, 126, 234, 0.6);
}

.info-row.buy-type {
    border-left: 3px solid #4caf50;
}

.info-row.sell-type {
    border-left: 3px solid #e94560;
}

.info-icon {
    font-size: 24px;
    margin-right: 16px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.info-row:hover .info-icon {
    background: rgba(102, 126, 234, 0.3);
    transform: scale(1.1);
}

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

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

.info-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 700;
    word-break: break-word;
    line-height: 1.4;
}

.info-value.highlight-value {
    font-size: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.currency-code {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 600;
    margin-left: 4px;
}

.currency-symbol {
    color: #4caf50;
    font-weight: 800;
    margin-left: 4px;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    word-break: break-all;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.confirmation-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--border-color);
}

.confirmation-question {
    text-align: center;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding: 0;
}

.confirmation-buttons {
    display: flex;
    gap: 12px;
}

.btn-cancel,
.btn-confirm {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-cancel {
    background: rgba(42, 42, 62, 0.8);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn-cancel:hover {
    background: rgba(42, 42, 62, 1);
    color: var(--text-primary);
    border-color: rgba(102, 126, 234, 0.5);
}

.btn-confirm {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

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

.btn-confirm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Profile Page */
.profile-content {
    padding: 24px 20px;
}

.profile-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    margin-bottom: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    overflow: hidden;
    position: relative;
}

.profile-avatar .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-avatar svg {
    width: 64px;
    height: 64px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-username {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.profile-id {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin: 0;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 1.5px solid transparent;
    border-radius: 20px;
    padding: 20px 12px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-total {
    border-color: rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.12) 0%, 
        rgba(118, 75, 162, 0.08) 50%,
        rgba(26, 26, 46, 0.95) 100%);
}

.stat-card-total:hover {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(102, 126, 234, 0.3),
        0 0 60px rgba(118, 75, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-completed {
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.12) 0%, 
        rgba(102, 187, 106, 0.08) 50%,
        rgba(26, 26, 46, 0.95) 100%);
}

.stat-card-completed:hover {
    border-color: rgba(76, 175, 80, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(76, 175, 80, 0.3),
        0 0 60px rgba(102, 187, 106, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-pending {
    border-color: rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.12) 0%, 
        rgba(255, 179, 0, 0.08) 50%,
        rgba(26, 26, 46, 0.95) 100%);
}

.stat-card-pending:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 193, 7, 0.3),
        0 0 60px rgba(255, 179, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon-wrapper::before {
    opacity: 1;
}

.stat-card-total .stat-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.25) 0%, 
        rgba(118, 75, 162, 0.15) 100%);
    border: 1.5px solid rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 4px 20px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card-completed .stat-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.25) 0%, 
        rgba(102, 187, 106, 0.15) 100%);
    border: 1.5px solid rgba(76, 175, 80, 0.4);
    box-shadow: 
        0 4px 20px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card-pending .stat-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.25) 0%, 
        rgba(255, 179, 0, 0.15) 100%);
    border: 1.5px solid rgba(255, 193, 7, 0.4);
    box-shadow: 
        0 4px 20px rgba(255, 193, 7, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
}

.stat-card-total:hover .stat-icon-wrapper {
    box-shadow: 
        0 8px 30px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(118, 75, 162, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-completed:hover .stat-icon-wrapper {
    box-shadow: 
        0 8px 30px rgba(76, 175, 80, 0.4),
        0 0 20px rgba(102, 187, 106, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-pending:hover .stat-icon-wrapper {
    box-shadow: 
        0 8px 30px rgba(255, 193, 7, 0.4),
        0 0 20px rgba(255, 179, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.stat-card-total .stat-icon {
    color: #8b9eff;
    filter: drop-shadow(0 2px 6px rgba(102, 126, 234, 0.5));
}

.stat-card-total:hover .stat-icon {
    color: #a8b5ff;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.7));
}

.stat-card-completed .stat-icon {
    color: #66bb6a;
    filter: drop-shadow(0 2px 6px rgba(76, 175, 80, 0.5));
}

.stat-card-completed:hover .stat-icon {
    color: #81c784;
    filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.7));
}

.stat-card-pending .stat-icon {
    color: #ffd54f;
    filter: drop-shadow(0 2px 6px rgba(255, 193, 7, 0.5));
}

.stat-card-pending:hover .stat-icon {
    color: #ffe082;
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.7));
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 1;
    gap: 8px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    margin: 0;
    padding: 0 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.85;
    transition: all 0.3s ease;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.stat-card:hover .stat-label {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

.stat-value {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card:hover .stat-value {
    transform: scale(1.05);
}

.stat-card-total .stat-value {
    background: linear-gradient(135deg, #8b9eff 0%, #a78bfa 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.stat-card-completed .stat-value {
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 50%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.stat-card-pending .stat-value {
    background: linear-gradient(135deg, #ffd54f 0%, #ffe082 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stat-decoration {
    display: none;
}

.stat-card-total .stat-decoration {
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.9) 0%, 
        rgba(118, 75, 162, 0.9) 50%,
        rgba(102, 126, 234, 0.9) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.stat-card-completed .stat-decoration {
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.9) 0%, 
        rgba(102, 187, 106, 0.9) 50%,
        rgba(76, 175, 80, 0.9) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.stat-card-pending .stat-decoration {
    background: linear-gradient(90deg, 
        rgba(255, 193, 7, 0.9) 0%, 
        rgba(255, 179, 0, 0.9) 50%,
        rgba(255, 193, 7, 0.9) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

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

.stat-card:hover .stat-decoration {
    opacity: 1;
    height: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

/* Адаптивность для блоков статистики */
@media (max-width: 480px) {
    .profile-stats {
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 10px;
        min-height: 170px;
    }
    
    .stat-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .stat-label {
        font-size: 9px;
        letter-spacing: 0.6px;
        padding: 0 2px;
    }
    
    .stat-value {
        font-size: 26px;
        min-height: 32px;
    }
}

.profile-section {
    margin-top: 32px;
}

.profile-section .section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.order-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.order-item.buy-type {
    border-left: 3px solid #4caf50;
}

.order-item.sell-type {
    border-left: 3px solid #e94560;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.order-type {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.order-status {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.order-status.confirmed {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.order-status.pending {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.order-status.new {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.order-status.cancelled {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.order-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.btn-cancel-order {
    padding: 10px 20px;
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid rgba(233, 69, 96, 0.4);
    border-radius: 8px;
    color: #e94560;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cancel-order:hover {
    background: rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-cancel-order:active {
    transform: scale(0.95);
}

/* Profile Full Name Section */
.profile-section:has(.profile-fullname-section) {
    margin-bottom: 40px;
}

.profile-fullname-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.profile-fullname-input {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-fullname-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15), 0 4px 12px rgba(102, 126, 234, 0.2);
}

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

.btn-save-fullname {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
}

.btn-save-fullname:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(118, 75, 162, 1) 100%);
}

.btn-save-fullname:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.profile-fullname-hint {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    margin-bottom: 0;
    text-align: center;
    opacity: 0.8;
    line-height: 1.4;
}

/* Add margin after fullname section */
.profile-section:has(.profile-fullname-section) {
    margin-bottom: 0;
}

/* Responsive adjustments for fullname section */
@media (max-width: 480px) {
    .profile-fullname-input {
        font-size: 14px;
        padding: 11px 14px;
    }
    
    .btn-save-fullname {
        font-size: 13px;
        padding: 11px 18px;
    }
    
    .profile-fullname-hint {
        font-size: 10px;
    }
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.order-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 700;
    text-align: right;
}

.no-orders {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    padding: 40px 20px;
    margin: 0;
}

/* Admin Panel Button in Profile */
.admin-panel-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    border: 2px solid rgba(245, 87, 108, 0.4);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.admin-panel-btn:hover {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.3) 0%, rgba(102, 126, 234, 0.3) 100%);
    border-color: rgba(245, 87, 108, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.admin-icon {
    font-size: 20px;
}

/* Admin Panel Styles */
.admin-content {
    padding: 24px 20px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
}

/* Компактные стили для карточек статистики в админ-панели */
.admin-stats .stat-card {
    padding: 8px 8px !important;
    min-height: auto !important;
    height: auto !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    align-items: center !important;
}

.admin-stats .stat-icon-wrapper {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    border-radius: 8px;
    display: none; /* Скрываем иконки в админ-панели, так как их нет в HTML */
}

.admin-stats .stat-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    display: none;
}

.admin-stats .stat-label {
    font-size: 8px !important;
    margin-bottom: 2px !important;
    letter-spacing: 0.4px;
    padding: 0 2px;
    line-height: 1.2 !important;
}

.admin-stats .stat-value {
    font-size: 18px !important;
    min-height: 20px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.admin-stats .stat-content {
    gap: 2px !important;
    width: 100% !important;
}

.admin-stats .stat-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Убираем цветное свечение при наведении для карточек в админ-панели */
.admin-stats .stat-card-total:hover,
.admin-stats .stat-card-completed:hover,
.admin-stats .stat-card-pending:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    border-color: var(--border-color) !important;
}

.admin-stats .stat-card:hover .stat-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.admin-stats .stat-card-total:hover .stat-icon-wrapper,
.admin-stats .stat-card-completed:hover .stat-icon-wrapper,
.admin-stats .stat-card-pending:hover .stat-icon-wrapper {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.admin-stats .stat-card:hover .stat-value {
    transform: scale(1.03);
}

/* Убираем цветные фильтры для иконок при наведении */
.admin-stats .stat-card-total:hover .stat-icon,
.admin-stats .stat-card-completed:hover .stat-icon,
.admin-stats .stat-card-pending:hover .stat-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

@media (max-width: 480px) {
    .admin-stats {
        gap: 8px;
        margin-bottom: 14px;
    }
    
    .admin-stats .stat-card {
        padding: 8px 6px;
    }
    
    .admin-stats .stat-icon-wrapper {
        width: 24px;
        height: 24px;
        margin-bottom: 3px;
    }
    
    .admin-stats .stat-icon {
        width: 14px;
        height: 14px;
    }
    
    .admin-stats .stat-label {
        font-size: 7px;
        margin-bottom: 2px;
    }
    
    .admin-stats .stat-value {
        font-size: 16px;
        min-height: 18px;
    }
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
    padding: 0 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-tabs::-webkit-scrollbar {
    display: none;
}

.admin-tab {
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.admin-tab:hover {
    color: var(--text-primary);
}

.admin-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--gradient-primary);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Order Search */
.order-search-container {
    margin-bottom: 16px;
}

.order-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.order-search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.order-search-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.6);
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.order-search-input::placeholder {
    color: var(--text-secondary);
}

.order-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Orders Pagination */
.orders-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Profile orders pagination */
.profile-section .orders-pagination {
    margin-top: 20px;
}

.order-filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.6);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.order-filter-btn:hover {
    border-color: rgba(102, 126, 234, 0.5);
    color: var(--text-primary);
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-2px);
}

.order-filter-btn.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(245, 87, 108, 0.3) 100%);
    border-color: rgba(102, 126, 234, 0.6);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.order-filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

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

/* User Search */
.user-search-container {
    margin-bottom: 20px;
}

.user-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: var(--text-secondary);
    z-index: 1;
}

.user-search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.user-search-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.6);
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.user-search-input::placeholder {
    color: var(--text-secondary);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    background: rgba(158, 158, 158, 0.2);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.search-clear-btn:hover {
    background: rgba(158, 158, 158, 0.3);
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Admin User Cards */
.admin-user-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.admin-user-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.admin-user-card.expanded {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

/* Компактная карточка пользователя (summary) */
.admin-user-summary {
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s;
    user-select: none;
}

.admin-user-summary:hover {
    background: rgba(102, 126, 234, 0.1);
}

.admin-user-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.admin-user-main-info {
    flex: 1;
    min-width: 0;
}

.admin-user-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.admin-user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    word-break: break-word;
}

.admin-user-meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}

.admin-user-username {
    color: var(--text-secondary);
    font-weight: 500;
}

.admin-user-separator {
    color: var(--text-secondary);
    font-size: 12px;
}

.admin-user-id {
    color: var(--text-secondary);
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.user-expand-icon {
    font-size: 14px;
    color: var(--text-secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: auto;
}

.admin-user-card.expanded .user-expand-icon {
    transform: rotate(180deg);
}

/* Развернутая информация о пользователе */
.admin-user-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 30, 0.5);
    animation: slideDown 0.3s ease-out;
    max-height: 2000px;
    overflow: hidden;
}

.user-details-content {
    padding: 20px;
}

.user-detail-section {
    margin-bottom: 20px;
}

.user-detail-section:last-child {
    margin-bottom: 0;
}

.user-detail-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-user-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-user-detail-item:last-child {
    border-bottom: none;
}

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

.user-detail-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.user-stats-loading,
.user-stats-error {
    padding: 12px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.user-stats-error {
    color: #e94560;
}

.user-detail-value.buy-amount {
    color: #4caf50;
}

.user-detail-value.sell-amount {
    color: #e94560;
}

.admin-status-badge {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(245, 87, 108, 0.4);
}

.blocked-badge {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(158, 158, 158, 0.4);
    white-space: nowrap;
}

.blocked-status-badge {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

.btn-block {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

.btn-block:hover {
    background: rgba(158, 158, 158, 0.3);
    border-color: rgba(158, 158, 158, 0.6);
    color: #b0b0b0;
}

.btn-unblock {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.btn-unblock:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.6);
    color: #66bb6a;
}

.user-detail-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Users Pagination */
.users-pagination,
.wallets-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pagination-btn {
    padding: 10px 16px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(.disabled):not(:disabled) {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.pagination-btn.disabled,
.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(158, 158, 158, 0.1);
    border-color: rgba(158, 158, 158, 0.2);
}

.pagination-btn.disabled:hover,
.pagination-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagination-arrow {
    min-width: 44px;
    height: 44px;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
}

.pagination-arrow span {
    line-height: 1;
}

.pagination-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.pagination-page {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    padding: 4px 12px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    min-width: 80px;
    text-align: center;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 480px) {
    .users-pagination {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
    }
    
    .pagination-center {
        width: 100%;
        order: 3;
    }
    
    .pagination-arrow {
        min-width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .pagination-page {
        font-size: 14px;
        min-width: 70px;
    }
    
    .pagination-info {
        font-size: 12px;
    }
}

.btn-telegram {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.4);
}

.btn-telegram:hover {
    background: rgba(0, 136, 204, 0.3);
    border-color: rgba(0, 136, 204, 0.6);
    color: #00a0e0;
}

.btn-admin {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
    border: 1px solid rgba(245, 87, 108, 0.4);
}

.btn-admin:hover {
    background: rgba(245, 87, 108, 0.3);
    border-color: rgba(245, 87, 108, 0.6);
    color: #ff6b7f;
}

.btn-remove-admin {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

.btn-remove-admin:hover {
    background: rgba(158, 158, 158, 0.3);
    border-color: rgba(158, 158, 158, 0.6);
    color: #b0b0b0;
}

.admin-order-item,
.admin-user-item {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s;
    overflow: hidden;
    margin-bottom: 12px;
}

.admin-order-item:hover,
.admin-user-item:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.admin-order-item.expanded {
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.admin-order-summary {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    user-select: none;
}

.admin-order-summary:hover {
    background: rgba(102, 126, 234, 0.1);
}

.admin-order-main-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.admin-order-preview {
    display: flex;
    gap: 20px;
    margin-left: 20px;
    flex-wrap: wrap;
}

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

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

.preview-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.order-expand-icon {
    font-size: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s;
    margin-left: 12px;
    flex-shrink: 0;
}

.admin-order-item.expanded .order-expand-icon {
    transform: rotate(180deg);
}

.order-type-badge,
.order-status-badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.order-type-badge.buy-type {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.order-type-badge.sell-type {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.order-status-badge.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.order-status-badge.confirmed {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.4);
}

.order-status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.order-status-badge.cancelled {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.4);
}

.admin-order-details {
    border-top: 1px solid var(--border-color);
    background: rgba(15, 15, 30, 0.5);
    animation: slideDown 0.3s ease-out;
    max-height: 2000px;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.order-details-content {
    padding: 20px;
}

.order-detail-section {
    margin-bottom: 24px;
}

.order-detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.admin-order-details .order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-order-details .order-detail-row:last-child {
    border-bottom: none;
}

.admin-order-details .order-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 140px;
}

.admin-order-details .order-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    flex: 1;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.order-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-telegram-link {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.4);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.btn-telegram-link:hover {
    background: rgba(0, 136, 204, 0.3);
    border-color: rgba(0, 136, 204, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.btn-telegram-link:active {
    transform: scale(0.95);
}

.order-value.buy-type {
    color: #4caf50;
}

.order-value.sell-type {
    color: #e94560;
}

.order-value.completed {
    color: #4caf50;
}

.order-value.pending {
    color: #ffc107;
}

.order-value.cancelled {
    color: #9e9e9e;
}

.order-wallet-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.order-wallet-container {
    width: 100%;
    margin-top: 4px;
}

.order-wallet {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.wallet-address-text {
    flex: 1;
    min-width: 0;
    word-break: break-all;
}

.btn-copy-wallet {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--text-primary);
}

.btn-copy-wallet:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-copy-wallet:active {
    transform: scale(0.95);
}

/* Verification Indicators */
.verification-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    cursor: help;
    flex-shrink: 0;
}

.verification-indicator.verified {
    color: #4caf50;
    filter: drop-shadow(0 0 4px rgba(76, 175, 80, 0.5));
}

.verification-indicator.not-verified {
    color: #e94560;
    filter: drop-shadow(0 0 4px rgba(233, 69, 96, 0.5));
}

.order-user-info .verification-indicator {
    margin-left: 6px;
}

.order-wallet .verification-indicator {
    margin-right: 4px;
}

.order-detail-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-order-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-order-id {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 18px;
}

.admin-order-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-complete {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.btn-complete:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-confirm {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.4);
}

.btn-confirm:hover {
    background: rgba(33, 150, 243, 0.3);
    border-color: rgba(33, 150, 243, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.btn-cancel {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.4);
}

.btn-cancel:hover {
    background: rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-admin {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.btn-admin:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
}

.btn-remove-admin {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
    border: 1px solid rgba(245, 87, 108, 0.4);
}

.btn-remove-admin:hover {
    background: rgba(245, 87, 108, 0.3);
    border-color: rgba(245, 87, 108, 0.6);
}

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

.admin-user-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

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

.admin-user-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}

.admin-user-username {
    color: var(--text-secondary);
    font-size: 14px;
}

.admin-user-id {
    color: var(--text-secondary);
    font-size: 12px;
}

.admin-user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

.admin-badge {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(245, 87, 108, 0.4);
}

.admin-user-actions {
    display: flex;
    gap: 8px;
}

.loading,
.no-data {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    padding: 40px 20px;
}

@media (max-width: 480px) {
    .admin-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .admin-order-header,
    .admin-user-info {
        flex-direction: column;
    }
    
    .admin-order-actions,
    .admin-user-actions {
        width: 100%;
    }
    
    .btn-action {
        flex: 1;
    }
}

/* Verification Review Page Styles */
.verification-review-content {
    padding: 20px;
    max-width: 100%;
}

.verification-review-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.5);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.verification-review-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-color: rgba(102, 126, 234, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(102, 126, 234, 0.2);
    border-top-color: rgba(102, 126, 234, 1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.verification-users-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verification-user-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.verification-user-card:hover {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.verification-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.verification-user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.verification-user-id {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.verification-user-date {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.verification-user-arrow {
    font-size: 24px;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-left: 12px;
}

.verification-detail-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.verification-detail-content {
    margin-bottom: 24px;
}

.verification-detail-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.verification-detail-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verification-detail-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.verification-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
    line-height: 1.5;
    padding: 12px;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.verification-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-reject-verification,
.btn-approve-verification {
    flex: 1;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-reject-verification {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%);
    color: #ffffff;
    border: 1px solid rgba(233, 69, 96, 0.5);
}

.btn-reject-verification:hover {
    background: linear-gradient(135deg, rgba(233, 69, 96, 1) 0%, rgba(245, 87, 108, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-approve-verification {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(102, 187, 106, 0.8) 100%);
    color: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.btn-approve-verification:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(102, 187, 106, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.no-users {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* User Verification Styles in Admin Panel */
.user-verification-loading {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 12px;
    text-align: center;
}

.verification-status-approved {
    color: #4caf50;
    font-weight: 700;
}

.verification-status-pending {
    color: #ffc107;
    font-weight: 700;
}

.verification-status-rejected {
    color: #e94560;
    font-weight: 700;
}

.verification-status-not-verified {
    color: var(--text-secondary);
    font-weight: 600;
    opacity: 0.7;
}

.verification-personal-data {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.verification-personal-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

/* Admin Settings Styles */
.admin-settings-section {
    padding: 20px;
    margin-bottom: 20px;
}

.admin-settings-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.commission-settings {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commission-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.commission-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-sizing: border-box;
}

.commission-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.8);
    background: rgba(26, 26, 46, 0.8);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.commission-input:hover {
    border-color: rgba(102, 126, 234, 0.5);
}

.btn-save-commission {
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border: 1px solid rgba(102, 126, 234, 0.5);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-save-commission:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 1), rgba(118, 75, 162, 1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-save-commission:active {
    transform: translateY(0);
}

.btn-save-commission:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.commission-hint {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Blocked Screen Styles */
.blocked-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 20px;
}

.blocked-content {
    text-align: center;
    max-width: 400px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.2);
    backdrop-filter: blur(20px);
}

.blocked-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.blocked-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 1) 0%, rgba(245, 87, 108, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blocked-message {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.blocked-screen .btn-contact-support {
    margin-top: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

