/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Allow selection only in input fields */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #36454f, #5a6b76, #8a969e, #b1b3b3);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
    overflow-y: auto !important;
    
    /* Идеальный плавный скролл */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    
    /* Prevent context menu */
    -webkit-user-callout: none;
    -webkit-touch-callout: none;
    
    /* Prevent pull-to-refresh on mobile */
    overscroll-behavior-y: none;
}

uni-page-body {
    min-height: 100vh;
    background-image: linear-gradient(180deg, #36454f, #5a6b76, #8a969e, #b1b3b3);
    overflow-x: hidden;
}

.page {
    min-height: 100vh;
    padding-bottom: 60px;
    overflow-x: hidden;
    overflow-y: visible !important;
}

.page-content {
    padding: 15px;
    overflow-x: hidden;
    overflow-y: visible !important;
}

/* Disable zoom on mobile */
html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden !important;
}

/* Video player styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(54, 69, 79, 1);
    transform: scale(1.1);
}

.play-btn i {
    margin-left: 5px;
}

/* Disable video controls on mobile */
.banner-video::-webkit-media-controls {
    display: none !important;
}

.banner-video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Install button */
.install-btn {
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #36454f;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none; /* Hidden by default, shown via JS */
}

.install-btn i { 
    margin-top: 2px; 
}

/* Hide install button on iOS */
@supports (-webkit-touch-callout: none) {
    .install-btn {
        display: none !important;
    }
}

/* Custom modal styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    background: linear-gradient(135deg, #5a6b76, #8a969e);
    border-radius: 15px;
    width: 90%;
    max-width: 350px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.custom-modal-header {
    padding: 15px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
    text-align: center;
    background: #36454f;
    color: white;
}

.custom-modal-body {
    padding: 20px;
    color: #ffffff;
}

.custom-modal-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.custom-modal-btn {
    background: #36454f;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

/* Loading overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #36454f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    font-size: 14px;
}

/* Навбар стили - ОБНОВЛЕННЫЙ ЦВЕТ */
.u-navbar {
    position: relative;
    width: 100%;
}

.u-navbar--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.u-navbar__placeholder {
    height: 44px;
}

.u-navbar__content {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 15px;
    background: #36454f;
    position: relative;
}

/* Исправленные стили для навбара с кнопкой назад */
.u-navbar__content__back {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.u-navbar__content__logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.u-navbar__content__logo img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.u-navbar__content__title {
    text-align: center;
    font-size: 16px;
    color: #FFF;
    font-weight: bold;
    flex: 1;
    padding: 0 80px;
}

/* Иконки */
.u-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* УДАЛЕН topNull блок и связанные стили */
.topNull {
    display: none;
}

.conWrap {
    width: 95%;
    max-width: 400px;
    margin: 20px auto 0;
    overflow-x: hidden;
    overflow-y: visible !important;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}

/* Карточки */
.card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.box-black {
    background: rgba(0, 0, 0, 0.2);
}

.radius {
    border-radius: 10px;
}

/* Отступы */
.padding {
    padding: 15px;
}

.padding-lr {
    padding-left: 15px;
    padding-right: 15px;
}

.padding-tb {
    padding-top: 15px;
    padding-bottom: 15px;
}

.padding-top {
    padding-top: 15px;
}

.padding-bottom {
    padding-bottom: 15px;
}

.padding-top-sm {
    padding-top: 10px;
}

/* Маргины */
.margin-top {
    margin-top: 15px;
}

.margin-bottom {
    margin-bottom: 15px;
}

.margin-top-sm {
    margin-top: 10px;
}

.margin-top-xs {
    margin-top: 5px;
}

.margin-top-xl {
    margin-top: 30px;
}

.margin-left-xs {
    margin-left: 5px;
}

/* Flex стили */
.flex {
    display: flex;
}

.flex1 {
    flex: 1;
}

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

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.fc {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Текст стили */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
    font-size: 16px;
}

.text-gray {
    color: #ccc;
    font-size: 14px;
}

.text-bold {
    font-weight: bold;
}

.text-xl {
    font-size: 18px;
}

.text-xxl {
    font-size: 24px;
}

.text-cyan {
    color: #36454f;
}

.color-de {
    color: #dedede;
}

/* Цвета для баланса и финансов */
.color-up {
    color: #4CAF50 !important; /* Зеленый для пополнения */
}

.color-down {
    color: #ff4d4f !important; /* Красный для вывода */
}

.color-balance {
    color: #FFD700 !important; /* Желтый для балансов */
}

/* Grid */
.grid.col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.grid.col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.pd {
    padding: 15px;
    box-sizing: border-box;
}

/* Кнопки */
.pro-btn {
    background: #36454f;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-top: 15px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.pro-btn-none {
    opacity: 0.5;
    pointer-events: none;
}

.btn .fc {
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: transparent;
    color: #e3e3e3;
}

.navWrap > div {
    color: #e3e3e3;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.2);
    border-left: 0;
    border-bottom: 0;
    padding: 10px 0;
}

.navWrap > div:nth-child(2) {
    border-right: 0;
}

/* Loading */
.u-loading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.u-loading-icon__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.u-loading-icon__text {
    font-size: 14px;
    color: #fff;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tabbar - ИСПРАВЛЕННЫЙ ДЛЯ РАВНОМЕРНОГО РАСПРЕДЕЛЕНИЯ */
.uni-tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #36454f;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    display: none;
    width: 100%;
}

.uni-tabbar__bd {
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
    padding: 0;
}

.uni-tabbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #cccccc;
    cursor: pointer;
    height: 100%;
    padding: 5px 0;
    min-width: 0;
    width: 25%;
}

.uni-tabbar__item--active {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.uni-tabbar__item--active .uni-tabbar__icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.uni-tabbar__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uni-tabbar__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.uni-tabbar__label {
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

/* Уведомления - ОБНОВЛЕННЫЕ ЦВЕТА */
.notice-section {
    margin: 15px 0;
}

.notice-bar {
    display: flex;
    align-items: center;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 8px;
    padding: 12px 15px;
    border-left: 3px solid #FFD700;
}

.notice-icon {
    font-size: 18px;
    color: #FFD700;
    margin-right: 10px;
}

.notice-content {
    flex: 1;
    overflow: hidden;
}

.notice-text {
    color: #ffffff;
    font-size: 12px;
    white-space: nowrap;
    animation: marquee 21.85s linear infinite;
    padding-left: 100%;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Баланс */
.balance-section {
    margin: 15px 0;
}

.balance-card {
    background: rgba(54, 69, 79, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: white;
    border-left: 3px solid #FFD700;
}

.balance-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffffff;
}

.balance-amount {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFD700;
}

.balance-profit {
    font-size: 12px;
    color: #cccccc;
}

/* Действия */
.action-section {
    margin: 15px 0;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.action-item {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px 5px;
    border-radius: 10px;
    text-align: center;
    color: white;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.action-icon {
    font-size: 20px;
    margin-bottom: 5px;
    color: #FFD700;
}

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

/* Попап - ОБНОВЛЕННЫЕ ЦВЕТА */
.pop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.pop-content {
    background: linear-gradient(135deg, #5a6b76, #8a969e);
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    overflow: hidden;
}

.pop-header {
    padding: 15px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
    background: #36454f;
    color: white;
}

.pop-body {
    padding: 15px;
    color: #ffffff;
}

.pop-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: right;
}

.pop-footer button {
    background: #36454f;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* Границы */
.border-bottom {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* СТИЛИ ДЛЯ СЕКЦИЙ */
.section {
    display: none;
    overflow: visible !important;
}

.section.active {
    display: block;
    overflow: visible !important;
}

/* Баннер - ОБНОВЛЕННЫЙ ЦВЕТ */
.banner-section {
    background: #36454f;
    width: 100%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    margin-top: 0;
}

.banner {
    width: 100%;
    height: 150px;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигационные иконки */
.nav-section {
    background-color: rgba(54, 69, 79, 0.8);
    padding: 15px 20px 25px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    border-left: 3px solid #FFD700;
}

.nav-grid {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
    gap: 8px;
    justify-content: space-between;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    margin-bottom: 8px;
    text-decoration: none;
}

.nav-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.nav-text {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

/* Auto Quantification */
.quantum-action {
    text-align: center;
    padding: 20px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    margin: 15px 0;
    border-left: 3px solid #4CAF50;
}

.quant-btn {
    background: #36454f;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(54, 69, 79, 0.3);
    width: 100%;
    max-width: 300px;
}

.quant-btn:hover {
    background: #5a6b76;
    transform: translateY(-2px);
}

.signals {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.signal {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #36454f;
}

.signal.used {
    background: #666;
}

/* Квантовая статистика */
.quantum-section {
    padding: 15px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    margin: 15px 0;
}

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

.quantum-title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* Контейнер для квантовых карточек */
.quantum-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #36454f rgba(255,255,255,0.1);
}

.quantum-scroll-container::-webkit-scrollbar {
    height: 5px;
}

.quantum-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.quantum-scroll-container::-webkit-scrollbar-thumb {
    background: #36454f;
    border-radius: 5px;
}

.quantum-scroll {
    display: inline-flex;
    gap: 10px;
}

/* Бегущая строка */
.notice-section {
    margin: 15px 0;
}

.notice-bar {
    display: flex;
    align-items: center;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 8px;
    padding: 12px 15px;
}

.notice-icon {
    font-size: 18px;
    color: #FFD700;
    margin-right: 10px;
}

.notice-content {
    flex: 1;
    overflow: hidden;
}

.notice-text {
    color: #ffffff;
    font-size: 12px;
    white-space: nowrap;
    animation: marquee 21.85s linear infinite;
    padding-left: 100%;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Реферальная ссылка */
.referral-section {
    padding: 15px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    margin: 15px 0;
    border-left: 3px solid #4CAF50;
}

.referral-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.referral-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.referral-icon {
    font-size: 24px;
    color: #FFD700;
}

.referral-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.referral-text p {
    color: #ccc;
    font-size: 14px;
}

/* Кнопка копирования */
.copy-btn {
    background: #36454f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-btn:hover {
    background: #5a6b76;
}

/* =========================================== */
/* НОВЫЕ СТИЛИ ДЛЯ ВЕРТИКАЛЬНОЙ КАРУСЕЛИ VIP */
/* =========================================== */

.vip-section {
    padding: 15px;
    background: transparent;
    border-radius: 10px;
    margin: 15px 0;
}

.section-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

/* ОБНОВЛЕННЫЙ ВЕРТИКАЛЬНЫЙ СЛАЙДЕР VIP */
.custom-vip-carousel {
    position: relative;
    width: 345px;
    height: 150px; /* 130px карточка + 20px предпросмотр следующей */
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto 15px;
    background: rgba(0, 0, 0, 0.1);
    cursor: grab;
}

.custom-vip-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    height: calc(130px * 6 + 20px); /* 6 карточек по 130px + 20px предпросмотр */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.vip-slide {
    flex: 0 0 130px; /* высота карточки */
    height: 130px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    position: relative;
    transition: opacity 0.3s ease;
}

.vip-slide.active .vip-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.vip-card {
    width: 345px;
    height: 130px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    transition: box-shadow 0.3s ease;
}

.vip-title {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

.vip-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    z-index: 2;
}

.vip-image {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vip-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Кнопки навигации (скрыты) */
.carousel-btn {
    display: none !important;
}

/* Индикаторы (скрыты) */
.carousel-indicators {
    display: none !important;
}

.vip-description {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 15px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    border-left: 3px solid #FFD700;
}

/* Блок с деталями VIP уровня */
.vip-details {
    margin-top: 10px;
    padding: 15px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    border-left: 3px solid #4CAF50;
}

.details-content {
    color: white;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.detail-item {
    margin-bottom: 8px;
    display: block;
}

.detail-label {
    color: #FFD700;
    font-weight: bold;
}

.detail-value {
    color: #ffffff;
    margin-left: 5px;
}

/* Анимация для переключения слайдов */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vip-slide.sliding-up {
    animation: slideUp 0.3s ease;
}

.vip-slide.sliding-down {
    animation: slideDown 0.3s ease;
}

/* Адаптация для мобильных экранов */
@media (max-width: 480px) {
    .custom-vip-carousel {
        width: 100%;
        max-width: 345px;
        height: 150px;
    }
    
    .vip-card {
        width: 100%;
        max-width: 345px;
        height: 130px;
    }
    
    .vip-title {
        font-size: 22px;
    }
    
    .vip-image {
        width: 90px;
        height: 90px;
    }
    
    .vip-description,
    .vip-details {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 375px) {
    .custom-vip-carousel {
        height: 145px;
    }
    
    .vip-card {
        height: 125px;
    }
    
    .vip-title {
        font-size: 20px;
    }
    
    .vip-image {
        width: 85px;
        height: 85px;
        right: 15px;
    }
    
    .vip-status {
        font-size: 13px;
    }
    
    .vip-slide {
        flex: 0 0 125px;
        height: 125px;
    }
    
    .carousel-track {
        height: calc(125px * 6 + 20px);
    }
}

/* Дополнительные стили */
.quantum-signal {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #36454f;
    margin: 0 5px;
}

.quantum-signal.used {
    background: #666;
}

.vip-level-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.referral-stat {
    background: rgba(54, 69, 79, 0.8);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.transaction-history {
    max-height: 300px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(54, 69, 79, 0.8);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.profile-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(54, 69, 79, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid white;
    margin-right: 15px;
}

/* Криптовалютные блоки */
.crypto-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
}

.crypto-item {
    padding: 10px 0 10px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.crypto-item:last-child {
    border-bottom: none;
}

.crypto-info {
    display: flex;
    align-items: center;
}

.crypto-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    overflow: hidden;
}

.crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crypto-name {
    color: white;
    font-weight: bold;
}

.crypto-pair {
    color: #ccc;
    font-size: 12px;
    margin-left: 5px;
}

.crypto-price {
    color: white;
    font-weight: bold;
    margin-right: 10px;
}

.crypto-change {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 10px;
}

.change-positive {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.change-negative {
    background: rgba(255, 77, 79, 0.2);
    color: #ff4d4f;
}

/* Блок партнеров */
.partners-section {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.partners-image {
    width: 100%;
    border-radius: 10px;
}

/* Стили для инпутов с линией */
.input-line {
    background: transparent;
    border: none;
    border-bottom: 2px solid #4CAF50;
    border-radius: 0;
    padding: 12px 40px 12px 0;
    color: white;
    font-size: 16px;
    width: 100%;
    outline: none;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.input-line::placeholder {
    color: #ccc;
}

.input-line:focus {
    border-bottom-color: #4CAF50;
    border-bottom-width: 3px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

/* Стили для иконок глазка */
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
    z-index: 10;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle i {
    display: block;
    line-height: 1;
}

/* Стили для ошибок */
.error {
    color: #ff4d4f;
    text-align: center;
    padding: 20px;
    background: rgba(255, 77, 79, 0.1);
    border-radius: 8px;
    margin: 10px 0;
}

/* Стили для страниц авторизации */
.login-section,
.register-section {
    background: linear-gradient(180deg, #36454f, #5a6b76, #8a969e, #b1b3b3);
    min-height: 100vh;
    padding: 20px 15px;
    overflow-x: hidden;
}

.auth-container {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 40px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title h1 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.auth-title p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.auth-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #36454f;
    box-shadow: 0 0 0 3px rgba(54, 69, 79, 0.1);
}

.auth-button {
    width: 100%;
    background: #36454f;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-button:hover {
    background: #5a6b76;
    transform: translateY(-2px);
}

.auth-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.auth-link p {
    color: #666;
    font-size: 14px;
}

.auth-link a {
    color: #36454f;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Стили для профиля в mine */
.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-info-compact {
    flex: 1;
}

.profile-vip-badge {
    background: rgba(54, 69, 79, 0.8);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 5px;
    color: #FFD700;
    font-weight: bold;
}

.profile-id-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-id-btn {
    background: #36454f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    cursor: pointer;
}

.profile-id {
    font-size: 14px;
    color: #ccc;
}

/* Стили для новых страниц */
/* Company page */
.company-content {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.company-content h2 {
    color: #FFD700;
    margin: 20px 0 10px;
    font-size: 18px;
}

.company-content p {
    margin-bottom: 10px;
    color: #ffffff;
}

.company-logo {
    text-align: center;
    margin: 20px 0;
}

.company-logo img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
}

/* Invite page */
.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

/* Team page */
.chart-container {
    width: 100%;
    height: 250px;
    margin: 20px 0;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid #FFD700;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.team-stat {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.team-stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.team-stat-label {
    font-size: 12px;
    color: #ccc;
}

.referral-list {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.referral-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.referral-id {
    color: white;
    font-size: 14px;
}

.referral-email {
    color: #ccc;
    font-size: 12px;
}

.referral-balance {
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
}

/* Rules page */
.rules-content {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

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

.rules-section h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.rules-list {
    list-style: none;
    padding-left: 0;
}

.rules-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    color: #ffffff;
}

.rules-list li:before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
}

/* Компактные стили для assets */
.wallet-actions-compact {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 10px;
}

.wallet-action-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    padding: 10px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    justify-content: center;
}

.wallet-action-compact:hover {
    background: rgba(90, 107, 118, 0.8);
    transform: translateY(-2px);
}

.wallet-action-compact img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
}

.wallet-text-compact {
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.transaction-categories-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.transaction-category-compact {
    background: rgba(54, 69, 79, 0.8);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transaction-category-name-compact {
    color: #ccc;
    font-size: 11px;
    margin-bottom: 5px;
}

.transaction-category-amount-compact {
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
}

.transaction-list-compact {
    margin-top: 15px;
    max-height: 200px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.transaction-type {
    color: white;
    font-size: 14px;
}

.transaction-date {
    color: #ccc;
    font-size: 12px;
}

.transaction-amount {
    font-weight: bold;
    font-size: 14px;
}

/* Стили для withdraw страницы */
.network-selection {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ff4d4f;
}

.network-options {
    display: flex;
    gap: 10px;
}

.network-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.network-option.active {
    border-color: #36454f;
    background: rgba(54, 69, 79, 0.5);
}

.network-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.network-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-name {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.network-check {
    color: #4CAF50;
    font-size: 12px;
    opacity: 0;
}

.network-option.active .network-check {
    opacity: 1;
}

.wallet-address-section {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ff4d4f;
}

.amount-section {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ff4d4f;
}

.balance-info {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ff4d4f;
}

.balance-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-line:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.password-section {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ff4d4f;
}

.withdrawals-list {
    max-height: 200px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.confirm-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Стили для админ панели */
.admin-container {
    padding-bottom: 20px;
}

.admin-stats {
    display: flex;
    gap: 15px;
}

.admin-stat {
    text-align: center;
    padding: 10px 15px;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 8px;
    min-width: 80px;
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.admin-stat-label {
    font-size: 11px;
    color: #ccc;
}

.admin-nav {
    display: flex;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.admin-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 5px;
    cursor: pointer;
    color: #ccc;
    font-size: 12px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.admin-nav-item.active {
    color: white;
    background: rgba(90, 107, 118, 0.8);
    border-bottom-color: #FFD700;
}

.admin-nav-item i {
    font-size: 18px;
    margin-bottom: 5px;
    color: #FFD700;
}

.admin-tabs {
    position: relative;
}

.admin-tab {
    display: none;
}

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

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-input-small {
    padding: 6px 10px;
    border: 1px solid rgba(54, 69, 79, 0.5);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 12px;
    min-width: 150px;
}

.admin-select-small {
    padding: 6px 10px;
    border: 1px solid rgba(54, 69, 79, 0.5);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 12px;
    min-width: 120px;
}

.admin-btn-small {
    padding: 6px 12px;
    background: rgba(54, 69, 79, 0.7);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.admin-btn-small:hover {
    background: rgba(54, 69, 79, 0.9);
}

.admin-btn {
    padding: 10px 20px;
    background: #36454f;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.admin-btn:hover {
    background: #5a6b76;
    transform: translateY(-2px);
}

.admin-btn-success {
    padding: 10px 20px;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.admin-btn-danger {
    padding: 10px 20px;
    background: #ff4d4f;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.admin-table th {
    background: rgba(54, 69, 79, 0.8);
    color: white;
    padding: 10px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid rgba(54, 69, 79, 0.9);
}

.admin-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.admin-table tr:hover {
    background: rgba(54, 69, 79, 0.3);
}

.vip-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(54, 69, 79, 0.8);
    color: #FFD700;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.type-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    color: white;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.admin-input {
    padding: 10px;
    border: 1px solid rgba(54, 69, 79, 0.5);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 14px;
    margin-top: 5px;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.detail-label {
    font-weight: bold;
    color: #FFD700;
    min-width: 150px;
}

.detail-value {
    color: #ffffff;
    flex: 1;
}

.setting-group {
    margin-bottom: 15px;
}

.setting-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.withdrawal-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Адаптация для мобильных экранов */
@media (max-width: 480px) {
    .conWrap {
        width: 95%;
        max-width: none;
        margin: 20px auto 0;
    }
    
    .card {
        margin-bottom: 10px;
    }
    
    .padding {
        padding: 12px;
    }
    
    .balance-amount {
        font-size: 24px;
    }
    
    .nav-icon {
        width: 45px;
        height: 45px;
    }
    
    .nav-text {
        font-size: 12px;
    }
    
    .quant-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Адаптация для вертикальной карусели на мобильных */
    .custom-vip-carousel {
        height: 260px;
    }
    
    .vip-title {
        font-size: 28px;
    }
    
    .vip-image {
        width: 100px;
        height: 100px;
    }
    
    .pop-content {
        width: 95%;
    }
    
    .custom-modal-content {
        width: 95%;
    }
    
    .auth-container {
        padding: 10px;
    }
    
    .auth-form {
        padding: 20px 15px;
    }
    
    .form-group input {
        padding: 12px;
        font-size: 14px;
    }
    
    .auth-button {
        padding: 14px;
        font-size: 16px;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    /* Video adjustments for mobile */
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
    
    /* Компактные стили для мобильных */
    .wallet-action-compact {
        height: 70px;
        padding: 8px;
    }
    
    .wallet-action-compact img {
        width: 25px;
        height: 25px;
    }
    
    .transaction-category-compact {
        height: 60px;
        padding: 8px;
    }
    
    .transaction-category-name-compact {
        font-size: 10px;
    }
    
    .transaction-category-amount-compact {
        font-size: 12px;
    }
    
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .admin-table {
        font-size: 10px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 6px;
    }
}

@media (max-width: 375px) {
    .conWrap {
        width: 98%;
        margin: 15px auto 0;
    }
    
    .banner {
        height: 120px;
    }
    
    .balance-amount {
        font-size: 22px;
    }
    
    .nav-grid {
        gap: 5px;
    }
    
    .nav-item {
        width: 48%;
    }
    
    .wallet-action {
        padding: 10px;
    }
    
    .transaction-categories {
        grid-template-columns: 1fr;
    }
    
    .uni-tabbar__item {
        padding: 3px 0;
    }
    
    .uni-tabbar__icon {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
    }
    
    .uni-tabbar__label {
        font-size: 9px;
    }
    
    /* Video adjustments for small mobile */
    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Вертикальная карусель на очень маленьких экранах */
    .custom-vip-carousel {
        height: 240px;
    }
    
    .vip-card {
        padding: 15px;
    }
    
    .vip-title {
        font-size: 24px;
    }
    
    .vip-image {
        width: 90px;
        height: 90px;
    }
}

/* Гарантируем, что таббар не показывается на auth страницах */
body.auth-page .uni-tabbar {
    display: none !important;
}

/* Страницы быстрого доступа без таббара */
body.no-tabbar .uni-tabbar {
    display: none !important;
}

/* Улучшаем отображение иконок в навигации */
.nav-icon img,
.wallet-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Исправляем отступы для контента когда таббар скрыт */
.page.no-tabbar {
    padding-bottom: 0;
}

/* Утилиты */
.u-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Скрытие элементов */
[hidden] {
    display: none !important;
}

/* Фон для профиля */
.profile-bg {
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.9), rgba(90, 107, 118, 0.9));
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid #FFD700;
}

/* Стили для выделения текста */
.color-up {
    color: #4CAF50 !important;
}

.color-down {
    color: #ff4d4f !important;
}

.section-title-small {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
}
/* Добавьте эти стили в конец файла style.css, перед последней закрывающей скобкой */

/* Calendar стили для mine.js */
.calendar-section {
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid #FFD700;
}

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

.calendar-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.calendar-nav {
    display: flex;
    gap: 5px;
}

.calendar-nav button {
    background: #36454f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.calendar-nav button:hover {
    background: #5a6b76;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.calendar-day {
    text-align: center;
    padding: 8px 0;
    color: #ccc;
    font-size: 12px;
    font-weight: bold;
}

.calendar-date {
    text-align: center;
    padding: 8px 0;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.calendar-date:hover {
    background: rgba(54, 69, 79, 0.5);
}

.calendar-date.today {
    background: #36454f;
    color: white;
    font-weight: bold;
}

.calendar-date.other-month {
    color: #666;
    cursor: default;
}

.calendar-date.other-month:hover {
    background: transparent;
}

.calendar-time {
    text-align: center;
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

/* Настройки профиля */
.settings-list {
    margin-top: 15px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.setting-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 5px;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.setting-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.setting-name {
    font-size: 14px;
    flex: 1;
}

.setting-value {
    font-size: 12px;
    color: #FFD700;
    margin-left: 10px;
    text-align: right;
}

/* Кнопка выхода */
#logout-btn {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

#logout-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

/* Профиль */
.profile-bg {
    position: relative;
    min-height: 150px;
    background: linear-gradient(135deg, rgba(54, 69, 79, 0.9), rgba(90, 107, 118, 0.9));
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/avatar.png') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.profile-bg > * {
    position: relative;
    z-index: 2;
}

.profile-vip-badge {
    background: linear-gradient(135deg, #FFD700, #ffcc00);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.profile-id-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.copy-id-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.copy-id-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.profile-id {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-family: monospace;
    letter-spacing: 1px;
}

#user-balance {
    color: #FFD700;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Popup стили для mine.js */
.pop-overlay .pop-content {
    background: linear-gradient(135deg, #5a6b76, #8a969e);
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

.pop-overlay .pop-header {
    padding: 15px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
    text-align: center;
    background: #36454f;
    color: white;
}

.pop-overlay .pop-body {
    padding: 20px;
    color: #ffffff;
}

.pop-overlay .pop-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.pop-overlay .pop-footer button {
    background: #36454f;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pop-overlay .pop-footer button:hover {
    background: #5a6b76;
    transform: translateY(-2px);
}

.pop-overlay .pop-footer button[style*="background: #666"] {
    background: #666;
}

.pop-overlay .pop-footer button[style*="background: #666"]:hover {
    background: #555;
}

/* Стили для формы изменения адреса и пароля */
#address-form input,
#password-change-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 15px;
    background: rgba(0,0,0,0.3);
    color: white;
}

#address-form label,
#password-change-form label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

/* Стили для поддержки */
#support-popup .referral-section {
    background: rgba(54, 69, 79, 0.8);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

#support-popup .referral-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#support-popup .referral-text h4 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 14px;
}

#support-popup .referral-text p {
    margin: 0;
    color: #ccc;
    font-size: 12px;
}

/* Мобильная адаптация для mine */
@media (max-width: 480px) {
    .profile-bg {
        min-height: 130px;
        padding: 15px;
    }
    
    #user-balance {
        font-size: 20px;
    }
    
    .calendar-grid {
        gap: 3px;
    }
    
    .calendar-date {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .calendar-day {
        font-size: 10px;
        padding: 6px 0;
    }
    
    .calendar-time {
        font-size: 14px;
        padding: 8px;
    }
    
    .setting-item {
        padding: 12px 0;
    }
    
    .setting-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .setting-name {
        font-size: 13px;
    }
    
    .setting-value {
        font-size: 11px;
    }
}

@media (max-width: 375px) {
    .profile-bg {
        min-height: 120px;
        padding: 12px;
    }
    
    #user-balance {
        font-size: 18px;
    }
    
    .profile-vip-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .profile-id {
        font-size: 12px;
    }
    
    .calendar-grid {
        gap: 2px;
    }
    
    .calendar-date {
        padding: 4px 0;
        font-size: 11px;
    }
}

/* СТИЛИ ДЛЯ DEPOSIT С ТЕМНЫМИ ЛИНИЯМИ */
.deposit-address-section {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #36454f;
}

.network-selection-green {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #36454f;
}

.network-options-green {
    display: flex;
    gap: 10px;
}

.network-option-green {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-left: 3px solid #36454f;
}

.network-option-green.active {
    border-color: #36454f;
    background: rgba(54, 69, 79, 0.5);
    border-left: 3px solid #4CAF50;
}

.network-icon-green {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.network-icon-green img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-name-green {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.network-check-green {
    color: #4CAF50;
    font-size: 12px;
    opacity: 0;
}

.network-option-green.active .network-check-green {
    opacity: 1;
}

.input-line-green {
    background: transparent;
    border: none;
    border-bottom: 2px solid #36454f;
    border-radius: 0;
    padding: 12px 40px 12px 0;
    color: white;
    font-size: 16px;
    width: 100%;
    outline: none;
    margin-bottom: 0;
    transition: border-color 0.3s ease;
}

.input-line-green::placeholder {
    color: #ccc;
}

.input-line-green:focus {
    border-bottom-color: #4CAF50;
    border-bottom-width: 3px;
}

.input-container-green {
    position: relative;
    margin-bottom: 0;
}

.deposit-info {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #36454f;
}

.deposit-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid transparent;
}

.deposit-line:hover {
    border-left: 2px solid #36454f;
}

.deposit-line:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Стили для новой диаграммы в team.js */
.chart-container {
    width: 100%;
    height: 250px;
    margin: 20px 0;
    background: rgba(54, 69, 79, 0.8);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    border-left: 3px solid #FFD700;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
    background: none;
    position: relative;
}

/* Стили для сетей в модалках */
.network-selection {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #36454f;
}

.network-options {
    display: flex;
    gap: 10px;
}

.network-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.network-option.active {
    border-color: #36454f;
    background: rgba(54, 69, 79, 0.5);
}

.network-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.network-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-name {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.network-check {
    color: #4CAF50;
    font-size: 12px;
    opacity: 0;
}

.network-option.active .network-check {
    opacity: 1;
}

/* Кнопка для установки адреса */
#set-address-btn {
    transition: all 0.3s ease;
}

#set-address-btn:hover {
    background: #5a6b76;
    transform: translateY(-2px);
}

/* Стили для списка депозитов */
.deposits-list {
    max-height: 200px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.deposit-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-left: 2px solid transparent;
    padding-left: 5px;
}

.deposit-item:hover {
    border-left: 2px solid #36454f;
}

/* Улучшенные стили для диаграммы */
.chart-container {
    background: rgba(54, 69, 79, 0.8);
    border: 1px solid rgba(54, 69, 79, 0.9);
    border-left: 3px solid #FFD700;
}

/* Адаптация для мобильных экранов */
@media (max-width: 480px) {
    .network-options,
    .network-options-green {
        flex-direction: column;
    }
    
    .network-option,
    .network-option-green {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px;
    }
    
    .network-icon,
    .network-icon-green {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .network-name,
    .network-name-green {
        margin-bottom: 0;
        margin-right: auto;
    }
    
    .network-check,
    .network-check-green {
        margin-left: 5px;
    }
    
    .deposit-line,
    .balance-line {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .deposit-line span:last-child,
    .balance-line span:last-child {
        margin-top: 5px;
        align-self: flex-end;
    }
    
    .chart-container {
        height: 200px;
        padding: 10px;
    }
}

/* Новые стили для улучшенной UI */
.input-line-green:disabled {
    color: #999;
    border-bottom-color: #666;
}

#generated-address-message i,
#saved-address-message i {
    margin-right: 5px;
}

#no-address-message i {
    margin-right: 5px;
}

/* Анимация для кнопок deposit */
#generate-address-btn:hover,
#copy-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 69, 79, 0.4);
}

/* Стили для loading в deposit */
#loading-deposit-popup .loading-spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
    border-top-color: #36454f;
}

/* Обновленные стили для navigation в home */
.nav-section {
    border-left: 3px solid rgba(54, 69, 79, 0.9);
}

.nav-item {
    border-left: 2px solid transparent;
    padding-left: 5px;
}

.nav-item:hover {
    border-left: 2px solid #36454f;
}

/* Улучшенные стили для скролла на мобильных */
.page-content,
.transaction-history,
.referral-list,
.withdrawals-list,
.deposits-list,
.transaction-list-compact {
    scrollbar-width: thin;
    scrollbar-color: #36454f rgba(255,255,255,0.1);
}

.page-content::-webkit-scrollbar,
.transaction-history::-webkit-scrollbar,
.referral-list::-webkit-scrollbar,
.withdrawals-list::-webkit-scrollbar,
.deposits-list::-webkit-scrollbar,
.transaction-list-compact::-webkit-scrollbar {
    width: 5px;
}

.page-content::-webkit-scrollbar-track,
.transaction-history::-webkit-scrollbar-track,
.referral-list::-webkit-scrollbar-track,
.withdrawals-list::-webkit-scrollbar-track,
.deposits-list::-webkit-scrollbar-track,
.transaction-list-compact::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.page-content::-webkit-scrollbar-thumb,
.transaction-history::-webkit-scrollbar-thumb,
.referral-list::-webkit-scrollbar-thumb,
.withdrawals-list::-webkit-scrollbar-thumb,
.deposits-list::-webkit-scrollbar-thumb,
.transaction-list-compact::-webkit-scrollbar-thumb {
    background: #36454f;
    border-radius: 5px;
}

/* Улучшенные анимации для плавности */
.u-navbar__content__back,
.play-btn,
.action-item,
.wallet-action-compact,
.network-option,
.network-option-green,
.uni-tabbar__item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Цветовые акценты */
.balance-amount,
.color-balance,
.team-stat-value,
.calendar-time,
.setting-value,
.referral-balance,
.transaction-category-amount-compact {
    color: #FFD700 !important;
}

.color-up,
.change-positive,
.network-check,
.network-check-green {
    color: #4CAF50 !important;
}

.color-down,
.change-negative {
    color: #ff4d4f !important;
}

/* Улучшенные тени для читаемости */
.text-white,
.text-xl,
.text-xxl,
.balance-title,
.crypto-name,
.crypto-price {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Контрастные фоны для важных элементов */
.notice-bar,
.balance-card,
.referral-section,
.profile-bg {
    background: rgba(54, 69, 79, 0.9) !important;
    backdrop-filter: blur(10px);
}

/* Гладкий скролл для всех контейнеров */
html {
    scroll-behavior: smooth;
}

body,
.page-content,
.conWrap {
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
}

/* ФИНАЛЬНЫЕ ФИКСЫ ДЛЯ СКРОЛЛА */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

/* Обеспечиваем идеальный скролл на iOS */
@supports (-webkit-touch-callout: none) {
    body {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .page {
        height: auto;
        min-height: 100%;
    }
}

/* Обеспечиваем идеальный скролл на Android */
@supports not (-webkit-touch-callout: none) {
    body {
        overflow: auto !important;
        height: auto;
    }
}
/* Добавить в конец файла style.css */

/* Carousel styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #fff;
}

/* Amount selection styles */
.amount-selection {
    background: rgba(54, 69, 79, 0.8);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #36454f;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-option {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 5px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.amount-option:hover {
    background: rgba(54, 69, 79, 0.5);
}

.amount-option.active {
    background: rgba(78, 119, 113, 0.8);
    border-color: #4CAF50;
    transform: scale(1.05);
}

/* Fix для прокрутки на home и mine */
.page {
    min-height: calc(100vh - 60px);
    padding-bottom: 80px !important;
    overflow-y: auto !important;
}

.page-content {
    padding-bottom: 30px;
}

/* Гарантируем что контент не скрывается под таббаром */
body:not(.no-tabbar) .page {
    padding-bottom: 120px !important;
}

/* Улучшаем скролл на iOS */
@supports (-webkit-touch-callout: none) {
    .page {
        -webkit-overflow-scrolling: touch !important;
        height: 100vh;
        overflow-y: scroll !important;
    }
}

/* Улучшаем отображение последних элементов */
.partners-section,
.deposits-list,
.settings-list {
    margin-bottom: 40px;
}

/* Стили для инпутов с кастомным значением */
#deposit-amount {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

#deposit-amount:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-container {
        height: 140px;
    }
}

@media (max-width: 375px) {
    .carousel-container {
        height: 130px;
    }
    
    .amount-option {
        padding: 10px 5px;
        font-size: 14px;
    }
}

/* Убираем кнопки навигации карусели */
.carousel-btn {
    display: none !important;
}
