.platform-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1628 0%, #1E293B 50%, #0F172A 100%);
    background-attachment: fixed;
    padding-bottom: 80px;
    position: relative;
}

.platform-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 10%, rgba(0, 201, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.85) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 201, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 201, 255, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    max-width: 500px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 201, 255, 0.4) 0%, transparent 70%);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'Manrope', 'Inter', sans-serif;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 201, 255, 0.6), 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.balance-compact {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background: linear-gradient(135deg, rgba(0, 123, 252, 0.25) 0%, rgba(0, 201, 255, 0.15) 100%);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0, 201, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 123, 252, 0.3), 0 0 0 1px rgba(0, 201, 255, 0.2) inset;
}

.balance-amount {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    text-shadow: 0 0 12px rgba(0, 201, 255, 0.8);
}

.balance-unit {
    font-size: 14px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.7);
}

.main-flow {
    max-width: 500px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
    position: relative;
    z-index: 10;
}

.hero-carousel {
    margin-bottom: 28px;
    position: relative;
}

.carousel-track {
    position: relative;
    height: 200px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 201, 255, 0.15);
}

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

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.default-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.banner-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.banner-icon svg {
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.banner-title {
    font-size: 42px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    font-family: 'Manrope', 'Inter', sans-serif;
    letter-spacing: 10px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.banner-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.carousel-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
}

.carousel-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #007BFC 0%, #00C9FF 100%);
}

.funds-overview {
    margin-bottom: 24px;
}

.funds-card {
    background: linear-gradient(135deg, rgba(20, 27, 45, 0.85) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 201, 255, 0.25) inset;
    border: 1px solid rgba(0, 201, 255, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.funds-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(0, 201, 255, 0.08), transparent);
    animation: fundsSweep 6s linear infinite;
}

@keyframes fundsSweep {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.funds-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.label-icon {
    width: 22px;
    height: 22px;
    color: rgba(0, 201, 255, 0.8);
}

.funds-label span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.funds-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.value-prefix {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
}

.value-number {
    font-size: 44px;
    font-weight: 900;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    text-shadow: 0 0 20px rgba(0, 201, 255, 0.6);
}

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

.action-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 201, 255, 0.2);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

button.action-tile {
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    background: transparent;
    width: 100%;
    text-align: inherit;
}

a.action-tile {
    -webkit-tap-highlight-color: transparent;
    color: inherit;
}

.action-tile:active {
    transform: none;
}

.tile-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 27, 45, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.tile-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 8px;
}

.tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-icon svg {
    width: 28px;
    height: 28px;
}

.tile-label {
    font-size: 13px;
    font-weight: 700;
    color: #E2E8F0;
    font-family: 'Manrope', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tile-recharge .tile-icon {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.2) 0%, rgba(0, 123, 252, 0.15) 100%);
}

.tile-recharge .tile-icon svg {
    color: #00C9FF;
}

.tile-withdraw .tile-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.tile-withdraw .tile-icon svg {
    color: #6366F1;
}

.tile-lottery .tile-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.22) 0%, rgba(245, 158, 11, 0.15) 100%);
}

.tile-lottery .tile-icon svg {
    color: #FBBF24;
}

.tile-service .tile-icon {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2) 0%, rgba(99, 102, 241, 0.15) 100%);
}

.tile-service .tile-icon svg {
    color: #818CF8;
}

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

.showcase-header {
    margin-bottom: 28px;
    text-align: center;
}

.showcase-title {
    font-size: 26px;
    font-weight: 800;
    color: #E2E8F0;
    margin: 0 0 12px 0;
    font-family: 'Manrope', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 201, 255, 0.4);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 201, 255, 0.8) 50%, transparent 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 201, 255, 0.5);
}

.withdraw-marquee {
    width: 100%;
    margin: 0 0 28px;
    box-sizing: border-box;
}

.withdraw-marquee-viewport {
    height: 8.25rem;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(0, 201, 255, 0.28);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 201, 255, 0.15);
    contain: paint;
    isolation: isolate;
}

.withdraw-marquee-track {
    display: flex;
    flex-direction: column;
}

.withdraw-marquee-track--scroll {
    animation: withdrawMarqueeVertical var(--wm-duration, 27s) linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.withdraw-marquee-track--scroll.withdraw-marquee-track--paused {
    animation-play-state: paused;
}

@keyframes withdrawMarqueeVertical {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, -50%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .withdraw-marquee-track--scroll {
        animation: none;
        transform: none;
    }
}

.withdraw-marquee-line {
    flex: 0 0 2.75rem;
    height: 2.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(0, 201, 255, 0.12);
    font-family: 'Manrope', 'Inter', sans-serif;
}

.withdraw-marquee-account {
    justify-self: start;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.withdraw-marquee-status {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
    color: #94a3b8;
    font-weight: 600;
}

.withdraw-marquee-amount {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
    color: #00c9ff;
    font-weight: 700;
}

.withdraw-marquee-line:last-child {
    border-bottom: none;
}

.withdraw-marquee-line--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 500;
}

.withdraw-marquee-empty-inner {
    text-align: center;
    padding: 0 12px;
}

.products-category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 22px;
    padding: 0 12px;
    max-width: 420px;
}

.products-category-tabs .product-tab {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 201, 255, 0.28);
    background: rgba(15, 23, 42, 0.65);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    font-family: 'Manrope', 'Inter', sans-serif;
}

.products-category-tabs .product-tab:hover {
    color: #e2e8f0;
    border-color: rgba(0, 201, 255, 0.45);
}

.products-category-tabs .product-tab.active {
    color: #f8fafc;
    background: linear-gradient(135deg, rgba(0, 123, 252, 0.35) 0%, rgba(0, 201, 255, 0.2) 100%);
    border-color: rgba(0, 201, 255, 0.65);
    box-shadow: 0 0 22px rgba(0, 201, 255, 0.35);
}

.products-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-tile {
    background: linear-gradient(135deg, rgba(20, 27, 45, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 201, 255, 0.2);
    opacity: 0;
    transform: translateY(40px);
    animation: tileSlideIn 0.6s ease forwards;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

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

.product-tile-disabled {
    border-color: rgba(148, 163, 184, 0.25);
    filter: saturate(0.65);
}

.tile-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tile-coming-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.72);
    color: #F8FAFC;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.tile-badge {
    display: none;
}

.tile-info {
    padding: 20px;
}

.tile-name {
    font-size: 17px;
    font-weight: 700;
    color: #E2E8F0;
    margin: 0 0 16px 0;
    font-family: 'Manrope', 'Inter', sans-serif;
    line-height: 1.4;
}

.tile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 14px;
    font-weight: 800;
    color: #00C9FF;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
}

.tile-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 18px;
    font-weight: 800;
    color: #6366F1;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    text-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
}

.tile-action-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #007BFC 0%, #00C9FF 50%, #6366F1 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Manrope', 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 123, 252, 0.5), 0 0 28px rgba(0, 201, 255, 0.3);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    animation: buttonGradientShift 3s ease infinite;
}

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

.tile-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 123, 252, 0.7), 0 0 40px rgba(0, 201, 255, 0.5);
}

.tile-action-btn-disabled,
.tile-action-btn-disabled:hover,
.tile-action-btn:disabled {
    cursor: not-allowed;
    background: linear-gradient(135deg, #475569 0%, #64748B 100%);
    box-shadow: none;
    transform: none;
    opacity: 0.85;
    animation: none;
}

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

.loader-spinner {
    width: 52px;
    height: 52px;
    border: 5px solid transparent;
    border-top-color: #007BFC;
    border-right-color: #00C9FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 28px rgba(0, 201, 255, 0.6);
}

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

.masonry-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    gap: 24px;
}

.masonry-loader p {
    font-size: 14px;
    color: #94A3B8;
    margin: 0;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 100px 20px;
    color: #94A3B8;
    font-size: 15px;
    font-weight: 500;
}

.toast-notification {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 18px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
    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;
    border: 2px solid transparent;
}

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

.toast-notification.success {
    background: linear-gradient(135deg, rgba(0, 177, 64, 0.95) 0%, rgba(124, 179, 66, 0.95) 100%);
    color: #FFFFFF;
    border-color: #00B140;
    box-shadow: 0 10px 36px rgba(0, 177, 64, 0.5);
}

.toast-notification.error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(200, 35, 51, 0.95) 100%);
    color: #FFFFFF;
    border-color: #DC3545;
    box-shadow: 0 10px 36px rgba(220, 53, 69, 0.5);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.bottom-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(0, 201, 255, 0.15);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 201, 255, 0.08);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 8px;
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: rgba(148, 163, 184, 0.5);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    text-decoration: none;
    min-width: 64px;
    min-height: 56px;
    border-radius: 16px;
}

.dock-item:hover {
    background-color: rgba(0, 201, 255, 0.08);
    color: #00C9FF;
    transform: translateY(-4px);
}

.dock-item.active {
    color: #00C9FF;
    background: linear-gradient(135deg, rgba(0, 123, 252, 0.25) 0%, rgba(0, 201, 255, 0.15) 100%);
    box-shadow: 0 4px 16px rgba(0, 201, 255, 0.4), 0 0 24px rgba(0, 201, 255, 0.2), 0 0 0 1px rgba(0, 201, 255, 0.3) inset;
}

.dock-icon {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: currentColor;
    transition: all 0.3s ease;
}

.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(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.balance-modal-content {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 36px 28px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.4s ease-out;
}

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

.balance-modal-title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1A2332;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.balance-modal-amount {
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    font-size: 17px;
    color: #5A6C7D;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 600;
}

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

.balance-option {
    background: linear-gradient(135deg, rgba(0, 177, 64, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
    border: 2px solid rgba(0, 177, 64, 0.2);
    border-radius: 18px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.balance-option:not(.disabled):hover {
    background: linear-gradient(135deg, rgba(0, 177, 64, 0.12) 0%, rgba(124, 179, 66, 0.1) 100%);
    border-color: #00B140;
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 177, 64, 0.25);
}

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

.balance-option.selected {
    background: linear-gradient(135deg, rgba(0, 177, 64, 0.18) 0%, rgba(124, 179, 66, 0.15) 100%);
    border-color: #00B140;
    box-shadow: 0 10px 32px rgba(0, 177, 64, 0.35);
}

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

.option-label {
    font-size: 16px;
    color: #1A2332;
    font-weight: 700;
}

.option-balance {
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #00B140;
}

.option-insufficient {
    font-size: 13px;
    color: #DC3545;
    margin-top: 8px;
    font-weight: 600;
}

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

.balance-modal-confirm {
    flex: 1;
    padding: 16px;
    background: linear-gradient(135deg, #00B140 0%, #7CB342 100%);
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 177, 64, 0.4);
}

.balance-modal-confirm:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 177, 64, 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: 16px;
    background: #F5F7FA;
    border: 2px solid #E8EDF2;
    border-radius: 50px;
    color: #5A6C7D;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', 'Inter', sans-serif;
}

.balance-modal-cancel:hover {
    background: #E8EDF2;
    border-color: #DFE6EC;
    transform: translateY(-3px);
}

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

@media (max-width: 480px) {
    .floating-header {
        height: 70px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .balance-amount {
        font-size: 18px;
    }
    
    .main-flow {
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .carousel-track {
        height: 180px;
    }
    
    .funds-card {
        padding: 24px;
    }
    
    .value-number {
        font-size: 38px;
    }
    
    .action-grid {
        gap: 10px;
    }
    
    .tile-icon {
        width: 40px;
        height: 40px;
    }
    
    .tile-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .tile-label {
        font-size: 11px;
    }
    
    .tile-image-wrapper {
        height: 180px;
    }
    
    .tile-action-btn {
        padding: 12px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .floating-header {
        height: 65px;
    }
    
    .logo-text {
        font-size: 26px;
    }
    
    .balance-amount {
        font-size: 16px;
    }
    
    .main-flow {
        padding-top: 85px;
        padding-left: 14px;
        padding-right: 14px;
    }
    
    .carousel-track {
        height: 160px;
    }
    
    .funds-card {
        padding: 20px;
    }
    
    .value-number {
        font-size: 34px;
    }
    
    .action-grid {
        gap: 8px;
    }
    
    .tile-icon {
        width: 36px;
        height: 36px;
    }
    
    .tile-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .tile-label {
        font-size: 10px;
    }
    
    .tile-image-wrapper {
        height: 160px;
    }
    
    .tile-action-btn {
        padding: 11px;
        font-size: 12px;
    }
}

.android-app-download-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 10000;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(10, 22, 40, 0.96) 100%);
    border-top: 1px solid rgba(0, 201, 255, 0.28);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
    border-radius: 16px 16px 0 0;
}

.android-app-download-bar.is-visible {
    display: flex;
}

.android-app-download-bar__text {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.35;
}

.android-app-download-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #0A1628;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #00C9FF 0%, #007BFC 100%);
    border: 1px solid rgba(0, 201, 255, 0.5);
    box-shadow: 0 2px 12px rgba(0, 201, 255, 0.35);
}

.platform-wrapper.has-android-app-download-bar {
    padding-bottom: calc(80px + 52px);
}

@media (max-width: 640px) {
    .android-app-download-bar {
        bottom: 60px;
        max-width: 100%;
        border-radius: 0;
    }
}

.home-announce-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.home-announce-modal--hidden {
    display: none;
}

.home-announce-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.72);
}

.home-announce-modal__panel {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: #0f172a;
    border: 1px solid rgba(0, 201, 255, 0.22);
    border-radius: 14px;
    padding: 44px 20px 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.home-announce-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(148, 163, 184, 0.9);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
}

.home-announce-modal__close:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
}

.home-announce-modal__title {
    margin: 0 0 16px;
    padding: 0 28px 0 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
    font-family: 'Manrope', 'Inter', sans-serif;
}

.home-announce-modal__body {
    color: rgba(226, 232, 240, 0.88);
    font-size: 14px;
    line-height: 1.55;
}

.home-announce-modal__body p {
    margin: 0 0 12px;
}

.home-announce-modal__list {
    margin: 14px 0 0;
    padding: 0 0 0 18px;
}

.home-announce-modal__list li {
    margin-bottom: 6px;
}

.home-announce-modal__list li:last-child {
    margin-bottom: 0;
}

.home-announce-modal__cta {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 201, 255, 0.45);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 123, 252, 0.35) 0%, rgba(0, 201, 255, 0.2) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.home-announce-modal__cta:hover {
    border-color: rgba(0, 201, 255, 0.65);
    background: linear-gradient(135deg, rgba(0, 123, 252, 0.45) 0%, rgba(0, 201, 255, 0.28) 100%);
}

.support-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.support-contact-modal--hidden {
    display: none;
}

.support-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.72);
}

.support-contact-modal__panel {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: #0f172a;
    border: 1px solid rgba(0, 201, 255, 0.22);
    border-radius: 14px;
    padding: 44px 20px 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.support-contact-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(148, 163, 184, 0.9);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
}

.support-contact-modal__close:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
}

.support-contact-modal__title {
    margin: 0 0 8px;
    padding: 0 28px 0 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-family: 'Manrope', 'Inter', sans-serif;
}

.support-contact-modal__desc {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.72);
    text-align: center;
}

.support-contact-modal__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-contact-modal__option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}

.support-contact-modal__option:hover {
    transform: translateY(-1px);
}

.support-contact-modal__option--telegram:hover {
    border-color: rgba(42, 171, 238, 0.55);
    background: rgba(42, 171, 238, 0.12);
}

.support-contact-modal__option--whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.55);
    background: rgba(37, 211, 102, 0.12);
}

.support-contact-modal__option-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.support-contact-modal__option--telegram .support-contact-modal__option-icon {
    background: rgba(42, 171, 238, 0.18);
    color: #2aabee;
}

.support-contact-modal__option--whatsapp .support-contact-modal__option-icon {
    background: rgba(37, 211, 102, 0.18);
    color: #25d366;
}

.support-contact-modal__option-icon svg {
    width: 24px;
    height: 24px;
}

.support-contact-modal__option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.support-contact-modal__option-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.support-contact-modal__option-hint {
    font-size: 12px;
    color: rgba(226, 232, 240, 0.62);
}