
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-size-base: 15px;
    --font-size-large: 1.2rem;
    --font-size-xlarge: 1.5rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --border-radius-sm: 8px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --touch-target-min: 44px; 
}

@media (max-width: 767px) {
    :root {
        --font-size-base: 16px;
        --spacing-xs: 0.8rem;
        --spacing-sm: 1.2rem;
        --spacing-md: 1.8rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3.5rem;
    }
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--font-size-base);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(52, 152, 219, 0.03) 40px,
            rgba(52, 152, 219, 0.03) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(52, 152, 219, 0.03) 40px,
            rgba(52, 152, 219, 0.03) 41px
        ),
        radial-gradient(
            circle at center,
            rgba(52, 152, 219, 0.08) 1px,
            transparent 1px
        ),
        radial-gradient(
            ellipse at 20% 30%,
            rgba(52, 152, 219, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 70%,
            rgba(155, 89, 182, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(46, 204, 113, 0.06) 0%,
            transparent 40%
        );
    background-size: 
        100% 100%,
        100% 100%,
        30px 30px,
        100% 100%,
        100% 100%,
        100% 100%;
    background-position: 0 0;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(
            circle at 15% 25%,
            rgba(52, 152, 219, 0.12) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(155, 89, 182, 0.1) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 75% 15%,
            rgba(46, 204, 113, 0.08) 0%,
            transparent 25%
        ),
        radial-gradient(
            circle at 25% 85%,
            rgba(241, 196, 15, 0.06) 0%,
            transparent 25%
        ),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        56px 98px;
    animation: pulse 8s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

button, .nav-link, .mobile-nav-link, input, select, textarea {
    touch-action: manipulation; 
    min-height: var(--touch-target-min); 
}

.mobile-menu, .mix-box, .feature-card, .step-card, .guarantee-card {
    -webkit-overflow-scrolling: touch;
}

.header {
    background-color: #34495e;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1025px) {
    .header {
        position: static;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 0;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3498db;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.logo-text {
    letter-spacing: 1px;
    color: #3498db;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #3498db;
    transition: left 0.3s ease;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link .fa-telegram {
    font-size: 1.3rem;
    position: relative;
    top: 2px;
}

.currency-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #ecf0f1;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: inherit;
    font-family: inherit;
    position: relative;
    top: -3px;
}

.currency-btn:hover {
    color: #3498db;
}

.currency-btn .currency-flag {
    position: relative;
    top: 1px;
}

.currency-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

.currency-code {
    font-weight: 500;
}

.currency-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.currency-switcher.active .currency-arrow {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2c3e50;
    border: 1px solid #34495e;
    border-radius: 8px;
    min-width: 360px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transform-origin: top right;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0.5rem;
    gap: 0.25rem;
}

.currency-switcher.active .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px) scale(1);
}

.currency-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ecf0f1;
    border-radius: 6px;
}

.currency-option:hover {
    background: #34495e;
}

.currency-option.active {
    background: #34495e;
    color: #3498db;
}

.currency-option .currency-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.mobile-currency-switcher {
    padding: 0;
    border-top: 1px solid #34495e;
    margin-top: 0.5rem;
    order: 9; 
}

.mobile-currency-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ecf0f1;
    cursor: pointer;
    padding: 1rem 1.2rem 1rem calc(1.2rem + 0.5rem);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mobile-currency-btn:hover {
    color: #3498db;
}

.mobile-currency-btn > i:first-child {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    color: #3498db;
    display: none;
}

.mobile-currency-btn > span:first-of-type {
    display: none;
}

.mobile-currency-btn .currency-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.mobile-currency-code {
    font-weight: 500;
}

.mobile-currency-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.mobile-currency-switcher.active .mobile-currency-arrow {
    transform: rotate(180deg);
}

.mobile-currency-dropdown {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: #1a252f;
    border-radius: 8px;
    margin-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 250px;
    border: 1px solid #34495e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    gap: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3498db #34495e;
}

.mobile-currency-dropdown::-webkit-scrollbar {
    width: 6px;
}

.mobile-currency-dropdown::-webkit-scrollbar-track {
    background: #34495e;
    border-radius: 3px;
}

.mobile-currency-dropdown::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 3px;
}

.mobile-currency-dropdown::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

.mobile-currency-switcher.active .mobile-currency-dropdown {
    display: grid;
}

.mobile-currency-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ecf0f1;
    border-radius: 6px;
}

.mobile-currency-option:hover {
    background: #2c3e50;
}

.mobile-currency-option.active {
    background: #2c3e50;
    color: #3498db;
}

.mobile-currency-option .currency-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ecf0f1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #2c3e50;
    padding: 1rem;
    gap: 0;
    z-index: 1002;
    position: relative;
}

.mobile-nav-link {
    color: #ecf0f1;
    text-decoration: none;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-height: 48px;
}

.mobile-nav-link:hover {
    background-color: #34495e;
}

.mobile-nav-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    color: #3498db;
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    padding-top: 1.5rem; 
}

@media (min-width: 1025px) {
    .main-content {
        margin-top: 0;
        padding-top: 1.5rem; 
    }
}

@media (max-width: 1024px) {
    .main-content {
        margin-top: 70px;
        padding-top: 1rem; 
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
    position: relative;
}

@media (min-width: 769px) {
    .section-title {
        margin-bottom: 2rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

.mixing-section {
    padding: 0 0 2rem 0; 
}

.mixing-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 769px) {
    .mixing-section {
        padding: 0 0 45px 0; 
    }
}

.mix-box {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.input-group {
    margin-bottom: var(--spacing-md);
}

.input-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: #bdc3c7;
    font-weight: 500;
}

.crypto-select, .delay-select, .address-input, .amount-input {
    padding: 12px 15px;
    border: 2px solid #34495e;
    border-radius: var(--border-radius-sm);
    background: #2c3e50;
    color: #ecf0f1;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.crypto-select, .delay-select {
    width: 100%;
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    background: #2c3e50;
    border: 2px solid #34495e;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.custom-select:hover {
    border-color: #3498db;
}

.custom-select.active {
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.select-selected {
    padding: 12px 40px 12px 15px;
    color: #ecf0f1;
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    min-height: calc(var(--touch-target-min) - 4px);
    position: relative;
}

.select-selected:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #ecf0f1 transparent transparent transparent;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.custom-select.active .select-selected:after {
    transform: translateY(-50%) rotate(180deg);
}

.select-items {
    position: absolute;
    background: #2c3e50;
    border: 2px solid #34495e;
    border-top: none;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.custom-select.active .select-items {
    display: block;
}

.select-option {
    padding: 10px 15px;
    cursor: pointer;
    color: #ecf0f1;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #34495e;
    display: flex;
    align-items: center;
    gap: 0;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: #34495e;
}

.select-option.active {
    background: #34495e;
    color: #ecf0f1;
}

.crypto-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.select-selected .crypto-icon {
    margin-right: 8px;
}

.select-option .crypto-icon {
    margin-right: 8px;
}

.detail-value .crypto-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.select-items::-webkit-scrollbar {
    width: 8px;
}

.select-items::-webkit-scrollbar-track {
    background: #34495e;
    border-radius: 4px;
}

.select-items::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

.select-items::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

.crypto-select:focus, .delay-select:focus, .address-input:focus, .amount-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.address-input.valid {
    border-color: #27ae60 !important;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.3) !important;
}

.address-input.invalid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3) !important;
}

.address-input.duplicate {
    border-color: #f39c12 !important;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3) !important;
}

.address-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.address-input-wrapper {
    position: relative;
}

.address-amount-row {
    display: grid;
    grid-template-columns: 1fr 120px; 
    gap: 1rem;
    align-items: center;
}

.address-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.address-input {
    width: 100%;
    padding-right: 45px; 
}

.amount-input {
    width: 100%;
    appearance: textfield; 
    -moz-appearance: textfield; 
}

.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
    appearance: none; 
    -webkit-appearance: none; 
    margin: 0;
}

.remove-address {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    z-index: 10;
    opacity: 0.7;
}

.remove-address:hover {
    opacity: 1;
    transform: translateY(-50%);
}

.add-address-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1rem;
}

.add-address-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
}

.distribution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.distribution-header label {
    margin-bottom: 0 !important;
    color: #bdc3c7;
    font-weight: 500;
}

.distribution-title-with-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.distribution-header .add-address-btn {
    margin-top: 0;
}

.panel-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    display: block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 26px;
    background-color: #34495e;
    border-radius: 13px;
    transition: background-color 0.3s ease;
    border: 2px solid #2c3e50;
}

.toggle-label:hover {
    background-color: #4a5f7a;
}

.toggle-switch {
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #bdc3c7;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-checkbox:checked + .toggle-label {
    background-color: #3498db;
    border-color: #2980b9;
}

.toggle-checkbox:checked + .toggle-label .toggle-switch {
    left: 26px;
    transform: translateY(-50%);
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.distribution-sliders.hidden {
    display: none;
}

.distribution-sliders:not(.hidden) {
    display: flex;
    flex-direction: column;
    min-height: 58px; 
    padding: 0.5rem 1rem 0.5rem 1rem; 
    background: rgba(44, 62, 80, 0.6);
    border-radius: 8px;
    border: 1px solid #34495e;
}

@media (max-width: 768px) {
    .distribution-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .distribution-title-with-toggle {
        width: 100%;
        justify-content: flex-start;
    }
    
    .distribution-header .add-address-btn {
        align-self: flex-start;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
}

.distribution-container {
    margin: 1.5rem 0;
}

.slider-scale-container {
    position: relative;
    margin: 0; 
    height: 30px;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(44, 62, 80, 1); 
    border-radius: 4px;
    border: 1px solid #34495e;
    transform: translateY(-50%);
    overflow: hidden;
}

.track-segment {
    position: absolute;
    top: 0;
    height: 100%;
    transition: left 0.15s ease-out, width 0.15s ease-out;
    background-color: rgba(52, 152, 219, 0.3); 
    will-change: left, width;
    backface-visibility: hidden;
}

.divider-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 30px; 
    transform: translateY(-50%);
    pointer-events: none;
}

.divider-line {
    position: absolute;
    top: 0;
    width: 3px; 
    height: 100%;
    background-color: transparent; 
    transform: translateX(-50%);
    z-index: 15; 
    box-shadow: none;
    border-radius: 1px;
}

.unified-slider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    transform: translateY(-50%);
    pointer-events: none;
    outline: none;
    z-index: 50; 
}

.unified-slider::-webkit-slider-track {
    background: transparent;
    border: none;
    height: 8px;
}

.unified-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto;
    box-shadow: none;
    margin-top: -4px; 
    border: none; 
}

.unified-slider::-webkit-slider-thumb:hover {
    background: #2980b9;
    transform: scale(1.1);
    box-shadow: none;
    border: none;
}

.unified-slider::-webkit-slider-thumb:active {
    background: #21618c;
    transform: scale(1.05);
    box-shadow: none;
    border: none;
}

.unified-slider::-moz-range-track {
    background: transparent;
    border: none;
    height: 8px;
}

.unified-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    border: none; 
    transition: all 0.2s ease;
    pointer-events: auto;
    box-shadow: none;
    margin-top: -4px;
}

.unified-slider::-moz-range-thumb:hover {
    background: #2980b9;
    transform: scale(1.1);
    box-shadow: none;
    border: none;
}

.unified-slider::-moz-range-thumb:active {
    background: #21618c;
    transform: scale(1.05);
    box-shadow: none;
    border: none;
}

.percentage-displays {
    position: relative; 
    margin-top: 3px; 
    margin-bottom: 10px; 
    font-size: 0.85rem; 
    height: 18px; 
}

.percentage-value {
    position: absolute;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    transform: translateX(-50%); 
    white-space: nowrap;

    background: #3498db;
    border-radius: 6px; 
    padding: 0px 8px; 
    box-shadow: none; 
    border: none;

    transition: background 0.2s ease;

    z-index: 1;
}

.percentage-value::before {
    content: '';
    position: absolute;
    top: -6px; 
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent; 
    border-right: 6px solid transparent; 
    border-bottom: 6px solid #3498db; 
    z-index: 2; 
    transition: border-bottom-color 0.2s ease; 
}

.percentage-value:hover {
    background: #2980b9;
}

.percentage-value:hover::before {
    border-bottom-color: #2980b9; 
}

.percentage-value:nth-child(6) { z-index: 15; }
.percentage-value:nth-child(7) { z-index: 16; }
.percentage-value:nth-child(8) { z-index: 17; }
.percentage-value:nth-child(9) { z-index: 18; }
.percentage-value:nth-child(10) { z-index: 19; }

.percentage-value:not(:last-child) {
    opacity: 0.9;
}

.percentage-value:last-child {
    opacity: 1;
}

.distribution-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(44, 62, 80, 0.6);
    border-radius: 8px;
    margin-top: 1rem;
}

.total-amount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-crypto {
    font-weight: bold;
    color: #27ae60;
}

.total-fiat {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.fee-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin: 1.5rem 0;
}

.min-amount {
    color: #bdc3c7;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.min-amount.warning {
    color: #e74c3c;
    font-weight: bold;
}

.continue-btn {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    padding: 15px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continue-btn:enabled {
    background: #2980b9;
}

.continue-btn:enabled:hover {
    background: #21618c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
}

.continue-btn:disabled {
    background: #34495e;
    cursor: not-allowed;
    opacity: 0.6;
}

.features-section {
    padding: 2rem 0; 
    background: rgba(44, 62, 80, 0.5);
}

@media (min-width: 769px) {
    .features-section {
        padding: 2rem 0; 
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (min-width: 481px) and (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.feature-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

@media (min-width: 769px) {
    .feature-card {
        padding: 1.5rem;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.feature-card p {
    color: #bdc3c7;
}

.how-it-works-section {
    padding: 2rem 0; 
}

.how-it-works-section .section-title::after {
    display: none;
}

@media (min-width: 769px) {
    .how-it-works-section {
        padding: 2rem 0; 
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (min-width: 481px) and (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.step-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .step-card {
        padding: 1.5rem;
    }
}

.step-card:hover {
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    margin: 1rem 0;
    color: #ecf0f1;
}

.step-card p {
    color: #bdc3c7;
}

.guarantees-section {
    padding: 2rem 0; 
    background: rgba(44, 62, 80, 0.5);
}

@media (min-width: 769px) {
    .guarantees-section {
        padding: 2rem 0; 
    }
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (min-width: 481px) and (max-width: 768px) {
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 769px) {
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.guarantee-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .guarantee-card {
        padding: 1.5rem;
    }
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.guarantee-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.guarantee-card p {
    color: #bdc3c7;
}

.features-minimal {
    background: transparent;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.feature-item i {
    font-size: 2.5rem;
    color: #3498db;
    min-width: 55px;
    text-align: center;
    margin-top: 0.1rem;
}

.feature-content h3 {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    
    .feature-item i {
        font-size: 2.2rem;
        min-width: 50px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
}

.guarantees-minimal {
    background: transparent;
}

.guarantees-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.guarantee-item i {
    font-size: 2.5rem;
    color: #27ae60;
    min-width: 55px;
    text-align: center;
    margin-top: 0.1rem;
}

.guarantee-content h3 {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .guarantees-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guarantee-item {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }
    
    .guarantee-item i {
        font-size: 2.2rem;
        min-width: 50px;
    }
    
    .guarantee-content h3 {
        font-size: 1.1rem;
    }
    
    .guarantee-content p {
        font-size: 0.95rem;
    }
}

.footer {
    background: #34495e;
    padding: 2rem 0 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .footer {
        padding: 1.5rem 0 0.5rem;
        margin-top: 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-bottom: 1rem;
    align-items: start;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-section:last-child {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-section:last-child {
        text-align: left;
    }
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 0; 
}

.footer-links a:hover {
    color: #3498db;
}

.footer-links a .fa-telegram {
    font-size: 1.3rem;
    position: relative;
    top: 2px;
}

.footer-email-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-email-link:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #2c3e50;
    color: #bdc3c7;
}

.faq-section {
    padding: 0 0 2rem 0; 
}

@media (min-width: 769px) {
    .faq-section {
        padding: 0 0 2rem 0; 
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 769px) {
    .faq-header {
        margin-bottom: 2rem;
    }
}

.faq-subtitle {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .faq-subtitle {
        margin-bottom: 2rem;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

@media (min-width: 769px) {
    .faq-category {
        margin-bottom: 2rem;
    }
}

.category-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #3498db;
    font-size: 1.5rem;
    border-bottom: 2px solid #34495e;
}

@media (min-width: 769px) {
    .category-header {
        margin-bottom: 1.5rem;
    }
}

.category-header i {
    font-size: 1.8rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(52, 73, 94, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(52, 73, 94, 0.9);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ecf0f1;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.faq-question:hover {
    background: rgba(44, 62, 80, 0.6);
}

.faq-question:active {
    background: rgba(44, 62, 80, 0.8);
    transform: scale(0.98);
}

.faq-item.active .faq-question {
    background: rgba(44, 62, 80, 0.7);
    border-radius: 10px 10px 0 0;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3498db;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(44, 62, 80, 0.6);
    border-radius: 0 0 10px 10px;
}

.faq-item.active .faq-answer {
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 1.5rem;
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
}

.support-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 0;
}

@media (min-width: 769px) {
    .support-cta {
        margin-top: 2.5rem;
        padding: 0;
    }
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.support-icon i {
    font-size: 3rem;
    color: #3498db;
}

.support-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.support-text p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.support-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.confirmation-section {
    padding: 0 0 1rem 0; 
}

@media (min-width: 769px) {
    .confirmation-section {
        padding: 0 0 1rem 0; 
    }
}

.confirmation-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 769px) {
    .confirmation-header {
        margin-bottom: 2rem;
    }
}

.confirmation-subtitle {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.confirmation-content {
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-card {
    background: rgba(52, 73, 94, 0.8);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.confirmation-card.highlight {
    border: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(44, 62, 80, 0.6);
    border-bottom: 1px solid #34495e;
}

.card-header i {
    font-size: 1.3rem; 
    color: #3498db;
    line-height: 1; 
    display: flex;
    align-items: center;
}

.card-header h2 {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin: 0; 
    line-height: 1.2; 
    display: flex;
    align-items: center;
}

.card-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem; 
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #34495e;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #bdc3c7;
}

.detail-value {
    color: #ecf0f1;
    font-weight: bold;
}

.address-item {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #34495e;
}

.address-item:last-child {
    border-bottom: none;
}

.address-info {
    display: block;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.address-number {
    color: #bdc3c7;
}

.address-percentage {
    color: #3498db;
    font-weight: bold;
}

.address-value {
    color: #ecf0f1;
    font-family: monospace;
    word-break: break-all;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.amount-info {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}

.amount-crypto {
    color: #ecf0f1;
    font-weight: bold;
}

.amount-fiat {
    color: #bdc3c7;
    font-size: 0.8rem;
}

.address-amounts-wrapper {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delay-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.delay-label {
    color: #bdc3c7;
    font-size: 0.85rem;
    white-space: nowrap;
    order: 2;
}

.delay-input {
    width: 80px;
    padding: 0.4rem 0.6rem;
    border: 1px solid #34495e;
    border-radius: 5px;
    background: #2c3e50;
    color: #ecf0f1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    order: 1;
    text-align: center;
}

.delay-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.delay-input::-webkit-inner-spin-button,
.delay-input::-webkit-outer-spin-button {
    background-color: transparent;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.delay-input:hover::-webkit-inner-spin-button,
.delay-input:hover::-webkit-outer-spin-button,
.delay-input:focus::-webkit-inner-spin-button,
.delay-input:focus::-webkit-outer-spin-button {
    opacity: 1;
}

@media (min-width: 1025px) {
    .address-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .address-info {
        flex: 1;
        display: block;
        padding-top: 0.5rem;
    }
    
    .address-header {
        margin-bottom: 0.3rem;
    }
    
    .address-value {
        margin-bottom: 0;
    }
    
    .address-amounts-wrapper {
        flex-shrink: 0;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        margin-top: 0;
    }
    
    .amount-info {
        text-align: right;
        flex-direction: column;
        align-items: flex-end;
        margin-top: 0;
        min-width: 150px;
        gap: 0.2rem;
    }
    
    .amount-crypto {
        display: block;
    }
    
    .amount-fiat {
        display: block;
    }
    
    .delay-info {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
}

.deposit-info {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

@media (min-width: 769px) {
    .deposit-info {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .deposit-fields {
        flex: 1;
        min-width: 0; 
        margin-bottom: 0;
    }

    .mobile-qr-toggle {
        display: none !important;
    }
    
    .qr-code-container {
        flex-shrink: 0;
        margin-bottom: 0;
        align-self: flex-end;
        display: flex !important; 
        align-items: center;
        justify-content: center;
    }
    
    .qr-code {
        margin: 0;
        height: auto;
        padding: 0.1rem; 
    }

    [data-qr-image] {
        max-width: 90px;
        max-height: 90px;
    }
}

.deposit-field {
    margin-bottom: 1.5rem;
}

.deposit-field:last-child {
    margin-bottom: 0;
}

.deposit-field-label {
    display: block;
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    font-weight: normal;
    font-size: 0.95rem;
}

.deposit-address-container {
    display: block;
    margin-bottom: 1.5rem;
}

.deposit-address-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.deposit-address {
    width: 100%;
    background: #2c3e50;
    padding: 1rem;
    padding-right: 4.5rem;
    border-radius: 8px;
    font-family: monospace;
    word-break: break-all;
    border: 1px solid #34495e;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.copy-button {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #3498db;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1;
}

.copy-button:hover {
    color: #2980b9;
    background: rgba(52, 152, 219, 0.1);
}

.copy-button:active {
    transform: translateY(-50%) scale(0.95);
}

.copy-button.copied {
    color: #3498db;
}

.deposit-amount-container {
    display: block;
    margin-bottom: 1.5rem;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #2c3e50;
    border: 1px solid #34495e;
    border-radius: 8px;
    overflow: hidden;
}

.crypto-prefix {
    background: #34495e;
    color: #3498db;
    padding: 1rem 1.2rem;
    font-weight: bold;
    font-size: 0.9rem;
    border-right: 1px solid #2c3e50;
    white-space: nowrap;
    user-select: none;
}

.deposit-amount-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    padding-right: 4.5rem;
    color: #ecf0f1;
    font-family: monospace;
    font-size: 0.9rem;
    outline: none;
    appearance: textfield; 
    -moz-appearance: textfield; 
}

.deposit-amount-input::-webkit-outer-spin-button,
.deposit-amount-input::-webkit-inner-spin-button {
    appearance: none; 
    -webkit-appearance: none; 
    margin: 0;
}

.deposit-amount-input::placeholder {
    color: #7f8c8d;
}

.deposit-amount-input:focus {
    background: rgba(52, 152, 219, 0.05);
}

.amount-input-wrapper:focus-within {
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.amount-info-confirm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-item {
    background: rgba(44, 62, 80, 0.6);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.amount-label {
    display: block;
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.amount-value {
    display: block;
    color: #ecf0f1;
    font-weight: bold;
    font-size: 1.1rem;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code {
    display: inline-block;
    padding: 1rem;
    background: white;
    border-radius: 10px;
}

[data-qr-image] {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    display: block;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #2c3e50;
}

.qr-placeholder i {
    font-size: 4rem;
}

#deposit-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.deposit-block {
    position: relative;
}

.deposit-block:not(:first-child) {
    padding-top: 0.3rem;
    border-top: 2px solid #34495e;
}

.deposit-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.deposit-block-header h3 {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin: 0;
}

.remove-deposit-btn {
    background: transparent;
    border: none;
    color: #ecf0f1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    opacity: 0.7;
}

.remove-deposit-btn:hover {
    background: transparent;
    color: #ecf0f1;
    transform: rotate(90deg);
    opacity: 1;
}

.remove-deposit-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.add-deposit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    margin: 0.5rem auto 1.8rem auto;
    width: auto;
    max-width: 300px;
}

.add-deposit-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.add-deposit-btn:active {
    transform: translateY(0);
}

.add-deposit-btn i {
    font-size: 0.9rem;
}

.deposit-instructions {
    background: rgba(44, 62, 80, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 0.8rem;
}

.add-deposit-btn[style*="display: none"] + .deposit-instructions,
.add-deposit-btn.hidden + .deposit-instructions {
    margin-top: 0.3rem;
}

.deposit-distribution-container {
    margin: 1rem auto 1.5rem auto;
    max-width: 100%;
}

.deposit-distribution-header {
    margin-bottom: 0.5rem;
}

.deposit-distribution-header label {
    display: block;
    color: #bdc3c7;
    font-weight: 500;
    font-size: 0.95rem;
}

.deposit-distribution-sliders {
    display: flex;
    flex-direction: column;
    min-height: 58px;
    padding: 0.5rem 1rem 0.5rem 1rem;
    background: rgba(44, 62, 80, 0.6);
    border-radius: 8px;
    border: 1px solid #34495e;
}

.deposit-slider-scale-container {
    position: relative;
    margin: 0;
    height: 30px;
}

.deposit-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(44, 62, 80, 1);
    border-radius: 4px;
    border: 1px solid #34495e;
    transform: translateY(-50%);
    overflow: hidden;
}

.deposit-track-segment {
    position: absolute;
    top: 0;
    height: 100%;
    transition: left 0.15s ease-out, width 0.15s ease-out;
    background-color: rgba(52, 152, 219, 0.3);
    will-change: left, width;
    backface-visibility: hidden;
}

.deposit-divider-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 30px;
    transform: translateY(-50%);
    pointer-events: none;
}

.deposit-divider-line {
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: transparent;
    transform: translateX(-50%);
    z-index: 15;
    border-radius: 1px;
}

.deposit-unified-slider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    transform: translateY(-50%);
    pointer-events: none;
    outline: none;
    z-index: 50;
}

.deposit-unified-slider::-webkit-slider-track {
    background: transparent;
    border: none;
    height: 8px;
}

.deposit-unified-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto;
    box-shadow: none;
    margin-top: -4px;
    border: none;
}

.deposit-unified-slider::-webkit-slider-thumb:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.deposit-unified-slider::-webkit-slider-thumb:active {
    background: #21618c;
    transform: scale(1.05);
}

.deposit-unified-slider::-moz-range-track {
    background: transparent;
    border: none;
    height: 8px;
}

.deposit-unified-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    pointer-events: auto;
    box-shadow: none;
    margin-top: -4px;
}

.deposit-unified-slider::-moz-range-thumb:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.deposit-unified-slider::-moz-range-thumb:active {
    background: #21618c;
    transform: scale(1.05);
}

.deposit-percentage-displays {
    position: relative;
    margin-top: 3px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    height: 18px;
}

.deposit-percentage-value {
    position: absolute;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #3498db;
    border-radius: 6px;
    padding: 0px 8px;
    border: none;
    transition: background 0.2s ease;
    z-index: 1;
}

.deposit-percentage-value::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #3498db;
    z-index: 2;
    transition: border-bottom-color 0.2s ease;
}

.deposit-percentage-value:hover {
    background: #2980b9;
}

.deposit-percentage-value:hover::before {
    border-bottom-color: #2980b9;
}

#deposit-info-card {
    transition: all 0.3s ease-in-out;
}

#deposit-info-card[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}

#deposit-info-card[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}

#security-reminder-card {
    transition: all 0.3s ease-in-out;
}

#security-reminder-card[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}

#security-reminder-card[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 1;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.modal-icon i {
    font-size: 2rem;
    color: white;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.request-details {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.request-details .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.request-details .detail-row:last-child {
    margin-bottom: 0;
}

.request-details .detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.request-details .detail-value {
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.status-processing {
    color: #f39c12 !important;
}

.status-processing i {
    margin-right: 0.5rem;
}

.processing-info {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
}

.processing-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.processing-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.processing-info li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.processing-info li:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn-primary {
    min-width: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (prefers-color-scheme: dark) {
    .processing-info {
        background: var(--bg-card);
        border-left-color: #3498db;
    }
    
    .processing-info h3 {
        color: #ecf0f1;
    }
    
    .processing-info li {
        color: #bdc3c7;
    }
}

@media (min-width: 769px) {
}

.security-reminder {
    display: flex;
    align-items: flex-start;
}

.security-reminder .security-content {
    flex: 1;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.security-reminder .security-content h3 {
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .confirmation-actions {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .confirmation-actions .btn-primary {
        width: auto;
        max-width: 280px;
        min-width: 200px;
        flex: none;
        margin: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-footer {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .modal-footer .btn-primary {
        min-width: 120px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.deposit-instructions h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.deposit-instructions ul {
    list-style: none;
    padding: 0;
}

.deposit-instructions li {
    padding: 0.5rem 0;
    color: #bdc3c7;
}

.security-reminder {
    display: flex;
    align-items: flex-start;
    background: rgba(231, 76, 60, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e74c3c;
    margin: 2rem 0;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.security-icon i {
    font-size: 2.5rem;
    color: #e74c3c;
}

.security-content h3 {
    color: #e74c3c;
    margin: 0;
}

.security-content p {
    color: #bdc3c7;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.3rem; 
}

.btn-secondary, .btn-primary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.processing-steps {
    padding: 1rem 0 1rem 0; 
    background: rgba(44, 62, 80, 0.5);
}

.confirmation-page .footer {
    margin-top: 0;
}

@media (min-width: 769px) {
    .processing-steps {
        padding: 1rem 0 1rem 0; 
    }
}

@media (min-width: 769px) {
    .processing-steps .section-title {
        margin-bottom: 2rem;
    }
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .steps-timeline {
        gap: 1rem;
    }
}

@media (min-width: 769px) {
    .steps-timeline {
        gap: 1.5rem;
    }
}

.step {
    text-align: center;
    padding: 2rem;
}

@media (min-width: 769px) {
    .step {
        padding: 1.5rem;
    }
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.step-content p {
    color: #bdc3c7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .mixing-section {
        padding: 0 0 1.5rem 0;
    }
    
    .mixing-section .container {
        padding: 0 2rem;
    }
    
    .mix-box {
        padding: 2rem;
        margin: 0 auto;
        max-width: 650px;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    .address-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .address-info {
        display: block;
        flex: 1;
    }
    
    .address-value {
        margin-bottom: 0;
    }
    
    .address-amounts-wrapper {
        margin-top: 0;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        flex-shrink: 0;
    }
    
    .amount-info {
        display: flex;
        gap: 0.5rem;
        align-items: baseline;
    }
    
    .delay-info {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 700px;
    }
    
    .step {
        padding: 1.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .features-section,
    .how-it-works-section,
    .guarantees-section,
    .about-mission-section,
    .about-stats-section {
        padding: 1.5rem 0;
    }
}

@media (min-width: 1025px) {
    .mix-box {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .deposit-block-header {
        padding-top: 4px;
    }
}

@media (max-width: 1024px) {
    body {
        font-size: 16px; 
        line-height: 1.7; 
    }
    
    .container {
        padding: 0 15px;
    }

    .features-section,
    .how-it-works-section,
    .guarantees-section,
    .processing-steps,
    .about-mission-section,
    .about-stats-section {
        margin-bottom: -0.3rem; 
    }
    
    .footer {
        margin-top: 1rem; 
    }

    .faq-section {
        padding: 0 0 1.5rem 0; 
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        padding: 0 1rem; 
    }
    
    .faq-container {
        padding: 0 0.5rem; 
    }
    
    .faq-category {
        margin-bottom: 2.5rem; 
    }
    
    .category-header {
        font-size: 1.4rem;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem 0.5rem;
        flex-wrap: wrap; 
    }
    
    .category-header h2 {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .category-header i {
        font-size: 1.5rem;
    }
    
    .faq-items {
        gap: 0.8rem; 
    }
    
    .faq-item {
        border-radius: 12px;
        margin: 0 0.5rem; 
    }
    
    .faq-question {
        padding: 1.5rem 1.2rem; 
        font-size: 1.1rem;
        line-height: 1.4;
        gap: 1rem; 
        touch-action: manipulation; 
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.2); 
    }
    
    .faq-question:active {
        background: rgba(52, 152, 219, 0.1);
        transform: scale(0.99);
    }
    
    .faq-question span {
        flex: 1;
        padding-right: 1rem; 
    }
    
    .faq-question i {
        font-size: 1.2rem;
        flex-shrink: 0; 
    }
    
    .faq-answer p {
        padding: 1.5rem 1.2rem;
        font-size: 1rem;
        line-height: 1.7;
        margin: 0;
    }

    .support-cta {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .support-content {
        gap: 1.5rem;
    }
    
    .support-icon i {
        font-size: 2.8rem;
    }
    
    .support-text {
        text-align: center;
        padding: 0 1rem;
    }
    
    .support-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .support-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .support-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .nav-left, .nav-right {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-center {
        position: static;
        transform: none;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav {
        padding: 0.8rem 1rem; 
    }
    
    .mobile-menu.active {
        display: flex;
        padding: 1rem;
    }
    
    .mobile-nav-link {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        min-height: 52px;
        border-radius: 10px;
    }

    .main-content {
        margin-top: 70px; 
        padding-top: 1rem; 
    }
    
    .section-title {
        font-size: 1.8rem; 
        margin-bottom: 2rem; 
    }

    .mixing-section {
        padding: 0 0 1.5rem 0; 
    }
    
    .mix-box {
        padding: 1.5rem;
        margin: 0; 
        border-radius: 12px; 
        max-width: none; 
        width: 100%; 
    }

    .distribution-summary {
        padding: 1rem; 
    }

    .fee-display {
        padding: 1rem 0; 
    }
    
    .input-group {
        margin-bottom: 1.5rem; 
    }
    
    .input-group label {
        margin-bottom: 0.8rem;
        font-size: 1rem; 
        font-weight: 600;
    }
    
    .crypto-select, .delay-select, .address-input, .amount-input {
        padding: 14px 16px; 
        font-size: 1rem; 
        border-radius: 10px; 
    }

    .amount-input {
        width: 65% !important;
        max-width: 200px;
        box-sizing: border-box;
    }
    
    .address-amount-row {
        grid-template-columns: 1fr;
        gap: 1rem; 
    }

    .address-input-container {
        position: relative;
    }

    .address-input {
        padding-right: 45px; 
    }

    .remove-address {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: white;
        width: 36px; 
        height: 36px;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        opacity: 0.7;
    }

    .remove-address:hover {
        opacity: 1;
    }    .add-address-btn {
        padding: 14px 24px; 
        font-size: 1rem;
        margin-top: 1.2rem;
    }

    .distribution-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .distribution-header .add-address-btn {
        align-self: flex-start;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .slider-scale-container {
        height: 50px; 
        margin: 0; 
    }
    
    .slider-track {
        height: 10px; 
    }
    
    .unified-slider::-webkit-slider-thumb {
        width: 20px; 
        height: 20px;
        margin-top: -3px; 
    }
    
    .unified-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        margin-top: -3px; 
    }
    
    .percentage-displays {
        margin-top: 1px; 
        margin-bottom: 12px; 
        font-size: 0.8rem; 
        height: 16px; 
    }
    
    .percentage-value {
        font-size: 0.8rem; 
        padding: 0px 6px; 
        border-radius: 4px; 

        box-shadow: none;
    }

    .percentage-value::before {
        top: -5px; 
        border-left: 5px solid transparent; 
        border-right: 5px solid transparent; 
        border-bottom: 5px solid #3498db; 
        z-index: 2; 
        transition: border-bottom-color 0.2s ease; 
    }
    
    .distribution-summary {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .total-crypto {
        font-size: 1rem; 
    }
    
    .total-fiat {
        font-size: 1rem;
    }

    .continue-btn {
        padding: 18px; 
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .features-section,
    .how-it-works-section,
    .guarantees-section,
    .about-mission-section,
    .about-stats-section {
        padding: 1.5rem 0; 
    }
    
    .features-grid,
    .steps-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card,
    .step-card,
    .guarantee-card {
        padding: 2rem;
        border-radius: 12px;
    }
    
    .feature-card h3,
    .step-card h3,
    .guarantee-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p,
    .step-card p,
    .guarantee-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .step-number {
        top: -10px;
    }
    
    .fee-display {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .fee-display span {
        font-size: 1rem;
    }

    .footer {
        padding: 1rem 0 0.5rem; 
        margin-top: 0.5rem; 
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0.5rem; 
    }

    .footer-section:last-child {
        text-align: left;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem; 
    }
    
    .footer-section .footer-links {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 0 !important;
    }
    
    .footer-section .footer-links a {
        font-size: 1rem;
        padding: 0 !important;
        line-height: 1.6;
        margin: 0 !important;
    }
    
    .footer-bottom {
        padding-top: 0.5rem; 
    }

    .confirmation-section {
        padding: 0 0 1.5rem 0; 
    }
    
    .confirmation-header {
        margin-bottom: 2rem; 
    }
    
    .confirmation-subtitle {
        font-size: 1rem; 
    }
    
    .confirmation-card {
        margin-bottom: 0.5rem; 
    }
    
    .card-header {
        padding: 1.2rem; 
        gap: 0.8rem; 
    }
    
    .card-header i {
        font-size: 1.2rem; 
    }
    
    .card-header h2 {
        font-size: 1.2rem; 
    }
    
    .card-body {
        padding: 0.8rem 1.2rem 1.2rem 1.2rem; 
    }

    .crypto-prefix {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .deposit-amount-input {
        padding: 0.8rem;
        padding-right: 4rem;
        font-size: 0.8rem;
    }

    .mobile-qr-toggle {
        display: none !important;
    }
    
    .qr-code-container {
        display: none !important;
    }

    .deposit-field-label {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .deposit-field {
        margin-bottom: 0.6rem !important;
    }

    #deposit-blocks-container {
        gap: 0.4rem;
    }
    
    .deposit-block:not(:first-child) {
        padding-top: 0.4rem;
    }
    
    .deposit-block-header h3 {
        font-size: 1rem;
    }
    
    .remove-deposit-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .add-deposit-btn {
        padding: 14px 20px;
        font-size: 1rem;
        margin: 0.5rem auto 1.6rem auto;
    }
    
    .confirmation-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.36rem; 
    }
    
    .btn-secondary, .btn-primary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .security-reminder {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem; 
        margin: 1.5rem 0; 
    }
    
    .security-header {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .security-content h3 {
        font-size: 1.2rem;
    }
    
    .security-content p {
        font-size: 1rem;
    }
    
    .deposit-address-container {
        margin-bottom: 0.8rem;
    }
    
    .deposit-address {
        padding: 1.2rem;
        padding-right: 4rem;
        font-size: 0.9rem; 
    }
    
    .copy-button {
        right: 0.6rem;
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .amount-info-confirm {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amount-item {
        padding: 1.2rem; 
    }
    
    .amount-label {
        font-size: 0.95rem; 
    }
    
    .amount-value {
        font-size: 1.2rem; 
    }
    
    .deposit-info {
        margin-bottom: 1.5rem;
        display: block; 
    }
    
    .deposit-fields {
        margin-bottom: 1.5rem;
    }
    
    .qr-code-container {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .deposit-instructions {
        padding: 1.2rem; 
    }
    
    .processing-steps {
        padding: 1.5rem 0; 
    }
    
    .steps-timeline {
        gap: 0.3rem; 
    }
    
    .step {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.8; 
    }
    
    .container {
        padding: 0 10px;
    }

    .faq-section {
        padding: 0 0 1.2rem 0; 
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-category {
        margin-bottom: 2rem;
    }
    
    .category-header {
        font-size: 1.2rem;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
        padding: 0 0.2rem 0.5rem;
        text-align: center; 
    }
    
    .category-header h2 {
        font-size: 1.2rem;
    }
    
    .category-header i {
        font-size: 1.3rem;
    }
    
    .faq-items {
        gap: 0.6rem;
    }
    
    .faq-item {
        border-radius: 10px;
        margin: 0 0.2rem;
    }
    
    .faq-question {
        padding: 1.3rem 1rem;
        font-size: 1rem;
        line-height: 1.5;
        gap: 0.8rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.2);
    }
    
    .faq-question:active {
        background: rgba(52, 152, 219, 0.1);
        transform: scale(0.99);
    }
    
    .faq-question span {
        padding-right: 0.8rem;
    }
    
    .faq-answer p {
        padding: 1.3rem 1rem;
        font-size: 1rem;
        line-height: 1.8;
    }

    .support-cta {
        margin-top: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .support-content {
        gap: 1.2rem;
    }
    
    .support-icon i {
        font-size: 2.5rem;
    }
    
    .support-text {
        padding: 0 0.5rem;
    }
    
    .support-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .support-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    
    .support-btn {
        padding: 1.1rem 1.8rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    .nav {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .main-content {
        margin-top: 60px;
        padding-top: 0.8rem; 
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .mixing-section {
        padding: 0 0 1.2rem 0; 
    }
    
    .mix-box {
        padding: 1rem;
        margin: 0; 
        max-width: none;
        width: 100%; 
    }
    
    .input-group {
        margin-bottom: 1.2rem;
    }
    
    .input-group label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .crypto-select, .delay-select, .address-input, .amount-input {
        padding: 16px; 
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .amount-input {
        width: 60% !important;
        max-width: 180px;
        box-sizing: border-box;
    }
    
    .add-address-btn {
        padding: 16px 20px;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .unified-slider::-webkit-slider-thumb {
        width: 18px;
        height: 18px;
        margin-top: -2px;
    }
    
    .unified-slider::-moz-range-thumb {
        width: 18px;
        height: 18px;
        margin-top: -2px;
    }
    
    .percentage-displays {
        font-size: 0.75rem;
        height: 14px;
        margin-bottom: 10px;
    }
    
    .percentage-value {
        font-size: 0.75rem;
        padding: 0px 5px;
        border-radius: 3px;
    }
    
    .percentage-value::before {
        top: -4px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 4px solid #3498db;
    }
    
    .continue-btn {
        padding: 20px;
        font-size: 1.3rem;
        border-radius: 8px;
    }
    
    .distribution-summary {
        padding: 0.8rem; 
        gap: 0.8rem; 
    }
    
    .total-crypto {
        font-size: 1rem; 
    }

    .fee-display {
        padding: 0.8rem 0; 
    }

    .feature-card,
    .step-card,
    .guarantee-card {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .feature-card i,
    .guarantee-card i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-card h3,
    .step-card h3,
    .guarantee-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p,
    .step-card p,
    .guarantee-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        top: -8px;
        font-size: 1.1rem;
    }
    
    .features-section,
    .how-it-works-section,
    .guarantees-section,
    .about-mission-section,
    .about-stats-section {
        padding: 1.2rem 0; 
    }
    
    .features-grid,
    .steps-grid,
    .guarantees-grid {
        gap: 1.2rem;
    }

    .footer {
        padding: 1rem 0 0.5rem; 
        margin-top: 0.5rem; 
    }

    .footer-section:last-child {
        text-align: left;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 1rem;
    }

    .confirmation-section {
        padding: 0 0 1.2rem 0; 
    }
    
    .confirmation-header {
        margin-bottom: 1.5rem; 
    }
    
    .confirmation-subtitle {
        font-size: 0.95rem; 
        margin-top: 1rem;
    }
    
    .confirmation-card {
        margin-bottom: 0.5rem; 
    }
    
    .card-header {
        padding: 1rem; 
        gap: 0.7rem; /
    }
    
    .card-header i {
        font-size: 1.1rem; 
    }
    
    .card-header h2 {
        font-size: 1.1rem; 
    }
    
    .card-body {
        padding: 0.6rem 1rem 1rem 1rem; 
    }
    
    .detail-row {
        padding: 1rem 0; 
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .detail-label {
        font-size: 0.95rem; 
        flex-shrink: 0;
        max-width: 50%;
    }
    
    .detail-value {
        font-size: 1rem; 
        text-align: right;
        word-break: break-word;
    }
    
    .address-item {
        display: block;
        padding: 1rem 0;
    }
    
    .address-info {
        display: block;
    }
    
    .address-value {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .address-amounts-wrapper {
        margin-top: 0.5rem;
        flex-direction: column;
        gap: 0.7rem;
        align-items: stretch;
    }
    
    .amount-info {
        display: flex;
        gap: 0.5rem;
        align-items: baseline;
    }
    
    .amount-crypto {
        font-size: 1.1rem;
    }
    
    .amount-fiat {
        font-size: 0.9rem;
    }
    
    .delay-info {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .delay-label {
        order: 1;
        flex-shrink: 0;
    }
    
    .delay-input {
        order: 2;
        width: 90px;
        padding: 0.5rem;
        font-size: 1rem;
    }

    #deposit-blocks-container {
        gap: 0.3rem;
    }
    
    .deposit-block:not(:first-child) {
        padding-top: 0.3rem;
    }
    
    .deposit-block-header h3 {
        font-size: 0.95rem;
    }
    
    .remove-deposit-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .add-deposit-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
        margin: 0.4rem auto 1.4rem auto;
    }
    
    .deposit-address {
        padding: 1.2rem; 
        padding-right: 3.5rem;
        font-size: 0.85rem; 
        line-height: 1.4;
    }
    
    .copy-button {
        right: 0.4rem;
        font-size: 1rem;
        padding: 0.3rem;
    }
    
    .amount-item {
        padding: 1rem; 
    }
    
    .amount-label {
        font-size: 0.95rem;
    }
    
    .amount-value {
        font-size: 1.2rem;
    }
    
    .deposit-info {
        margin-bottom: 1.2rem; 
        display: block; 
    }
    
    .deposit-fields {
        margin-bottom: 1.5rem;
    }
    
    .qr-code-container {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .deposit-instructions {
        padding: 1rem; 
    }
    
    .deposit-instructions h3 {
        font-size: 1.2rem;
    }
    
    .deposit-instructions li {
        padding: 0.7rem 0; 
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 2rem;
    }
    
    .security-reminder {
        padding: 1.2rem; 
        margin: 1.2rem 0; 
    }
    
    .security-header {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .security-content h3 {
        font-size: 1.1rem;
    }
    
    .security-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .btn-secondary, .btn-primary {
        padding: 18px 24px;
        font-size: 1.1rem;
    }
    
    .processing-steps {
        padding: 1.2rem 0; 
    }
    
    .steps-timeline {
        gap: 0.25rem; 
    }
    
    .step {
        padding: 1.2rem; 
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .faq-section {
        padding: 0 0 1rem 0; 
    }
    
    .faq-header {
        margin-bottom: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding: 0 0.2rem;
    }
    
    .faq-category {
        margin-bottom: 1.5rem;
    }
    
    .category-header {
        font-size: 1.1rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding: 0 0 0.4rem;
        flex-direction: column;
        align-items: center;
    }
    
    .category-header h2 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .category-header i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .faq-items {
        gap: 0.5rem;
    }
    
    .faq-item {
        border-radius: 8px;
        margin: 0;
    }
    
    .faq-question {
        padding: 1.2rem 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
        gap: 0.6rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(52, 152, 219, 0.2);
    }
    
    .faq-question:active {
        background: rgba(52, 152, 219, 0.1);
        transform: scale(0.99);
    }
    
    .faq-question span {
        padding-right: 0.6rem;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1.2rem 0.8rem;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .support-cta {
        margin-top: 1rem;
        padding: 0 0.2rem;
    }
    
    .support-content {
        gap: 1rem;
    }
    
    .support-icon i {
        font-size: 2.2rem;
    }
    
    .support-text {
        padding: 0 0.2rem;
    }
    
    .support-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .support-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .support-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .nav {
        padding: 0.5rem 0.6rem;
    }
    
    .main-content {
        margin-top: 55px;
        padding-top: 0.8rem; 
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem; 
    }
    
    .mixing-section {
        padding: 0 0 1rem 0; 
    }
    
    .mix-box {
        padding: 0.8rem;
        max-width: none; 
        width: 100%; 
        margin: 0; 
    }
    
    .crypto-select, .address-input, .amount-input {
        padding: 14px;
        font-size: 1rem;
    }

    .amount-input {
        width: 55% !important;
        max-width: 160px;
        box-sizing: border-box;
    }
    
    .continue-btn {
        padding: 18px;
        font-size: 1.2rem;
    }

    .unified-slider::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
        margin-top: -1px;
    }
    
    .unified-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        margin-top: -1px;
    }
    
    .percentage-displays {
        font-size: 0.7rem;
        height: 12px;
        margin-bottom: 8px;
    }
    
    .percentage-value {
        font-size: 0.7rem;
        padding: 0px 4px;
        border-radius: 2px;
    }
    
    .percentage-value::before {
        top: -3px;
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-bottom: 3px solid #3498db;
    }
    
    .feature-card,
    .step-card,
    .guarantee-card {
        padding: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }

    .distribution-summary {
        padding: 0.6rem; 
        gap: 0.6rem;
    }
    
    .fee-display {
        padding: 0.6rem 0; 
    }

    .confirmation-section {
        padding: 0 0 1rem 0; 
    }
    
    .confirmation-header {
        margin-bottom: 1.2rem; 
    }
    
    .confirmation-subtitle {
        font-size: 0.9rem; 
    }
    
    .confirmation-card {
        margin-bottom: 0.5rem; 
    }
    
    .card-header {
        padding: 0.8rem; 
        gap: 0.6rem;
    }
    
    .card-header i {
        font-size: 1rem; 
    }
    
    .card-header h2 {
        font-size: 1rem; 
    }
    
    .card-body {
        padding: 0.5rem 0.8rem 0.8rem 0.8rem; 
    }
    
    .detail-row {
        padding: 0.8rem 0; 
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.8rem; 
    }
    
    .detail-label {
        font-size: 0.85rem; 
        flex-shrink: 0;
        max-width: 45%; 
    }
    
    .detail-value {
        font-size: 0.9rem; 
        text-align: right;
        word-break: break-word;
    }
    
    .address-item {
        padding: 0.8rem 0;
    }
    
    .address-value {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }
    
    .address-amounts-wrapper {
        margin-top: 0.4rem;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .amount-info {
        gap: 0.4rem;
    }
    
    .amount-crypto {
        font-size: 1rem;
    }
    
    .amount-fiat {
        font-size: 0.8rem;
    }
    
    .delay-info {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.4rem;
    }
    
    .delay-label {
        font-size: 0.8rem;
        order: 1;
        flex-shrink: 0;
    }
    
    .delay-input {
        order: 2;
        width: 80px;
        padding: 0.4rem;
        font-size: 0.9rem;
    }

    #deposit-blocks-container {
        gap: 0.2rem;
    }
    
    .deposit-block:not(:first-child) {
        padding-top: 0.2rem;
    }
    
    .deposit-block-header h3 {
        font-size: 0.9rem;
    }
    
    .remove-deposit-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .add-deposit-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin: 0.3rem auto 1.2rem auto;
    }
    
    .deposit-address {
        padding: 1rem; 
        padding-right: 3rem;
        font-size: 0.8rem; 
        line-height: 1.3;
    }
    
    .copy-button {
        right: 0.3rem;
        font-size: 0.9rem;
        padding: 0.25rem;
    }
    
    .amount-item {
        padding: 0.8rem; 
    }
    
    .amount-label {
        font-size: 0.85rem; 
    }
    
    .amount-value {
        font-size: 1rem; 
    }
    
    .deposit-info {
        margin-bottom: 1rem; 
        display: block; 
    }
    
    .deposit-fields {
        margin-bottom: 1.2rem;
    }
    
    .qr-code-container {
        text-align: center;
        margin-bottom: 0.6rem;
    }
    
    .deposit-instructions {
        padding: 0.8rem; 
    }
    
    .deposit-instructions li {
        padding: 0.6rem 0; 
        padding-left: 1.5rem;
    }
    
    .security-reminder {
        padding: 1rem; 
        margin: 1rem 0; 
    }
    
    .security-header {
        justify-content: center;
        margin-bottom: 0.8rem;
    }
    
    .processing-steps {
        padding: 1rem 0; 
    }
    
    .steps-timeline {
        gap: 0.2rem; 
    }
    
    .step {
        padding: 1rem;
    }
}

.home-page .footer {
    margin-top: 2.5rem !important; 
}

@media (max-width: 768px) {
    .home-page .footer {
        margin-top: 2rem !important;
    }
}

@media (max-width: 480px) {
    .home-page .footer {
        margin-top: 2.5rem !important;
    }
}

.about-hero-section {
    padding: 0 0 1rem 0;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-subtitle {
    color: #bdc3c7;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.about-mission-section {
    padding: 1rem 0 2rem 0;
    background: rgba(44, 62, 80, 0.5);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    color: #3498db;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: #bdc3c7;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 10rem;
    color: #3498db;
    opacity: 0.8;
}

.about-stats-section {
    padding: 2rem 0;
    background: rgba(44, 62, 80, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #3498db;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #bdc3c7;
    font-size: 1rem;
}

.about-why-section {
    padding: 3rem 0;
    background: rgba(44, 62, 80, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: #3498db;
}

.why-card h3 {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: #bdc3c7;
    line-height: 1.6;
}

.about-tech-section {
    padding: 3rem 0;
}

.tech-content {
    max-width: 900px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(52, 73, 94, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.tech-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.tech-text h3 {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tech-text p {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
}

.about-values-section {
    padding: 3rem 0;
    background: rgba(44, 62, 80, 0.5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-number {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(52, 152, 219, 0.2);
    position: absolute;
    top: -10px;
    right: 10px;
}

.value-card h3 {
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: #bdc3c7;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ecf0f1;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.cta-btn i {
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.cta-btn-secondary:hover {
    background: rgba(52, 152, 219, 0.1);
    border-color: #2980b9;
    color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 0 0 0.5rem 0;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-mission-section {
        padding: 1.5rem 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mission-content h2 {
        font-size: 1.6rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
    
    .mission-icon {
        order: -1;
    }
    
    .mission-icon i {
        font-size: 8rem;
    }
    
    .about-stats-section {
        padding: 1.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .about-why-section {
        padding: 2rem 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .about-tech-section {
        padding: 2rem 0;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-item {
        padding: 1.2rem;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
    
    .about-values-section {
        padding: 2rem 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-number {
        font-size: 3rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .about-cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card,
    .value-card {
        padding: 1.2rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

.privacy-section {
    padding: 0 0 2rem 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.privacy-intro p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-intro .last-updated {
    color: #ecf0f1;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

.privacy-block {
    background: rgba(52, 73, 94, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.privacy-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

.privacy-block h2 {
    color: #ecf0f1;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-right: 60px;
}

.privacy-block p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-block ul li {
    color: #bdc3c7;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(52, 73, 94, 0.8);
    line-height: 1.6;
}

.privacy-block ul li:last-child {
    border-bottom: none;
}

.privacy-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
}

.privacy-block ul li strong {
    color: #ecf0f1;
}

.privacy-highlight {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.privacy-highlight i {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.privacy-highlight p {
    color: #ecf0f1;
    margin: 0;
    line-height: 1.6;
}

.privacy-contact {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.1));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.privacy-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-contact-icon i {
    font-size: 2.5rem;
    color: #3498db;
}

.privacy-contact-text {
    flex: 1;
}

.privacy-contact-text h3 {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.privacy-contact-text p {
    color: #bdc3c7;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.privacy-contact-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.footer-privacy-link {
    color: #bdc3c7;
    text-decoration: underline;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-privacy-link:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .privacy-intro,
    .privacy-block {
        padding: 1.5rem;
    }
    
    .privacy-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        margin-bottom: 0;
        width: 40px;
        height: 40px;
    }
    
    .privacy-icon i {
        font-size: 1.2rem;
    }
    
    .privacy-block h2 {
        padding-right: 50px;
        font-size: 1.2rem;
    }
    
    .privacy-contact {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .privacy-contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .privacy-contact-icon i {
        font-size: 2rem;
    }
    
    .privacy-highlight {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #ecf0f1;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: inherit;
    font-family: inherit;
    position: relative;
    top: -3px;
}

.lang-btn:hover {
    color: #3498db;
}

.lang-code {
    font-weight: 500;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2c3e50;
    border: 1px solid #34495e;
    border-radius: 8px;
    min-width: 240px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transform-origin: top right;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    z-index: 1000;
    overflow: hidden;
    margin-top: 5px;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ecf0f1;
    font-weight: 500;
    border-radius: 6px;
    font-size: 0.85rem;
}

.lang-option:hover {
    background: #34495e;
}

.lang-option.active {
    background: #34495e;
    color: #3498db;
}

.mobile-lang-switcher {
    padding: 0;
    border-top: none;
    margin-top: 0;
    order: 10; 
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ecf0f1;
    cursor: pointer;
    padding: 1rem 1.2rem 1rem calc(1.2rem + 0.5rem);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mobile-lang-btn:hover {
    color: #3498db;
}

.mobile-lang-btn > i.fa-globe {
    display: none;
}

.mobile-lang-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.mobile-lang-switcher.active .mobile-lang-arrow {
    transform: rotate(180deg);
}

.mobile-lang-dropdown {
    display: none;
    background: #1a252f;
    border-radius: 8px;
    margin: 0.5rem 1rem;
    overflow: hidden;
    border: 1px solid #34495e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
}

.mobile-lang-switcher.active .mobile-lang-dropdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ecf0f1;
    border-radius: 6px;
    font-size: 0.9rem;
}

.mobile-lang-option:hover {
    background: #2c3e50;
}

.mobile-lang-option.active {
    background: #2c3e50;
    color: #3498db;
}

@media (max-width: 350px) {
    .lang-btn {
        padding: 0.3rem 0.5rem;
    }
    
    .lang-code {
        font-size: 0.85rem;
    }
}

.rtl-page {
    direction: rtl;
    text-align: right;
}

.rtl-page .privacy-icon {
    right: auto;
    left: 2rem;
}

.rtl-page .privacy-block h2 {
    padding-right: 0;
    padding-left: 60px;
}

.rtl-page .privacy-highlight {
    padding-right: 0;
    padding-left: 2.5rem;
}

.rtl-page .privacy-highlight i {
    right: auto;
    left: 1rem;
}

.rtl-page .privacy-block ul li {
    padding-right: 0;
    padding-left: 1.5rem;
}

.rtl-page .privacy-block ul li::before {
    right: auto;
    left: 0;
}

.rtl-page .nav-left,
.rtl-page .nav-right {
    flex-direction: row-reverse;
}

.rtl-page .footer-links {
    justify-content: flex-end;
}

.rtl-page .mobile-nav-link i,
.rtl-page .mobile-lang-btn i,
.rtl-page .mobile-currency-btn i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.rtl-page .lang-arrow,
.rtl-page .currency-arrow {
    margin-left: 0;
    margin-right: 0.3rem;
}

.rtl-page .currency-flag {
    margin-right: 0;
    margin-left: 0.3rem;
}

.rtl-page .percentage-displays {
    direction: ltr;
    text-align: left;
}

.rtl-page .slider-scale-container {
    direction: ltr;
}

.rtl-page .slider-track {
    direction: ltr;
}

.rtl-page .deposit-slider-scale-container {
    direction: ltr;
}

.rtl-page .deposit-slider-track {
    direction: ltr;
}

.rtl-page .deposit-percentage-displays {
    direction: ltr;
    text-align: left;
}