:root {
    --bg: #0a0e1a;
    --bg-soft: #0f1419;
    --bg-elevated: #141a24;
    --card: #1a1f2e;
    --card-hover: #202636;
    --muted: #6b7280;
    --text: #f3f4f6;
    --text-secondary: #d1d5db;
    --primary: #6366f1;
    --primary-hover: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.3);
    --danger: #ef4444;
    --up: #10b981;
    --down: #ef4444;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.12);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    padding-top: 72px;
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

/* Плавающие круги */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    filter: blur(40px);
    animation: float 15s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-duration: 18s;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
}

.circle-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 15%;
    animation-duration: 22s;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
}

.circle-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: 1s;
}

.circle-5 {
    width: 220px;
    height: 220px;
    bottom: 40%;
    right: 5%;
    animation-duration: 19s;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(16, 185, 129, 0.1));
}

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

/* Анимированные частицы */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.particle-2 {
    top: 50%;
    left: 30%;
    animation-duration: 12s;
    animation-delay: 1s;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
}

.particle-3 {
    top: 70%;
    left: 60%;
    animation-duration: 9s;
    animation-delay: 2s;
}

.particle-4 {
    top: 30%;
    right: 25%;
    animation-duration: 11s;
    animation-delay: 0.5s;
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
}

.particle-5 {
    top: 80%;
    right: 15%;
    animation-duration: 13s;
    animation-delay: 1.5s;
}

.particle-6 {
    top: 15%;
    right: 40%;
    animation-duration: 10s;
    animation-delay: 0.8s;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
}

.particle-7 {
    bottom: 25%;
    left: 45%;
    animation-duration: 12s;
    animation-delay: 2.5s;
}

.particle-8 {
    top: 45%;
    left: 80%;
    animation-duration: 9s;
    animation-delay: 1.2s;
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, 25px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(25px, 15px) scale(1.1);
        opacity: 0.9;
    }
}

/* Анимированные линии */
.animated-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
    animation: lineFlow 6s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    height: 2px;
    top: 25%;
    left: 10%;
    transform: rotate(45deg);
    animation-duration: 8s;
    animation-delay: 0s;
}

.line-2 {
    width: 150px;
    height: 2px;
    top: 65%;
    right: 20%;
    transform: rotate(-30deg);
    animation-duration: 10s;
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.line-3 {
    width: 180px;
    height: 2px;
    bottom: 30%;
    left: 50%;
    transform: rotate(60deg);
    animation-duration: 7s;
    animation-delay: 1s;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleX(1.2);
    }
}

/* Светящиеся сферы */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    filter: blur(20px);
    animation: orbPulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 15%;
    animation-duration: 5s;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 20%;
    animation-duration: 6s;
    animation-delay: 1.5s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 55%;
    left: 70%;
    animation-duration: 4.5s;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

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

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

/* Анимация для секций при скролле */
.hero,
.markets,
.exchange {
    animation: fadeInUp 0.8s ease-out;
}

/* Улучшенные анимации для карточек */
.premium-card {
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Анимация для градиентного текста */
.gradient-text {
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

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

/* Анимация для статистики */
.stat-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Анимация для виджетов */
.widget-row {
    animation: fadeInScale 0.5s ease-out backwards;
}

.widget-row:nth-child(1) {
    animation-delay: 0.1s;
}

.widget-row:nth-child(2) {
    animation-delay: 0.2s;
}

.widget-row:nth-child(3) {
    animation-delay: 0.3s;
}

.widget-row:nth-child(4) {
    animation-delay: 0.4s;
}

/* Анимация для кнопок при наведении */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Анимация для навигации */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Анимация для таблицы */
.table tbody tr {
    animation: fadeInUp 0.4s ease-out backwards;
}

.table tbody tr:nth-child(1) {
    animation-delay: 0.05s;
}

.table tbody tr:nth-child(2) {
    animation-delay: 0.1s;
}

.table tbody tr:nth-child(3) {
    animation-delay: 0.15s;
}

.table tbody tr:nth-child(4) {
    animation-delay: 0.2s;
}

.table tbody tr:nth-child(5) {
    animation-delay: 0.25s;
}

.table tbody tr:nth-child(6) {
    animation-delay: 0.3s;
}

.table tbody tr:nth-child(7) {
    animation-delay: 0.35s;
}

.table tbody tr:nth-child(8) {
    animation-delay: 0.4s;
}

.table tbody tr:nth-child(9) {
    animation-delay: 0.45s;
}

.table tbody tr:nth-child(10) {
    animation-delay: 0.5s;
}

/* Адаптивность для анимированных элементов */
@media (max-width: 768px) {
    .floating-circle {
        filter: blur(30px);
    }
    
    .circle-1, .circle-2, .circle-3, .circle-4, .circle-5 {
        width: 150px;
        height: 150px;
    }
    
    .glow-orb {
        filter: blur(15px);
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 80px;
        height: 80px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .animated-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .animated-elements {
        display: none;
    }
    
    .bg-animation {
        animation: bgPulse 25s ease-in-out infinite;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 32px;
    flex-wrap: nowrap;
}

.header-inner > * {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .header-inner {
        gap: 16px;
        min-height: 64px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
    transition: transform 0.2s ease;
    color: inherit;
    text-decoration: none;
}

.brand:hover {
    transform: scale(1.02);
}

.brand:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px var(--primary-glow));
}

.brand-name {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.35px;
    line-height: 1;
    background: linear-gradient(135deg, #f9fafb 0%, #c7d2fe 45%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.brand-badge {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(99, 102, 241, 1));
    border-radius: 999px;
    color: #0f172a;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.main-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
}

.language-selector,
.header-cta .btn,
.mobile-menu-toggle {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 8px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .header-inner {
        gap: 16px;
    }

    .brand {
        gap: 10px;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 19px;
    }

    .header-cta {
        gap: 10px;
        flex-wrap: nowrap;
    }

    .header-cta .btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 8px 6px;
    }
    
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
        width: 100%;
        text-align: left;
    }
    
    .header-cta .btn-secondary {
        display: none;
    }
}

@media (max-width: 520px) {
    .brand {
        gap: 8px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-badge {
        display: none;
    }

    .header-cta {
        gap: 8px;
    }

    .header-cta .btn-primary {
        padding: 8px 12px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-icon {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

/* Языковой переключатель */
.language-selector {
    position: relative;
}

#languageToggle svg {
    color: #6366f1;
    transition: all 0.3s ease;
}

#languageToggle:hover svg {
    color: #8b5cf6;
    transform: scale(1.05);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.language-option.active {
    background: rgba(99, 102, 241, 0.2);
    color: #8b5cf6;
    font-weight: 600;
}

.language-option.active::after {
    content: '✓';
    margin-left: auto;
    color: #8b5cf6;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero */
.hero {
    position: relative;
    padding: 50px 0 40px;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0 30px;
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-glow);
}

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

.hero-copy h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: 28px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 50%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 8px);
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

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

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Widget Card */
.premium-card {
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.widget-card {
    position: relative;
}

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

.widget-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.widget-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--accent-glow);
}

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

.widget-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.widget-row:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateX(4px);
}

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

.asset-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.asset-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Цветные фоны для заглушек (когда изображение не загрузилось) */
.asset-icon.has-fallback {
    background: rgba(255, 255, 255, 0.1);
}

.asset-icon.fallback-btc { background: linear-gradient(135deg, #f7931a, #ff9f43); }
.asset-icon.fallback-eth { background: linear-gradient(135deg, #627eea, #8a95e8); }
.asset-icon.fallback-sol { background: linear-gradient(135deg, #9945ff, #b674ff); }
.asset-icon.fallback-usdt { background: linear-gradient(135deg, #26a17b, #2dd4bf); }
.asset-icon.fallback-xrp { background: linear-gradient(135deg, #23292f, #3d4857); }
.asset-icon.fallback-ada { background: linear-gradient(135deg, #0033ad, #0044dd); }
.asset-icon.fallback-ton { background: linear-gradient(135deg, #0088cc, #00a8ff); }
.asset-icon.fallback-bnb { background: linear-gradient(135deg, #f3ba2f, #f5c842); }
.asset-icon.fallback-trump { background: linear-gradient(135deg, #ff6b6b, #ff8787); }
.asset-icon.fallback-link { background: linear-gradient(135deg, #375bd2, #4a6ee8); }

.asset-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.asset-symbol {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.asset-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.asset-price strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.asset-change {
    font-size: 12px;
    font-weight: 600;
}

/* Sections */
.markets {
    padding: 30px 0 60px 0;
    margin-bottom: 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 24px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.control span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.select-premium {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-premium:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.08);
}

.select-premium:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Table */
.table-wrap {
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.table-wrap::-webkit-scrollbar {
    height: 6px;
}

.table-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.table-wrap::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
    position: sticky;
    top: 0;
    z-index: 10;
}

.table td {
    padding: 20px 16px;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

@media (max-width: 768px) {
    .table-wrap {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 700px;
    }
    
    .table th,
    .table td {
        padding: 12px 8px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .table-price {
        font-size: 14px;
    }
    
    .asset-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-row-number {
    font-weight: 600;
    color: var(--muted);
}

.table-asset {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.chip.up {
    background: rgba(16, 185, 129, 0.15);
    color: var(--up);
}

.chip.down {
    background: rgba(239, 68, 68, 0.15);
    color: var(--down);
}

.chip svg {
    width: 12px;
    height: 12px;
}

/* Chart */
.chart-panel {
    margin-top: 32px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-title-group {
        width: 100%;
    }
    
    .chart-price {
        font-size: 24px;
    }
    
    .chart-controls {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .timeframe-group {
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin-top: 12px;
    }
}

.chart-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.chart-price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.timeframe-group {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.timeframe-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeframe-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.timeframe-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: 0 2px 8px var(--primary-glow);
}

.chart-container {
    height: 300px;
    position: relative;
}

@media (max-width: 768px) {
    .chart-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .chart-container {
        height: 200px;
    }
}

/* Exchange */
.exchange {
    padding: 30px 0;
    margin-top: 0;
}

.exchange-header {
    margin-bottom: 48px;
}

.exchange-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

.exchange-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.exchange-header-card h2 {
    font-size: 28px;
    font-weight: 800;
}

.exchange-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
}

@media (max-width: 640px) {
    .input-group {
        grid-template-columns: 1fr;
    }
}

.select-asset {
    font-weight: 700;
}

.input-wrapper {
    position: relative;
}

.input-premium {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.input-premium:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.input-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.swap-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 16px auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swap-btn-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(180deg);
}

.exchange-info {
    margin: 32px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.info-row.highlight {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--primary-glow);
}

.info-row span {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-row strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.fee-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-input {
    width: 80px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
}

.exchange-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(239, 68, 68, 0.9);
}

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

.aside-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-glow);
}

.ticker {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.ticker li {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.ticker li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.feature-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.4) 20%, rgba(10, 14, 26, 0.95) 100%);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 80px;
    padding: 30px 0 40px;
    position: relative;
    width: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .brand {
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-newsletter {
    margin-top: 24px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
}

.footer-newsletter h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-column {
    position: relative;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.footer-column li {
    margin: 0;
    padding: 0;
}

.footer-column a {
    display: block;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
    text-decoration: none;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
    border-radius: 2px;
}

.footer-column a:hover {
    color: var(--text);
    padding-left: 12px;
}

.footer-column a:hover::before {
    width: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copy {
    color: var(--muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    transition: left 0.3s ease;
    z-index: 0;
}

.footer-social a svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.footer-social a:hover::before {
    left: 0;
}

.footer-social a:hover svg {
    transform: scale(1.1);
}

/* Animations */
.premium-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .exchange-grid {
        grid-template-columns: 1fr;
    }
    
    .markets {
        padding: 25px 0 50px 0;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-brand {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .controls {
        width: 100%;
    }
    
    .control {
        width: 100%;
    }
    
    .select-premium {
        width: 100%;
    }
    
    .markets {
        padding: 25px 0 40px 0;
    }
    
    .exchange {
        padding: 25px 0;
    }
    
    .exchange-header {
        margin-bottom: 32px;
    }
    
    .exchange-header-card h2 {
        font-size: 24px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 25px 0;
        width: 100%;
    }
    
    .footer-brand {
        padding: 0 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px 8px;
        padding: 0 8px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .footer-column {
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer-column h4 {
        margin-bottom: 12px;
        font-size: 13px;
    }
    
    .footer-column ul {
        gap: 4px;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .footer-column a {
        padding: 6px 0;
        font-size: 12px;
        width: 100%;
        display: block;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-inner {
        gap: 32px;
    }
    
    .exchange-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .hero-copy {
        order: 1;
    }
    
    .hero-widget {
        order: 2;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .brand-icon {
        width: 32px;
        height: 32px;
    }
    
    .premium-card {
        padding: 16px;
    }
    
    .widget-list {
        gap: 12px;
    }
    
    .widget-row {
        padding: 12px;
    }
    
    .exchange-header-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .fee-input-group {
        width: 100%;
    }
    
    .timeframe-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 6px;
        padding: 0 8px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .footer-column {
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-column h4 {
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .footer-column ul {
        gap: 4px;
    }
    
    .footer-column a {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .footer-inner {
        padding: 40px 0 32px;
    }
    
    .footer-brand {
        margin-bottom: 0;
        padding: 0 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-links {
        padding: 0 8px;
    }
}

/* Light theme */
.light {
    --bg: #f2f3f4;
    --bg-soft: #f4f5f6;
    --bg-elevated: #f6f7f8;
    --card: #f8f9fa;
    --card-hover: #f0f1f2;
    --text: #2c2c2c;
    --text-secondary: #6b6b6b;
    --muted: #959595;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.1);
    --primary: #6366f1;
    --primary-hover: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.06);
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.06);
    --up: #059669;
    --down: #dc2626;
}

.light body {
    background: linear-gradient(135deg, #f2f3f4 0%, #f4f5f6 50%, #f6f7f8 100%);
}

.light .bg-animation {
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.01) 0%, transparent 50%);
    opacity: 0.2;
}

.light .site-header {
    background: rgba(248, 249, 250, 0.96);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.005);
}

.light .premium-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.015);
}

.light .premium-card:hover {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.light .widget-row {
    background: var(--card);
    border: 1px solid var(--border);
}

.light .widget-row:hover {
    background: var(--card-hover);
    border-color: var(--border-hover);
}

.light .table {
    background: var(--card);
}

.light .table th {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.light .table tbody tr {
    border-bottom: 1px solid var(--border);
}

.light .table tbody tr:hover {
    background: var(--bg-elevated);
}

.light .input-premium {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
}

.light .input-premium:focus {
    background: var(--card);
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.light .select-premium {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
}

.light .select-premium:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
}

.light .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.15);
}

.light .btn-primary:hover {
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.25);
}

.light .btn-secondary {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
}

.light .btn-secondary:hover {
    background: var(--card-hover);
    border-color: var(--border-hover);
}

.light .btn-icon {
    background: var(--card);
    border: 1px solid var(--border);
}

.light .btn-icon:hover {
    background: var(--card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Стили для светлой темы - языковой переключатель */
.light #languageToggle svg {
    color: #6366f1;
}

.light #languageToggle:hover svg {
    color: #8b5cf6;
}

.light .language-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.1);
}

.light .language-option {
    color: #1f2937;
}

.light .language-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.light .language-option.active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.light .btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: transparent;
}

.light .btn-outline:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

.light .chip.up {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(5, 150, 105, 0.03));
    color: var(--up);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.light .chip.down {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(220, 38, 38, 0.03));
    color: var(--down);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.light .timeframe-group {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.light .timeframe-btn:hover {
    background: rgba(99, 102, 241, 0.06);
}

.light .timeframe-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.2);
}

.light .chart-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.light .exchange-info {
    background: var(--card);
    border: 1px solid var(--border);
}

.light .info-row.highlight {
    border-top: 1px solid var(--primary);
    background: var(--primary-glow);
}

.light .site-footer {
    background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 20%, var(--bg) 100%);
    border-top: 1px solid var(--border);
}

.light .footer-social a {
    background: var(--card);
    border: 1px solid var(--border);
}

.light .footer-social a:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
}

.light .nav-link:hover {
    background: var(--primary-glow);
    color: var(--primary);
}

.light .user-menu-dropdown {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.015);
}

.light .menu-item:hover {
    background: var(--primary-glow);
}

.light .modal-overlay {
    background: rgba(242, 243, 244, 0.82);
    backdrop-filter: blur(8px);
}

.light .hero-label {
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.light .hero-badges li {
    background: var(--primary-glow);
    border: 1px solid var(--border);
}

/* Исправление для iOS zoom на инпутах */
@media (max-width: 768px) {
    input[type="number"],
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px !important;
    }
}

/* Улучшение touch targets для мобильных */
@media (max-width: 768px) {
    .btn,
    .chip,
    .nav-link,
    button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .timeframe-btn {
        min-height: 36px;
    }
    
    /* Предотвращение горизонтального скролла */
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100%;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100%;
    }
    
    /* Ограничение ширины для основных элементов */
    section, main, .section, .container, .header-inner, 
    .premium-card, .widget-row, .table-asset, .exchange-grid {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Убеждаемся, что header всегда закреплен */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
    }
    
    /* Контейнеры не должны выходить за пределы, но без overflow-x на section/main чтобы не ломать sticky */
    section, main {
        max-width: 100vw;
        box-sizing: border-box;
    }
}

/* Авторизация и профиль */
.auth-buttons {
    display: flex;
    gap: 12px;
}

.user-profile {
    position: relative;
}

.user-menu {
    position: relative;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-avatar-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

.user-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar svg {
    color: var(--primary);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.user-id {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.user-email {
    font-size: 12px;
    color: var(--text-secondary);
    word-break: break-all;
}

.verification-status {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    margin: 0 -12px 12px;
    border-bottom: 1px solid var(--border);
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(253, 224, 71, 0.12);
    color: #facc15;
    transition: all 0.2s ease;
}

.status-chip[data-status="verified"] {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.status-chip[data-status="unverified"] {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.35);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.1);
}

.status-info-btn {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.status-info-btn:hover,
.status-info-btn:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    color: var(--text);
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.status-info-btn[aria-expanded="true"] {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
    color: var(--primary);
}

.status-info-btn svg {
    width: 16px;
    height: 16px;
}

.status-tooltip {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% - 6px);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 20;
}

.status-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.status-tooltip-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    text-decoration: none;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item.active {
    background: var(--primary-glow);
    color: white;
}

.menu-item svg {
    flex-shrink: 0;
}

.logout-item {
    color: var(--danger);
    margin-top: 4px;
}

.logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* Модальные окна */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
    animation: modalSlideIn 0.3s ease;
}

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

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

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.optional {
    font-weight: 400;
    color: var(--muted);
    font-size: 12px;
}

.auth-form label span {
    font-weight: 600;
    color: var(--primary);
    font-family: monospace;
    font-size: 16px;
}

/* Капча */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.captcha-image {
    width: 120px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    object-fit: contain;
}

.captcha-refresh {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.captcha-refresh:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

.captcha-refresh svg {
    width: 20px;
    height: 20px;
}

.form-error {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: var(--danger);
    font-size: 13px;
    display: none;
}

.form-error.active {
    display: block;
}

.form-feedback {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    display: none;
    border: 1px solid transparent;
}

.form-feedback.visible {
    display: block;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.policy-main {
    padding: 140px 0 120px;
}

.policy-card {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px;
}

.policy-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-header h1 {
    font-size: 34px;
    line-height: 1.1;
}

.policy-updated {
    font-size: 14px;
    color: var(--text-secondary);
}

.policy-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.policy-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-section h2 {
    font-size: 20px;
    font-weight: 600;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.policy-list li {
    list-style: disc;
}

.policy-back-link {
    align-self: flex-start;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: color 0.2s ease;
}

.policy-back-link:hover {
    color: var(--primary-hover);
}

.policy-back-link::before {
    content: '←';
    font-size: 18px;
}

@media (max-width: 768px) {
    .policy-main {
        padding: 120px 0 100px;
    }

    .policy-card {
        padding: 32px 24px;
        gap: 24px;
    }

    .policy-header h1 {
        font-size: 28px;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-list,
    .policy-section p,
    .policy-intro {
        font-size: 15px;
    }
}

.transfer-available {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.transfer-usd {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    max-width: 320px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(12px);
    pointer-events: auto;
    animation: toast-in 0.35s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.toast-warning {
    background: rgba(250, 204, 21, 0.12);
    border-color: rgba(250, 204, 21, 0.35);
    color: #facc15;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.2);
}

.toast.toast-success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.25);
}

.toast.toast-error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 1;
}

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

.auth-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-legal {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: var(--text-secondary);
}

.auth-legal a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.auth-legal a:hover {
    color: var(--primary-hover);
}

.auth-link {
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

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

/* Выбор аватара */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    padding: 8px 0;
}

.avatar-option {
    position: relative;
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 8px;
}

.avatar-option:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.avatar-option.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow), 0 8px 24px rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.1);
}

.avatar-icon-wrapper {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px;
    overflow: hidden;
}

.avatar-icon-wrapper svg {
    width: 100%;
    height: 100%;
    max-width: 64px;
    max-height: 64px;
}

.avatar-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
    margin-top: auto;
}

.avatar-option.selected .avatar-name {
    color: var(--primary);
}

.avatar-option:hover .avatar-name {
    color: var(--text);
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 100%;
    }
    
    .user-menu-dropdown {
        right: auto;
        left: 50%;
        min-width: unset;
        width: min(260px, calc(100vw - 32px));
        transform: translate(-50%, -10px);
    }

    .user-menu-dropdown.active {
        transform: translate(-50%, 0);
    }
    
    .avatar-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 16px;
    }
    
    .avatar-option {
        padding: 10px;
        gap: 6px;
    }
    
    .avatar-name {
        font-size: 11px;
    }
    
    .avatar-icon-wrapper {
        padding: 8px;
    }
    
    .avatar-icon-wrapper svg {
        max-width: 48px;
        max-height: 48px;
    }
}
