.app-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #050814 0%, #0A0E1E 50%, #080B18 100%);
    background-attachment: fixed;
    padding-bottom: 90px;
    position: relative;
    overflow-x: hidden;
}

.app-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm10-20c-5.523 0-10 4.477-10 10s4.477 10 10 10 10-4.477 10-10-4.477-10-10-10z' fill='%2300F0FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.page-wrapper {
    position: relative;
    z-index: 10;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, rgba(10, 14, 27, 0.98) 0%, rgba(5, 8, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 240, 255, 0.3) inset;
    border-bottom: 1px solid rgba(0, 240, 255, 0.4);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(0, 240, 255, 0.05) 10px,
        rgba(0, 240, 255, 0.05) 11px
    );
    pointer-events: none;
}

.top-bar-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.brand-section {
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #00F0FF;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 3px;
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.8), 0 0 50px rgba(0, 240, 255, 0.5);
    text-transform: uppercase;
}

.service-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
    border: 1px solid rgba(0, 240, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.service-btn:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.35) 0%, rgba(168, 85, 247, 0.35) 100%);
    border-color: #00F0FF;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.service-btn svg {
    width: 24px;
    height: 24px;
    color: #00F0FF;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 1));
}

.content-area {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-banner {
    margin: 20px 0 0 0;
    position: relative;
}

.banner-wrapper {
    position: relative;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 240, 255, 0.6), 0 0 35px rgba(0, 240, 255, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.5);
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    pointer-events: none;
    z-index: 10;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner-slide.active {
    opacity: 1;
}

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

.default-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #050814 0%, #0A0E1E 100%);
    position: relative;
    overflow: hidden;
}

.default-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(0, 240, 255, 0.2) 0%, transparent 50%),
                      radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cyber-eye-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    animation: eyePulse 2s ease-in-out infinite;
}

.cyber-eye-icon svg {
    width: 100%;
    height: 100%;
    color: #00F0FF;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 1));
}

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

.default-heading {
    font-size: 32px;
    font-weight: 800;
    color: #00F0FF;
    margin: 0 0 8px 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 6px;
    text-shadow: 0 0 25px rgba(0, 240, 255, 1), 0 0 50px rgba(0, 240, 255, 0.6);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.default-text {
    font-size: 11px;
    color: #A0AEC0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 15px rgba(160, 174, 192, 0.6);
}

.banner-pagination {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.page-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.page-dot.active {
    background: #FFFFFF;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.9);
    transform: scale(1.4);
}

.banner-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #5D4037 100%);
}

.balance-overlay-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    z-index: 20;
}

.balance-mini-display {
    background: rgba(10, 14, 27, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-mini-label {
    font-size: 12px;
    color: #A0AEC0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.balance-mini-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency-mini {
    font-size: 16px;
    font-weight: 700;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

.amount-mini-value {
    font-size: 24px;
    font-weight: 800;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.9);
}

.quick-actions-horizontal {
    margin: 50px 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-card-horizontal {
    background: rgba(15, 20, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 10px,
        rgba(0, 240, 255, 0.04) 10px,
        rgba(0, 240, 255, 0.04) 20px
    );
    pointer-events: none;
}

.action-card-horizontal:hover {
    transform: translateX(8px);
    border-color: rgba(0, 240, 255, 0.7);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.5);
}

.action-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-icon-horizontal {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-recharge .action-icon-horizontal {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, rgba(0, 255, 163, 0.2) 100%);
    border: 1px solid rgba(0, 240, 255, 0.4);
}

.btn-withdraw .action-icon-horizontal {
    background: linear-gradient(135deg, rgba(255, 122, 69, 0.25) 0%, rgba(255, 26, 90, 0.2) 100%);
    border: 1px solid rgba(255, 122, 69, 0.4);
}

.btn-recharge:hover .action-icon-horizontal {
    background: linear-gradient(135deg, #00F0FF 0%, #00FFA3 100%);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}

.btn-withdraw:hover .action-icon-horizontal {
    background: linear-gradient(135deg, #FF7A45 0%, #FF1A5A 100%);
    box-shadow: 0 0 25px rgba(255, 122, 69, 0.8);
}

.action-icon-horizontal svg {
    width: 26px;
    height: 26px;
}

.btn-recharge .action-icon-horizontal svg {
    color: #00F0FF;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.8));
}

.btn-withdraw .action-icon-horizontal svg {
    color: #FF7A45;
    filter: drop-shadow(0 0 10px rgba(255, 122, 69, 0.8));
}

.btn-recharge:hover .action-icon-horizontal svg {
    color: #FFFFFF;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 1));
}

.btn-withdraw:hover .action-icon-horizontal svg {
    color: #FFFFFF;
    filter: drop-shadow(0 0 15px rgba(255, 122, 69, 1));
}

.action-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #F0F4F8;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.action-card-subtitle {
    font-size: 12px;
    color: #A0AEC0;
    font-weight: 500;
}

.action-arrow {
    font-size: 24px;
    color: #00F0FF;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.action-card-horizontal:hover .action-arrow {
    transform: translateX(4px);
}

.products-section {
    margin-bottom: 32px;
}

.section-header-minimal {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 240, 255, 0.3);
}

.section-title-minimal {
    font-size: 20px;
    font-weight: 700;
    color: #00F0FF;
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
}

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

.product-card-stacked {
    background: rgba(15, 20, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeInUp 0.6s ease forwards;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card-stacked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0, 240, 255, 0.04) 20px,
        rgba(0, 240, 255, 0.04) 40px
    );
    pointer-events: none;
    z-index: 0;
}

.product-card-stacked[data-idx="0"] { animation-delay: 0s; }
.product-card-stacked[data-idx="1"] { animation-delay: 0.1s; }
.product-card-stacked[data-idx="2"] { animation-delay: 0.2s; }
.product-card-stacked[data-idx="3"] { animation-delay: 0.3s; }
.product-card-stacked[data-idx="4"] { animation-delay: 0.4s; }
.product-card-stacked[data-idx="5"] { animation-delay: 0.5s; }

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-stacked:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.7);
    box-shadow: 0 12px 32px rgba(0, 240, 255, 0.6);
}

.product-image-wrapper {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 240, 255, 0.3);
}

.product-image-stacked {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-stacked:hover .product-image-stacked {
    transform: scale(1.15);
}

.product-details-section {
    padding: 16px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #F0F4F8;
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 0 15px rgba(240, 244, 248, 0.4);
}

.product-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 240, 255, 0.3);
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-label {
    font-size: 10px;
    font-weight: 600;
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 13px;
    font-weight: 800;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

.metric-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 240, 255, 0.4);
}

.product-price-period-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-top: 2px solid rgba(0, 240, 255, 0.3);
    border-bottom: 2px solid rgba(0, 240, 255, 0.3);
    margin-bottom: 12px;
}

.price-section-left {
    flex: 1;
    text-align: left;
}

.period-section-right {
    flex: 1;
    text-align: right;
}

.price-label-text,
.period-label-text {
    font-size: 10px;
    font-weight: 600;
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 18px;
    font-weight: 800;
    color: #00FFA3;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 255, 163, 0.8);
}

.period-value {
    font-size: 18px;
    font-weight: 800;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

.invest-action-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00F0FF 0%, #A855F7 100%);
    border: 1px solid rgba(0, 240, 255, 0.6);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.invest-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.invest-action-btn:hover::before {
    opacity: 1;
}

.invest-action-btn:hover {
    background: linear-gradient(135deg, #A855F7 0%, #00F0FF 100%);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.8), 0 4px 16px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
    border-color: #00F0FF;
}

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

.invest-action-btn span {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.invest-action-btn svg {
    width: 14px;
    height: 14px;
    color: #FFFFFF;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.invest-action-btn:hover svg {
    transform: translateX(4px);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

.pulse-ring {
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    border-top-color: #D4AF37;
    border-right-color: #B8860B;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

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

.loading-state p {
    font-size: 14px;
    color: rgba(255, 248, 220, 0.8);
    margin: 0;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 248, 220, 0.8);
    font-size: 14px;
}

.toast-notification {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    text-align: center;
    font-weight: 600;
    backdrop-filter: blur(20px);
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast-notification.success {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.toast-notification.error {
    background: rgba(139, 0, 0, 0.2);
    color: #FFFFFF;
    border-color: #8B0000;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.9);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.balance-selection-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    animation: modalFadeIn 0.3s ease-out;
}

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

.balance-modal-overlay {
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.balance-modal-content {
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.98) 0%, rgba(62, 39, 35, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
    animation: modalSlideUp 0.4s ease-out;
}

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

.balance-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.balance-modal-amount {
    font-family: 'Courier Prime', monospace;
    font-size: 16px;
    color: #FFF8DC;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
}

.balance-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.balance-option {
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.balance-option:not(.disabled):hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.balance-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.balance-option.selected {
    background: rgba(212, 175, 55, 0.25);
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

.option-label {
    font-size: 15px;
    color: #FFF8DC;
    font-weight: 600;
}

.option-balance {
    font-family: 'Courier Prime', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
}

.option-insufficient {
    font-size: 12px;
    color: #8B0000;
    margin-top: 6px;
    font-weight: 500;
}

.balance-modal-actions {
    display: flex;
    gap: 10px;
}

.balance-modal-confirm {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.balance-modal-confirm:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.balance-modal-confirm:active:not(:disabled) {
    transform: translateY(0);
}

.balance-modal-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.balance-modal-cancel {
    flex: 1;
    padding: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #FFF8DC;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.balance-modal-cancel:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.balance-modal-cancel:active {
    transform: translateY(0);
}

.welcome-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.welcome-modal.show {
    opacity: 1;
    visibility: visible;
}

.welcome-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 14, 27, 0.98) 0%, rgba(5, 8, 20, 0.98) 100%);
    border: 2px solid rgba(0, 240, 255, 0.5);
    border-radius: 24px;
    padding: 32px 24px 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 240, 255, 0.4);
    animation: modalScaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalScaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.welcome-modal-content::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 22px;
    pointer-events: none;
}

.welcome-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 240, 255, 0.5);
    background: rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    font-size: 28px;
    font-weight: 300;
    color: #00F0FF;
    line-height: 1;
    padding: 0;
}

.welcome-modal-close:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00F0FF;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.welcome-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.welcome-modal-title {
    font-size: 36px;
    font-weight: 800;
    color: #00F0FF;
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.9);
    text-transform: uppercase;
}

.welcome-modal-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin-bottom: 20px;
}

.welcome-info-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 8px;
    gap: 10px;
    transition: all 0.3s ease;
}

.welcome-info-item:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.5);
    transform: translateX(4px);
}

.welcome-info-item:last-of-type {
    margin-bottom: 0;
}

.welcome-info-icon {
    font-size: 22px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.15);
    flex-shrink: 0;
}

.welcome-info-text {
    font-size: 13px;
    color: #E0E7F0;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    flex: 1;
    line-height: 1.5;
}

.welcome-info-highlight {
    color: #00F0FF;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

.welcome-telegram-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00F0FF 0%, #A855F7 100%);
    border: 1px solid rgba(0, 240, 255, 0.6);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.welcome-telegram-btn:hover {
    background: linear-gradient(135deg, #A855F7 0%, #00F0FF 100%);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.7);
    transform: translateY(-2px);
    border-color: #00F0FF;
}

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

.welcome-telegram-btn span {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
    .welcome-modal-content {
        padding: 28px 20px 20px;
        max-width: 360px;
    }
    
    .welcome-modal-title {
        font-size: 32px;
        letter-spacing: 5px;
    }
    
    .welcome-modal-body {
        padding: 16px;
    }
    
    .welcome-info-item {
        padding: 9px 11px;
        margin-bottom: 7px;
    }
    
    .welcome-info-icon {
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    .welcome-info-text {
        font-size: 12px;
    }
    
    .welcome-telegram-btn {
        padding: 13px;
    }
    
    .welcome-telegram-btn span {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .welcome-modal-content {
        padding: 24px 16px 16px;
        max-width: 320px;
    }
    
    .welcome-modal-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .welcome-modal-body {
        padding: 14px;
    }
    
    .welcome-info-item {
        padding: 8px 10px;
        margin-bottom: 6px;
    }
    
    .welcome-info-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    
    .welcome-info-text {
        font-size: 11px;
    }
    
    .welcome-telegram-btn {
        padding: 12px;
    }
    
    .welcome-telegram-btn span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-bar-inner {
        padding: 14px 20px;
    }
    
    .brand-name {
        font-size: 22px;
    }
    
    .service-btn {
        width: 42px;
        height: 42px;
    }
    
    .content-area {
        padding: 0 16px;
    }
    
    .banner-wrapper {
        height: 180px;
    }
    
    .balance-mini-display {
        padding: 14px 20px;
    }
    
    .amount-mini-value {
        font-size: 22px;
    }
    
    .action-card-horizontal {
        padding: 16px 18px;
    }
    
    .action-icon-horizontal {
        width: 48px;
        height: 48px;
    }
    
    .action-icon-horizontal svg {
        width: 24px;
        height: 24px;
    }
    
    .action-card-title {
        font-size: 15px;
    }
    
    .products-list-vertical {
        gap: 14px;
    }
    
    .product-image-wrapper {
        height: 140px;
    }
    
    .product-details-section {
        padding: 14px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .price-amount,
    .period-value {
        font-size: 17px;
    }
    
    .invest-action-btn {
        padding: 13px;
    }
    
    .invest-action-btn span {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .top-bar-inner {
        padding: 12px 16px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .service-btn {
        width: 40px;
        height: 40px;
    }
    
    .content-area {
        padding: 0 14px;
    }
    
    .banner-wrapper {
        height: 160px;
    }
    
    .balance-mini-display {
        padding: 12px 18px;
    }
    
    .amount-mini-value {
        font-size: 20px;
    }
    
    .action-card-horizontal {
        padding: 14px 16px;
    }
    
    .action-icon-horizontal {
        width: 44px;
        height: 44px;
    }
    
    .action-icon-horizontal svg {
        width: 22px;
        height: 22px;
    }
    
    .action-card-title {
        font-size: 14px;
    }
    
    .products-list-vertical {
        gap: 12px;
    }
    
    .product-image-wrapper {
        height: 130px;
    }
    
    .product-details-section {
        padding: 12px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .price-amount,
    .period-value {
        font-size: 16px;
    }
    
    .invest-action-btn {
        padding: 12px;
    }
    
    .invest-action-btn span {
        font-size: 11px;
    }
    
    .invest-action-btn svg {
        width: 12px;
        height: 12px;
    }
}
