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

body {
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a14;
    color: #fff;
}

/* ===== ФОНОВАЯ АНИМАЦИЯ ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

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

/* ===== АДАПТИВНЫЙ ЛОГОТИП ===== */
.logo-svg {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-svg img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
    object-fit: contain;
}

@media (max-width: 1024px) {
    .logo-svg img {
        height: 45px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .logo-svg img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-svg img {
        height: 35px;
        max-width: 120px;
    }
}

.logo-svg:hover img {
    filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

/* ===== ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКОВ ===== */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-current:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.lang-current .flag {
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.lang-current i {
    color: #FFD700;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-switcher.active .lang-current i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 8px;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.lang-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(20, 20, 35, 0.95);
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    transform: rotate(45deg);
}

.lang-switcher.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    width: 100%;
    border-radius: 10px;
}

.lang-option:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.1);
}

.lang-option.active {
    background: rgba(255, 215, 0, 0.2);
}

.lang-option .flag {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.2s;
}

.lang-option:hover .flag {
    transform: scale(1.2);
}

/* ===== ШАПКА ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Авторизация в шапке (скрывается на мобильных) */
.auth-section-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1024px) {
    .auth-section-desktop {
        display: none;
    }
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FFD700;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ГАМБУРГЕР ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(20, 20, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 215, 0, 0.2);
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    nav a i {
        width: 24px;
        color: #FFD700;
    }
    
    nav a:last-of-type {
        border-bottom: none;
    }
    
    .header-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .lang-current {
        padding: 8px 12px;
    }
    
    .lang-current .flag {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header-right {
        gap: 8px;
    }
    
    nav {
        width: 280px;
        padding: 70px 20px 20px;
    }
}

/* ===== МОБИЛЬНАЯ АВТОРИЗАЦИЯ В МЕНЮ ===== */
.mobile-auth-section {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

@media (max-width: 1024px) {
    .mobile-auth-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

.mobile-auth-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-auth-btn i {
    font-size: 18px;
}

.mobile-auth-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-auth-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.mobile-auth-btn.outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.mobile-auth-btn.outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

.mobile-auth-btn.logout {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 2px solid #ff4444;
}

.mobile-auth-btn.logout:hover {
    background: rgba(255, 0, 0, 0.2);
}

.mobile-user-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-user-info i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 10px;
}

.mobile-user-info .user-name {
    color: #FFD700;
    font-size: 18px;
    font-weight: 700;
}

.mobile-user-info .user-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 5px;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-content-top {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
    padding: 0 20px;
    width: 100%;
    margin-top: 20px;
}

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

.hero-content-top h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content-top p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    word-wrap: break-word;
}

/* ===== ВИДЕО ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
    background: #000;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 20, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(10, 10, 20, 0.3) 100%
    );
    pointer-events: none;
}

.video-controls-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.video-control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 16px;
}

.video-control-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* ===== КНОПКИ HERO ===== */
.hero-buttons-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.3s both;
    padding: 0 20px;
    width: 100%;
}

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

.btn-hero {
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-hero-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-hero-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

/* ===== АДАПТИВНОСТЬ HERO ===== */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        padding-top: 130px;
    }
    
    .hero-content-top h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-top p {
        font-size: 1.1rem;
    }
    
    .video-container {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .hero-content-top {
        margin-bottom: 25px;
        margin-top: 10px;
    }
    
    .hero-content-top h1 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content-top p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .video-container {
        max-width: 92%;
        border-radius: 15px;
    }
    
    .btn-hero {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .hero-buttons-bottom {
        margin-top: 30px;
        gap: 15px;
    }
    
    .video-control-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .hero-content-top {
        padding: 0 15px;
        margin-top: 5px;
    }
    
    .hero-content-top h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-content-top p {
        font-size: 0.95rem;
    }
    
    .video-container {
        max-width: 95%;
        border-radius: 12px;
    }
    
    .hero-buttons-bottom {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-top: 25px;
    }
    
    .btn-hero {
        width: 90%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding-top: 95px;
    }
    
    .hero-content-top h1 {
        font-size: 1.4rem;
    }
    
    .hero-content-top p {
        font-size: 0.9rem;
    }
}

/* ===== 8 ПАКЕТОВ ===== */
.packages-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .packages-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid-8 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.package-card {
    background: linear-gradient(145deg, rgba(255,215,0,0.05) 0%, rgba(30,30,50,0.95) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 25px 50px rgba(255,215,0,0.15);
}

.package-card.featured {
    border: 2px solid #FFD700;
    transform: scale(1.03);
    background: linear-gradient(145deg, rgba(255,215,0,0.1) 0%, rgba(30,30,50,0.95) 100%);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-15px);
    box-shadow: 0 30px 60px rgba(255,215,0,0.25);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.package-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 1px solid rgba(255,215,0,0.3);
}

.package-name {
    font-size: 26px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.package-price {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.package-price span {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.package-profit {
    font-size: 22px;
    color: #00ff88;
    margin-bottom: 20px;
    font-weight: 700;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #bbb;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #FFD700;
    width: 20px;
    text-align: center;
}

/* ===== ЗАТЕМНЕНИЕ ФОНА ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== КНОПКИ ===== */
.btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.btn-outline {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
}

.btn-full {
    width: 100%;
}

/* ===== STATS ===== */
.stats {
    padding: 80px 20px;
    background: rgba(20, 20, 35, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ===== PACKAGES СЕКЦИЯ ===== */
.packages {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #FFD700;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ===== FOOTER ===== */
footer {
    padding: 60px 20px 30px;
    background: rgba(10, 10, 20, 0.9);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: rgba(255, 255, 255, 0.5);
}


/* ============================================
   WALLET SECTION - MetaWallet Downloads
   ============================================ */
.wallet-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a14 0%, #12121f 100%);
    position: relative;
    overflow: hidden;
}

.wallet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.wallet-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wallet-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wallet-subtitle {
    font-size: 1.1rem;
    color: #8b8b9a;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Download Cards Grid */
.wallet-downloads {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Individual Card */
.wallet-download-card {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none !important; /* Убираем подчеркивание */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wallet-download-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.wallet-download-card:hover::before {
    opacity: 1;
}

/* Icon Container */
.wallet-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

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

/* Text Info */
.wallet-info {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.wallet-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff !important; /* Принудительно белый */
    margin: 0;
    text-decoration: none !important;
}

/* Arrow */
.wallet-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b; /* Красно-оранжевая стрелка как на скриншоте */
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.wallet-arrow svg {
    width: 20px;
    height: 20px;
}

.wallet-download-card:hover .wallet-arrow {
    transform: translateX(4px);
    color: #d4af37; /* Золотая при наведении */
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .wallet-section {
        padding: 60px 16px;
    }
    
    .wallet-title {
        font-size: 1.75rem;
    }
    
    .wallet-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .wallet-download-card {
        padding: 16px 20px;
    }
    
    .wallet-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin-right: 16px;
    }
    
    .wallet-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .wallet-info h3 {
        font-size: 1rem;
    }
}
}