* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #030712; /* Чуть более глубокий черный/синий для премиальности */
    /* Добавляем едва заметную сетку, чтобы линзе было что преломлять и искажать */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #F8FAFC;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif; /* Новый современный шрифт для текста */
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Outfit', sans-serif; /* Геометрический шрифт для заголовков */
}

/* Измененная секция Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 140px 0 100px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.05;
    
    /* Роскошный серебристо-синий градиент для текста */
    background: linear-gradient(135deg, #ffffff 20%, #A5B4FC 80%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Свечение текста */
    filter: drop-shadow(0 4px 20px rgba(96, 165, 250, 0.2));
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #94A3B8;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-subtitle b {
    color: #F1F5F9;
    font-weight: 600;
}

/* Bento Grid для секции Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    width: 100%;
    margin-bottom: 80px;
}

.features .glass-card:nth-child(1) {
    grid-column: span 2; /* Первая карточка в два раза шире */
}

.features .glass-card:nth-child(2) {
    grid-column: span 1;
}

.features .glass-card:nth-child(3) {
    grid-column: span 3; /* Третья карточка на всю ширину */
    display: flex;
    align-items: center;
    gap: 40px;
}

.features .glass-card:nth-child(3) .card-icon {
    margin-bottom: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
    animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: #0A84FF;
    top: -20%;
    left: -10%;
    filter: blur(140px);
    animation-delay: 0s;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: #5E5CE6;
    bottom: -10%;
    right: -10%;
    filter: blur(140px);
    animation-delay: -4s;
}

.blob-3 {
    width: 40vw;
    height: 40vw;
    background: #32D74B; /* Небольшой зеленый акцент для живости */
    top: 40%;
    left: 40%;
    opacity: 0.3;
    filter: blur(120px);
    animation-delay: -8s;
}

.bg-ray {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vw;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(10,132,255,0.15) 180deg, transparent 360deg);
    animation: rotateRay 30s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes blobFloat {
    0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
    50% { transform: scale(1.1) translate(3%, 5%); opacity: 0.7; }
    100% { transform: scale(0.9) translate(-3%, -2%); opacity: 0.5; }
}

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

.header, .main-content, .footer {
    position: relative;
    z-index: 10;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px; 
    background: rgba(0, 0, 0, 0.1); /* Сделали почти полностью прозрачным */
    backdrop-filter: blur(12px); /* Уменьшили размытие для большей легкости */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.glass-btn {
    appearance: none;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    
    background: transparent; 
    backdrop-filter: blur(14px) brightness(1.1);
    -webkit-backdrop-filter: blur(14px) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 2px 0 8px rgba(0, 255, 255, 0.25),
        inset -2px 0 8px rgba(255, 0, 255, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(255, 255, 255, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.3);
        
    transition: transform 0.2s cubic-bezier(0.3, 0.7, 0.4, 1.5), box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.glass-btn:hover {
    transform: translateY(-3px) scale(1.02);
    backdrop-filter: blur(18px) brightness(1.2);
    -webkit-backdrop-filter: blur(18px) brightness(1.2);
    
    /* Оставляем оригинальные тени, только чуть усиливаем свечение при наведении */
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 3px 0 12px rgba(0, 255, 255, 0.35),
        inset -3px 0 12px rgba(255, 0, 255, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(255, 255, 255, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.4);
}

.glass-btn:active {
    transform: scale(0.96);
    backdrop-filter: blur(10px) brightness(1.05);
    -webkit-backdrop-filter: blur(10px) brightness(1.05);
    
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 1px 0 4px rgba(0, 255, 255, 0.15),
        inset -1px 0 4px rgba(255, 0, 255, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(255, 255, 255, 0.05),
        0 6px 15px rgba(0, 0, 0, 0.2);
}

.login-btn {
    padding: 10px 24px;
    font-size: 1rem;
}

.primary-btn {
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 700;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Измененная секция Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 120px 0 100px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    line-height: 1.05;
    
    /* Роскошный серебристо-синий градиент для текста */
    background: linear-gradient(135deg, #ffffff 30%, #70a1ff 80%, #0A84FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Свечение текста */
    filter: drop-shadow(0 4px 10px rgba(10, 132, 255, 0.2));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.hero-subtitle b {
    color: #ffffff;
    font-weight: 600;
}

/* Стили Виджета-Симулятора */
.hero-visual {
    flex: 0 0 340px;
    perspective: 1000px;
}

.hero-widget {
    border-radius: 36px;
    padding: 28px;
    
    background: transparent;
    backdrop-filter: blur(14px) brightness(1.1);
    -webkit-backdrop-filter: blur(14px) brightness(1.1);
    
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 2px 0 12px rgba(0, 255, 255, 0.2),
        inset -2px 0 12px rgba(255, 0, 255, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(255, 255, 255, 0.1),
        0 24px 48px rgba(0, 0, 0, 0.4);
    
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.hero-widget:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px) scale(1.02);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 3px 0 16px rgba(0, 255, 255, 0.25),
        inset -3px 0 16px rgba(255, 0, 255, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(255, 255, 255, 0.15),
        0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.widget-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF453A;
    box-shadow: 0 0 12px rgba(255, 69, 58, 0.6);
    transition: all 0.3s ease;
}

.widget-status.connected {
    background: #32D74B;
    box-shadow: 0 0 12px rgba(50, 215, 75, 0.6);
}

.widget-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

/* iOS Toggle Button */
.toggle-container {
    margin-bottom: 16px;
}

#vpn-toggle {
    display: none;
}

.ios-toggle {
    display: block;
    width: 72px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ios-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#vpn-toggle:checked + .ios-toggle {
    background: #32D74B;
    border-color: #32D74B;
}

#vpn-toggle:checked + .ios-toggle::after {
    transform: translateX(28px);
}

.vpn-status-text {
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.widget-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.balance-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.balance-value {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.days-left {
    font-size: 0.9rem;
    color: #32D74B;
    font-weight: 600;
    background: rgba(50, 215, 75, 0.15);
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Остальные элементы */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 100px;
}

.glass-card {
    position: relative;
    border-radius: 36px;
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s cubic-bezier(0.3, 0.7, 0.4, 1.5);
    z-index: 1; /* Чтобы контент был поверх фона */
}

/* Выносим эффект стекла в ::before, чтобы вырезать у него центр */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1; /* Под контентом */
    
    background: transparent;
    backdrop-filter: blur(14px) brightness(1.1);
    -webkit-backdrop-filter: blur(14px) brightness(1.1);
    
    /* Делаем огромный прозрачный центр, оставляя блюр только у самых краев (эффект лупы) */
    -webkit-mask-image: radial-gradient(circle at center, transparent 55%, black 100%);
    mask-image: radial-gradient(circle at center, transparent 55%, black 100%);
    
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 2px 0 10px rgba(0, 255, 255, 0.2),
        inset -2px 0 10px rgba(255, 0, 255, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(255, 255, 255, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.3);
        
    transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.glass-card:hover::before {
    backdrop-filter: blur(18px) brightness(1.1);
    -webkit-backdrop-filter: blur(18px) brightness(1.1);
    
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 3px 0 14px rgba(0, 255, 255, 0.25),
        inset -3px 0 14px rgba(255, 0, 255, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(255, 255, 255, 0.15),
        0 25px 45px rgba(0, 0, 0, 0.4);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.card-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.action-section {
    text-align: center;
    padding: 0 0 100px;
}

.action-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.action-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.footer {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

/* Стили для огромного 2D-маскота */
.mascot-container {
    width: 100%;
    max-width: 480px; /* Делаем Еву огромной */
    aspect-ratio: 1;
    z-index: 5;
    
    /* Убрал 3D трансформации, так как браузеры часто мылят/размывают картинки при 3D-повороте */
    animation: floatMascot 7s ease-in-out infinite;
}

.mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Чтобы картинка влезла целиком и не обрезалась */
    
    /* Легкое свечение */
    filter: drop-shadow(0 15px 30px rgba(10, 132, 255, 0.2));
}

@media (max-width: 900px) {
    .mascot-container {
        max-width: 320px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 340px;
    }
    .hero-widget {
        transform: none; /* Убираем 3D на мобильных */
    }
    .hero-widget:hover {
        transform: none;
    }
    .features {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 20px;
    }
    .main-content {
        padding: 0 20px;
    }
    .hero {
        padding: 60px 0 40px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .glass-card {
        padding: 30px;
        border-radius: 24px;
    }
}

@keyframes floatMascot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ================== TOPUP STYLES ================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60A5FA;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.topup-card {
    margin-bottom: 24px;
    padding: 32px 40px;
}

.mt-6 {
    margin-top: 24px;
}

.amount-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
    margin-top: 20px;
}

.preset-label {
    cursor: pointer;
    display: block;
}

.preset-label input {
    display: none;
}

.preset-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
    color: #94A3B8;
}

.preset-label input:checked + .preset-box {
    background: rgba(10, 132, 255, 0.2);
    border-color: #0A84FF;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.2);
}

.preset-label:hover .preset-box {
    background: rgba(255, 255, 255, 0.1);
}

.custom-amount-wrapper {
    width: 100%;
}

.custom-amount-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    text-align: left;
}

.custom-prefix {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.custom-amount-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    width: 100%;
}

.custom-amount-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

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

.payment-label {
    cursor: pointer;
}

.payment-label input {
    display: none;
}

.payment-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 24px;
    transition: all 0.2s ease;
}

.payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
}

.sbp-icon {
    color: #F87171;
    background: rgba(248, 113, 113, 0.1);
}

.card-icon {
    color: #60A5FA;
    background: rgba(96, 165, 250, 0.1);
}

.crypto-icon {
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.1);
}

.payment-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #94A3B8;
}

.payment-label input:checked + .payment-box {
    background: rgba(10, 132, 255, 0.15);
    border-color: #0A84FF;
}

.payment-label input:checked + .payment-box .payment-name {
    color: #ffffff;
}

.topup-form {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    width: 100%;
}

.topup-sidebar {
    position: sticky;
    top: 100px;
}

.checkout-card {
    padding: 32px;
}

.checkout-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    color: #94A3B8;
}

.secure-text {
    text-align: center;
    margin-top: 20px;
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .topup-form {
        grid-template-columns: 1fr;
    }
    .topup-sidebar {
        position: static;
    }
    .amount-presets {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================== DASHBOARD STYLES ================== */
.dashboard-body {
    justify-content: flex-start;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-balance {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #F8FAFC;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.user-name {
    font-weight: 500;
    color: #94A3B8;
}

.avatar-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 132, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(10, 132, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.user-avatar {
    width: 130%;
    height: 130%;
    object-fit: contain;
    transform: translateY(2px);
}

.dashboard-content {
    padding: 60px 40px;
    align-items: flex-start;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.dash-card {
    display: flex;
    flex-direction: column;
}

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

.card-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: lowercase;
}

.status-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.balance-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.balance-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1;
}

.balance-currency {
    font-size: 2.5rem;
    font-weight: 600;
    color: #94A3B8;
}

.balance-hint {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.full-width-btn {
    width: 100%;
    margin-top: auto;
}

.card-desc {
    color: #94A3B8;
    font-size: 1rem;
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 1.5;
}

.card-desc b {
    color: #F8FAFC;
}

.copy-field {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.link-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #60A5FA;
    font-family: monospace;
    font-size: 1rem;
    outline: none;
}

.copy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    /* Убрал переопределение теней и фона, теперь это 100% оригинальное стекло */
}

.copy-btn:hover {
    transform: translateY(-2px);
}

.tg-card {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
}

.tg-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #60A5FA;
    flex-shrink: 0;
}

.tg-content {
    flex: 1;
}

.tg-content .card-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.tg-content .card-desc {
    margin: 0;
}

.tg-btn {
    white-space: nowrap;
    padding: 16px 32px;
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .tg-card {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .user-name {
        display: none;
    }
}

html{overflow-x:hidden}
.blob{position:fixed}
