/* --- Стили Лендинга --- */
:root {
    --bg-void: #050614; --primary-neon: #9945FF; --secondary-cyan: #00F0FF; 
    --error-red: #FF3366; --text-main: #FFFFFF; --text-muted: #8F90A6;
    --glass-bg: rgba(19, 15, 46, 0.6); --glass-border: rgba(153, 69, 255, 0.3); --modal-bg: #0D0E23;
    
    /* Accent Colors for Feature Cards */
    --accent-gold: #FFA500;
    --accent-pink: #FF6B9D;
    
    /* Partner Colors */
    --col-phantom: #AB9FF2;
    --col-chainlink: #375BD2;
    --col-magiceden: #FF3366;
    --col-tensor: #00F0FF;
    --col-helius: #FF6B35;
    --col-jupiter: #FFE500;
    --col-lermess: #6B46C1;
    
    /* Solana Gradient Definition for Text Overlay */
    --solana-grad: linear-gradient(to right, #14F195, #9945FF);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-void);
    background-image: radial-gradient(circle at 15% 25%, rgba(112, 0, 255, 0.15) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(0, 240, 255, 0.1) 0%, transparent 45%);
    background-attachment: fixed; color: var(--text-main); font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column;
}
#starfield { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

/* Header & Nav */
nav { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 40px; z-index: 500; background: rgba(5, 6, 20, 0.85); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s; }
.logo { display: flex; align-items: center; cursor: pointer; }
.logo-img { height: 40px; width: auto; object-fit: contain; filter: drop-shadow(0 0 5px rgba(153, 69, 255, 0.5)); }
.logo-text { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--text-main); margin-left: 10px; letter-spacing: 2px; }
.nav-center { display: flex; gap: 25px; list-style: none; }
.nav-link { text-decoration: none; color: var(--text-muted); font-family: 'Orbitron', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; position: relative; }
.nav-link:hover { color: white; }
.nav-link.active { color: var(--primary-neon); text-shadow: 0 0 10px var(--primary-neon); }
.nav-link.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--secondary-cyan); box-shadow: 0 0 10px var(--secondary-cyan); }
.nav-right { display: flex; align-items: center; gap: 15px; position: relative; z-index: 501; }
.network-status { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted); border: 1px solid rgba(255, 255, 255, 0.1); padding: 5px 10px; border-radius: 20px; cursor: help; }
.status-dot { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; box-shadow: 0 0 5px #00ff88; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.lang-switch { color: var(--text-muted); font-size: 0.85rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 5px; }
.lang-switch:hover { color: white; }
.auth-btn { background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(0, 240, 255, 0.1)); border: 1px solid var(--primary-neon); padding: 8px 20px; color: var(--text-main); font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 1px; border-radius: 50px; cursor: pointer; transition: all 0.4s ease; text-transform: uppercase; font-size: 0.75rem; display: flex; align-items: center; gap: 8px; position: relative; z-index: 10; }
.auth-btn:hover { background: var(--primary-neon); box-shadow: 0 0 20px rgba(153, 69, 255, 0.6); transform: translateY(-2px); color: white; }
.hamburger { display: none; font-size: 1.5rem; color: white; cursor: pointer; z-index: 1002; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: rgba(5, 6, 20, 0.98); border-left: 1px solid var(--glass-border); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 25px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; padding: 20px; }
.mobile-menu.active { right: 0; }
.mobile-link { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; color: white; text-decoration: none; text-transform: uppercase; }
.mobile-menu .network-status { margin-top: 10px; border: 1px solid rgba(255,255,255,0.2); }
.mobile-menu .auth-btn { width: 100%; justify-content: center; padding: 12px; font-size: 1rem; }

/* Кнопка закрытия мобильного меню */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    font-size: 1.2rem;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-neon);
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Скрыть кнопку закрытия на ПК */
@media (min-width: 769px) {
    .mobile-menu-close {
        display: none !important;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(2px);
    transition: opacity 0.4s ease;
}

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

/* Скрыть overlay на ПК */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Скрыть overlay полностью на мобильных устройствах (без затемнения и размытия) */
@media (max-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
        backdrop-filter: none !important;
        transition: none !important;
    }
    
    .mobile-menu-overlay.active {
        display: none !important;
        transition: none !important;
    }
}

/* Sections & Animations */
.hidden { opacity: 0; transform: translateY(60px) scale(0.95); transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.show { opacity: 1; transform: translateY(0) scale(1); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 20px; padding-top: 80px; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(138, 86, 255, 0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; filter: blur(80px); }
.hero h1 { font-family: 'Orbitron', sans-serif; font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; text-transform: uppercase; z-index: 2; }
.gradient-text { background: linear-gradient(180deg, #FFFFFF 0%, #B4B6D8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.highlight-text { color: var(--primary-neon); text-shadow: 0 0 40px rgba(153, 69, 255, 0.7); display: block; font-size: 4rem; margin-top: 10px; }
.hero p { font-size: 1.25rem; max-width: 600px; color: var(--text-muted); margin-bottom: 50px; line-height: 1.6; letter-spacing: 0.5px; }
.stats-container { display: flex; gap: 30px; margin-top: 20px; position: relative; z-index: 5; }
.stat-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 30px 40px; border-radius: 20px; backdrop-filter: blur(20px); min-width: 180px; transition: 0.3s; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5); }
.stat-card:hover { transform: translateY(-5px); border-color: var(--secondary-cyan); box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); }
.stat-value { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 700; display: block; margin-bottom: 8px; }
.stat-value.cyan { color: var(--secondary-cyan); text-shadow: 0 0 15px rgba(0, 240, 255, 0.4); }
.stat-value.purple { color: var(--primary-neon); text-shadow: 0 0 15px rgba(153, 69, 255, 0.4); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* Shared Container for most sections (Except Partners) */
.features, .empower-section, .experience-section, .team-section, .roadmap-section, .faq-section, .why-solana-section, .security-section { 
    padding: 100px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    text-align: center; 
    scroll-margin-top: 80px; 
}

.features h2, .empower-section h2, .experience-section h2, .partners-section h2, .team-section h2, .roadmap-section h2, .faq-section h2, .why-solana-section h2, .security-section h2 { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 700; margin-bottom: 60px; color: white; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.feature-card { background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; padding: 40px 30px; text-align: left; transition: all 0.4s ease; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary-neon); box-shadow: 0 0 40px rgba(153, 69, 255, 0.15); }
.feature-icon { font-size: 2rem; color: var(--primary-neon); margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 0 8px rgba(153, 69, 255, 0.4)); }
.feature-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: var(--secondary-cyan); margin-bottom: 15px; text-transform: uppercase; }
.feature-card p { color: var(--text-muted); line-height: 1.7; font-size: 1.1rem; }

.empower-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.empower-card { background: rgba(13, 14, 35, 0.6); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; transition: all 0.3s ease; position: relative; overflow: hidden; text-align: left; display: flex; flex-direction: column; height: 100%; }
.empower-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin: 20px 0 15px 0; color: white; flex-grow: 0; }
.empower-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.5; flex-grow: 1; }
.empower-icon { font-size: 2rem; display: inline-block; transition: 0.3s; }
.accent-purple { border-top: 3px solid var(--primary-neon); } 
.accent-purple .empower-icon { color: var(--primary-neon); filter: drop-shadow(0 0 8px rgba(153, 69, 255, 0.6)); }
.accent-purple:hover { border-color: var(--primary-neon); box-shadow: 0 0 30px rgba(153, 69, 255, 0.2); }

.accent-cyan { border-top: 3px solid var(--secondary-cyan); } 
.accent-cyan .empower-icon { color: var(--secondary-cyan); filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6)); }
.accent-cyan:hover { border-color: var(--secondary-cyan); box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); }

.accent-gold { border-top: 3px solid var(--accent-gold); } 
.accent-gold .empower-icon { color: var(--accent-gold); filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.6)); }
.accent-gold:hover { border-color: var(--accent-gold); box-shadow: 0 0 30px rgba(255, 165, 0, 0.2); }

.accent-pink { border-top: 3px solid var(--accent-pink); } 
.accent-pink .empower-icon { color: var(--accent-pink); filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.6)); }
.accent-pink:hover { border-color: var(--accent-pink); box-shadow: 0 0 30px rgba(255, 107, 157, 0.2); }

.accent-indigo { border-top: 3px solid #6366F1; } 
.accent-indigo .empower-icon { color: #6366F1; filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6)); }
.accent-indigo:hover { border-color: #6366F1; box-shadow: 0 0 30px rgba(99, 102, 241, 0.2); }

.empower-card:hover { transform: translateY(-8px); }

.carousel-wrapper { position: relative; max-width: 900px; margin: 0 auto; border-radius: 20px; padding: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); box-shadow: 0 0 50px rgba(153, 69, 255, 0.1); }
.carousel-viewport { overflow: hidden; border-radius: 15px; position: relative; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; background: #1a1b3a; height: 500px; display: flex; justify-content: center; align-items: center; border: 1px solid rgba(255,255,255,0.05); }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.6); border: 1px solid var(--primary-neon); color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: 0.3s; }
.prev-btn { left: -25px; } .next-btn { right: -25px; }
.carousel-dots { display: flex; justify-content: center; margin-top: 20px; gap: 10px; }
.dot { width: 12px; height: 12px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--secondary-cyan); box-shadow: 0 0 10px var(--secondary-cyan); }

/* --- FULL WIDTH PARTNERS MARQUEE --- */
.partners-section {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02); 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    scroll-margin-top: 80px;
}

.partners-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: white;
}

.partners-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    /* Mask for smooth fade at edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 100px; /* Gap between logos */
    width: max-content;
    /* Infinite Scroll: плавная и медленная анимация (80s для очень плавного движения) */
    animation: scroll-right 80s linear infinite;
    will-change: transform;
}

@keyframes scroll-right {
    /* Плавная бесконечная прокрутка без остановок */
    0% { transform: translateX(calc(-50% - 50px)); } 
    100% { transform: translateX(0); }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 0.8;
    cursor: pointer;
    overflow: visible;
    padding: 5px;
}

/* При hover на любом элементе партнера подсвечиваем весь элемент */
.partner-item:hover {
    opacity: 1;
}

.partner-item:hover .partner-icon {
    transform: scale(1.05);
}
.partner-item:hover .partner-name {
    transform: scale(1.05);
}

/* --- ICONS GENERAL SETTINGS --- */
.partner-icon { 
    font-size: 2rem; 
    transition: all 0.3s ease;
    color: white; /* Default white */
}

.partner-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

/* Specific size overrides */
.tensor-item .partner-img,
.helius-item .partner-img,
.lermess-item .partner-img,
.magiceden-item .partner-img {
    width: 48px;
    height: 48px;
}

/* General Icon Hover: NO GLOW, just white */
.partner-item:hover .partner-icon { 
    color: white;
}

/* --- PARTNER NAMES GENERAL --- */
.partner-name { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 1.2rem; 
    color: var(--text-muted); 
    transition: 0.3s; 
    font-weight: 700;
    position: relative;
}

/* ==================================================================
   SPECIFIC PARTNER STYLING
   ================================================================== */

/* 1. SOLANA */
.solana-logo-svg { 
    width: 32px; height: 32px; 
    display: block; 
    /* ALWAYS USE GRADIENT (No Flash on transition) */
    fill: url(#solanaGrad); 
    transition: all 0.3s ease; 
}

/* On Hover: Just Scale, NO GLOW (drop-shadow) as requested */
.solana-item .solana-logo-svg {
    transform-origin: center;
    transition: all 0.3s ease;
}
.solana-item:hover .solana-logo-svg {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.solana-item:hover .partner-name { 
    color: #9945FF; 
    text-shadow: 0 0 10px rgba(153, 69, 255, 0.6), 0 0 20px rgba(153, 69, 255, 0.4); 
}


/* 2. PHANTOM */
.phantom-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.phantom-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.phantom-item:hover .partner-name { 
    color: var(--col-phantom); 
    text-shadow: 0 0 10px rgba(171, 159, 242, 0.6), 0 0 20px rgba(171, 159, 242, 0.4); 
}

/* 3. CHAINLINK */
.chainlink-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.chainlink-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.chainlink-item:hover .partner-name { 
    color: var(--col-chainlink); 
    text-shadow: 0 0 10px rgba(55, 91, 210, 0.6), 0 0 20px rgba(55, 91, 210, 0.4); 
}


/* 5. MAGIC EDEN */
.magiceden-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.magiceden-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.magiceden-item:hover .partner-name { 
    color: var(--col-magiceden); 
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.6), 0 0 20px rgba(255, 51, 102, 0.4); 
}

/* 6. TENSOR */
.tensor-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.tensor-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.tensor-item:hover .partner-name { 
    color: var(--col-tensor); 
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.4); 
}

/* 7. HELIUS */
.helius-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.helius-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.helius-item:hover .partner-name { 
    color: var(--col-helius); 
    text-shadow: 0 0 10px rgba(153, 69, 255, 0.6), 0 0 20px rgba(153, 69, 255, 0.4); 
}

/* 8. JUPITER */
.jupiter-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.jupiter-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.jupiter-item:hover .partner-name { 
    color: #FFE500; 
    text-shadow: 0 0 10px rgba(255, 229, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.4); 
}

/* 9. LERMESS */
.lermess-item .partner-img {
    transform-origin: center;
    transition: all 0.3s ease;
}
.lermess-item:hover .partner-img { 
    filter: brightness(1.2);
    transform: scale(1.1); 
}
.lermess-item:hover .partner-name { 
    color: var(--col-lermess); 
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.6), 0 0 20px rgba(107, 70, 193, 0.4); 
}


/* --- Other Sections --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; padding-top: 30px; }
.team-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 0 0 25px 0; text-align: center; position: relative; transition: 0.3s; backdrop-filter: blur(20px); overflow: hidden; display: flex; flex-direction: column; }
.team-card:hover { transform: translateY(-5px); border-color: var(--secondary-cyan); }
.team-photo { width: 100%; height: 280px; object-fit: cover; border-radius: 20px 20px 0 0; margin: 0; background: #000; transition: all 0.3s; display: block; }
.team-card:hover .team-photo { transform: scale(1.05); box-shadow: 0 0 20px rgba(153, 69, 255, 0.4); }
.quote-icon { font-size: 1.5rem; color: var(--primary-neon); opacity: 0.5; margin: 15px 0 10px 0; transition: opacity 0.3s; }
.team-card:hover .quote-icon { opacity: 1; }
.team-quote { font-size: 0.9rem; line-height: 1.5; font-style: italic; color: var(--text-main); margin-bottom: 20px; min-height: 60px; padding: 0 20px; }
.team-info { border-top: 1px solid rgba(255,255,255,0.1); padding: 15px 20px 0 20px; margin-bottom: 15px; }
.team-name { display: block; font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; color: var(--secondary-cyan); margin-bottom: 3px; text-transform: uppercase; transition: color 0.3s; }
.team-card:hover .team-name { color: var(--primary-neon); text-shadow: 0 0 10px rgba(153, 69, 255, 0.5); }
.team-role { display: block; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }
.team-social { display: flex; justify-content: center; gap: 12px; margin: 15px 20px 20px 20px; }
.team-social-link { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 50%; color: var(--text-muted); text-decoration: none; transition: all 0.3s; font-size: 1rem; }
.team-social-link:hover { background: var(--primary-neon); border-color: var(--primary-neon); color: white; transform: translateY(-3px) scale(1.1); box-shadow: 0 5px 15px rgba(153, 69, 255, 0.4); }
.team-social-icon { width: 40px; height: 44px; object-fit: contain; filter: brightness(0.8); transition: filter 0.3s; }
.team-social-link:hover .team-social-icon { filter: brightness(1.2); }

.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; text-align: left; }
.roadmap-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 16px; padding: 25px; position: relative; border-top: 3px solid var(--text-muted); transition: 0.3s; }
.roadmap-card:hover { border-top-color: var(--primary-neon); background: rgba(255, 255, 255, 0.06); }
.roadmap-card::before { content: ''; position: absolute; top: -8px; left: 20px; width: 13px; height: 13px; background: #000; border: 3px solid var(--text-muted); border-radius: 50%; transition: 0.3s; }
.roadmap-card:hover::before { border-color: var(--primary-neon); background: var(--primary-neon); box-shadow: 0 0 15px var(--primary-neon); }
.phase-title { font-family: 'Orbitron', sans-serif; color: var(--secondary-cyan); font-size: 1.2rem; margin-bottom: 15px; }
.roadmap-list { list-style: none; padding: 0; }
.roadmap-list li { margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; position: relative; padding-left: 20px; }
.roadmap-list li::before { content: '•'; color: var(--primary-neon); position: absolute; left: 0; }

.faq-toggle-all-btn {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(0, 240, 255, 0.1));
    border: 1px solid var(--primary-neon);
    padding: 12px 30px;
    color: var(--text-main);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.faq-toggle-all-btn:hover {
    background: var(--primary-neon);
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.6);
    transform: translateY(-2px);
    color: white;
}
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { background: var(--glass-bg); margin-bottom: 12px; border-radius: 12px; border: 1px solid var(--glass-border); overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--primary-neon); box-shadow: 0 0 15px rgba(153, 69, 255, 0.1); }
.faq-question { padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Orbitron', sans-serif; font-size: 1rem; color: white; transition: color 0.3s; user-select: none; }
.faq-question:hover { color: var(--secondary-cyan); }
.faq-toggle { font-size: 1.5rem; color: var(--secondary-cyan); transition: transform 0.3s ease, color 0.3s ease; font-weight: 300; line-height: 1; min-width: 24px; text-align: center; }
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--error-red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out, padding 0.3s ease; opacity: 0; padding: 0; }
.faq-answer.open { opacity: 1; padding: 0; }
.faq-inner { padding: 0 20px 20px 20px; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* --- Why Solana Section --- */
.why-solana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-cyan));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 0 40px rgba(153, 69, 255, 0.2);
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(0, 240, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: none;
}

.why-card:hover .why-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-cyan));
    border-color: transparent;
    transform: scale(1.1) rotate(360deg);
    box-shadow: none;
    outline: none;
}

.why-icon-wrapper i {
    font-size: 2rem;
    color: var(--secondary-cyan);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.why-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.why-stat {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: auto;
    text-align: center;
    display: block;
    width: 100%;
    letter-spacing: 0.5px;
    padding-top: 15px;
}

/* --- Security Section --- */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.security-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.security-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-cyan);
    transition: all 0.4s ease;
}

.security-card:hover .security-icon {
    background: var(--secondary-cyan);
    transform: scale(1.1) rotate(360deg);
}

.security-icon i {
    font-size: 1.8rem;
    color: var(--secondary-cyan);
    transition: all 0.4s ease;
}

.security-card:hover .security-icon i {
    color: white;
}

.security-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.audit-badge {
    padding: 6px 15px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--secondary-cyan);
    border-radius: 20px;
    color: var(--secondary-cyan);
    font-size: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(0, 240, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(153, 69, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #FFFFFF, var(--secondary-cyan), #FFFFFF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    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;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn i {
    position: relative;
    z-index: 1;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-cyan));
    color: white;
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(153, 69, 255, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--glass-border);
}

.cta-secondary:hover {
    border-color: var(--secondary-cyan);
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 50px;
    border-top: 1px solid var(--glass-border);
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.cta-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.site-footer { background: rgba(5, 6, 20, 0.9); border-top: 1px solid var(--glass-border); padding: 50px 40px 30px; margin-top: 50px; position: relative; }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; position: relative; }
.footer-left { display: flex; align-items: flex-start; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-main); }
.footer-nav { display: flex; gap: 80px; flex: 1; justify-content: center; }
.footer-nav-column { display: flex; flex-direction: column; gap: 15px; }
.footer-heading { color: var(--secondary-cyan); font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; position: relative; }
.footer-nav-column:hover .footer-heading { color: var(--primary-neon); text-shadow: 0 0 10px rgba(153, 69, 255, 0.5); transition: all 0.3s ease; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; padding: 5px 0; }
.footer-links a::before { content: ''; position: absolute; left: -10px; top: 50%; transform: translateY(-50%) scaleX(0); width: 3px; height: 0; background: linear-gradient(180deg, var(--primary-neon), var(--secondary-cyan)); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px; }
.footer-links a:hover { color: var(--secondary-cyan); transform: translateX(8px); }
.footer-links a:hover::before { transform: translateY(-50%) scaleX(1); height: 60%; }
.footer-nav-column:hover { transform: translateY(-2px); transition: transform 0.3s ease; }
.footer-social { display: flex; align-items: flex-start; }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--text-main); transition: 0.3s; cursor: pointer; }
.social-icon:hover { background: var(--primary-neon); border-color: var(--primary-neon); transform: translateY(-3px); box-shadow: 0 0 10px var(--primary-neon); }
.footer-social-icon { width: 100px; height: 23px; object-fit: contain; filter: brightness(0.9); transition: filter 0.3s; }
.social-icon:hover .footer-social-icon { filter: brightness(1.2); }
.footer-copyright { max-width: 1400px; margin: 40px auto 0; padding-top: 20px; font-size: 0.9rem; color: var(--text-muted); text-align: left; border-top: 1px solid rgba(153, 69, 255, 0.2); position: relative; font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px; }
.footer-copyright::before { content: ''; position: absolute; top: -1px; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary-neon), transparent); opacity: 0.5; }
.footer-copyright span.copyright-year { color: var(--secondary-cyan); font-weight: 600; }
.footer-copyright span.brand-name { 
    font-family: 'Orbitron', sans-serif; 
    font-weight: 700; 
    letter-spacing: 1px; 
    background: linear-gradient(90deg, #9945FF, #00F0FF, #9945FF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(153, 69, 255, 0.6));
    position: relative;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.footer-copyright span.tagline { color: var(--text-muted); font-style: italic; position: relative; padding-left: 15px; }
.footer-copyright span.tagline::before { content: '•'; position: absolute; left: 5px; color: var(--primary-neon); opacity: 0.6; }

.support-widget { position: fixed; bottom: 30px; right: 30px; z-index: 100; cursor: pointer; transition: transform 0.3s ease; }
.support-widget:hover { transform: scale(1.1); }
.support-icon { width: 200px; height: auto; filter: drop-shadow(0 0 15px rgba(153, 69, 255, 0.5)); display: block; }

/* Скрыть робота на мобильных устройствах */
@media (max-width: 768px) {
    .support-widget {
        display: none !important;
    }
}

.download-buttons { margin-top: 40px; display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.download-btn { background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(0, 240, 255, 0.1)); border: 1px solid var(--primary-neon); padding: 15px 30px; color: var(--text-main); font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 1px; border-radius: 50px; cursor: pointer; transition: all 0.4s ease; font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.download-btn i { font-size: 1.2rem; }
.download-btn:hover { background: var(--primary-neon); box-shadow: 0 0 25px rgba(153, 69, 255, 0.6); transform: translateY(-3px); color: white; }


/* Modals (Z-Index High) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.4s ease-in-out; display: flex; justify-content: center; align-items: center; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: var(--modal-bg); border: 1px solid var(--glass-border); width: 420px; padding: 40px; border-radius: 24px; box-shadow: 0 0 60px rgba(138, 86, 255, 0.2); text-align: center; transform: scale(0.9); opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modal-overlay.active .modal-box { transform: scale(1); opacity: 1; }
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: white; }
.modal-title { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; margin-bottom: 10px; color: white; }
.modal-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }
.input-group { margin-bottom: 15px; text-align: left; }
.input-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; color: var(--text-muted); }
.input-group input { width: 100%; padding: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; color: white; font-family: 'Rajdhani', sans-serif; font-size: 1rem; outline: none; transition: 0.3s; }
.input-group input:focus { border-color: var(--secondary-cyan); box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); }

/* Password Toggle Icon Styles */
.password-wrapper {
    position: relative;
}

.password-input {
    padding-right: 45px !important;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1rem;
}

.password-toggle:hover {
    color: var(--secondary-cyan);
    text-shadow: 0 0 8px var(--secondary-cyan), 0 0 12px var(--secondary-cyan);
    transform: translateY(-50%) scale(1.1);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}
.error-msg { color: var(--error-red); font-size: 0.9rem; margin-bottom: 15px; min-height: 20px; font-weight: 600; display: none; }
.error-msg.visible { display: block; animation: shake 0.3s ease-in-out; }
@keyframes shake { 0% { transform: translateX(0); } 25% { transform: translateX(-5px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-5px); } 100% { transform: translateX(0); } }
.submit-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary-neon), #7e22ce); border: none; border-radius: 12px; color: #ffffff; font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s; margin-top: 5px; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
.submit-btn:hover { background: linear-gradient(135deg, #aa55ff, var(--primary-neon)); box-shadow: 0 0 25px rgba(153, 69, 255, 0.6); transform: translateY(-2px); }
.switch-footer { margin-top: 25px; font-size: 0.95rem; color: var(--text-muted); }
.switch-link { color: var(--secondary-cyan); font-weight: 600; cursor: pointer; margin-left: 5px; transition: 0.3s; }
.switch-link:hover { text-shadow: 0 0 8px var(--secondary-cyan); text-decoration: underline; }

@media (max-width: 1100px) {
    .nav-center, .network-status, .token-ticker, .lang-switch { display: none; }
    .hamburger { display: block; }
    .auth-btn { display: none; }
    /* Кнопка Log In в мобильном меню должна быть видна */
    .mobile-menu .auth-btn { display: flex !important; }
    .hero h1 { font-size: 3rem; }
    .highlight-text { font-size: 2.5rem; }
    .stats-container { 
        flex-direction: column; 
        width: 90%; 
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .stat-card {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid, .empower-grid, .team-grid, .roadmap-grid, .why-solana-grid, .security-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; align-items: center; gap: 40px; text-align: center; }
    .footer-nav { flex-direction: column; gap: 30px; width: 100%; }
    .footer-nav-column { align-items: center; }
    .footer-links { align-items: center; }
    .footer-social { width: 100%; justify-content: center; }
    .footer-copyright { text-align: center; }
    nav { padding: 15px 20px; }
    .modal-box { width: 90%; padding: 25px; }
    .carousel-wrapper { width: 100%; border-radius: 0; border-left: none; border-right: none; }
    .prev-btn { left: 10px; } .next-btn { right: 10px; } .slide { height: 300px; }
    .cta-title { font-size: 2.5rem; }
    .cta-subtitle { font-size: 1.1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 300px; }
    .cta-stats { gap: 30px; }
    .cta-stat-value { font-size: 2rem; }
}

/* Дополнительные исправления для мобильных (до 768px) */
@media (max-width: 768px) {
    /* Улучшение мобильного меню */
    .mobile-menu {
        width: 100% !important;
        right: -100%;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-link {
        font-size: 1.1rem !important;
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
    
    /* Overlay для мобильного меню - скрыт на мобильных устройствах */
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .mobile-menu-overlay.active {
        display: none !important;
    }
    
    /* Кнопка закрытия мобильного меню - видна только на мобильных */
    .mobile-menu-close {
        display: flex !important;
    }
    
    /* Улучшение кнопки Log In в мобильном меню - выделенная кнопка */
    .mobile-menu .auth-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin-top: 15px !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        
        /* Выделяющийся стиль */
        background: linear-gradient(135deg, var(--primary-neon), rgba(0, 240, 255, 0.8)) !important;
        border: 2px solid var(--primary-neon) !important;
        box-shadow: 0 4px 20px rgba(153, 69, 255, 0.5),
                    0 0 30px rgba(153, 69, 255, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        color: white !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
        
        /* Анимация */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Эффект при наведении на кнопку Login */
    .mobile-menu .auth-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
        transition: left 0.5s ease !important;
    }
    
    .mobile-menu .auth-btn:hover::before {
        left: 100% !important;
    }
    
    .mobile-menu .auth-btn:hover {
        background: linear-gradient(135deg, rgba(153, 69, 255, 0.9), var(--secondary-cyan)) !important;
        box-shadow: 0 6px 30px rgba(153, 69, 255, 0.7),
                    0 0 40px rgba(153, 69, 255, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-2px) !important;
        border-color: var(--secondary-cyan) !important;
    }
    
    .mobile-menu .auth-btn:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 15px rgba(153, 69, 255, 0.5) !important;
    }
    
    /* Улучшение hero фона */
    .hero::before {
        width: 400px !important;
        height: 400px !important;
    }
    
    /* Улучшение отступов для всех секций */
    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Улучшение grid для карточек */
    .features-grid, .empower-grid {
        gap: 20px !important;
    }
    
    /* Улучшение текста в карточках */
    .feature-card p, .empower-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    .why-solana-section, .security-section, .cta-section { padding: 60px 20px; }
    .why-card, .security-card { 
        padding: 22px 18px !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .why-card h3, .security-card h3 {
        font-size: 1.2rem !important;
    }
    
    .why-card p, .security-card p {
        font-size: 0.9rem !important;
    }
    
    .team-card {
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .team-photo {
        width: 100% !important;
        height: 220px !important;
        margin: 0 !important;
        border-radius: 20px 20px 0 0 !important;
    }
    
    .team-quote {
        padding: 0 15px !important;
    }
    
    .team-info {
        padding: 15px 15px 0 15px !important;
    }
    
    .team-social {
        margin: 15px 15px 20px 15px !important;
    }
    
    .team-social {
        opacity: 1 !important;
        transform: translateY(0) !important;
        justify-content: center !important;
    }
    
    .team-social-link {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    .roadmap-card {
        width: 100% !important;
        max-width: 320px !important;
        min-height: 180px !important;
        margin: 0 auto !important;
        padding: 22px 20px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .phase-title {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
        flex-shrink: 0 !important;
    }
    
    .roadmap-list {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
    
    .roadmap-list li {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }
    .cta-title { font-size: 2rem; }
    .cta-stats { flex-direction: column; gap: 25px; }
    .solana-comparison { padding: 20px; }
    .security-auditors div { font-size: 0.8rem; padding: 12px 20px; }
}

/* ============================================
   ИСПРАВЛЕНИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ (только для телефонов)
   ============================================ */

/* Для планшетов и телефонов (до 768px) */
@media (max-width: 768px) {
    /* Навигация */
    nav {
        padding: 12px 15px !important;
    }
    
    .logo-img {
        height: 32px !important;
    }
    
    .logo-text {
        font-size: 0.9rem !important;
        margin-left: 8px !important;
        letter-spacing: 1px !important;
    }
    
    .hamburger {
        font-size: 1.3rem !important;
        padding: 5px;
    }
    
    /* Hero секция - центрирование всего контента */
    .hero {
        padding: 100px 15px 40px 15px !important;
        min-height: auto !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .gradient-text {
        font-size: 2.2rem !important;
        display: block;
        text-align: center !important;
    }
    
    .highlight-text {
        font-size: 2rem !important;
        margin-top: 5px !important;
        display: block;
        text-align: center !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        padding: 0 10px;
        margin-bottom: 30px !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Stats container - горизонтальное расположение в один ряд */
    .stats-container {
        flex-direction: row !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 10px !important;
        padding: 0 15px !important;
        margin: 20px auto 0 auto !important;
        align-items: stretch !important;
        justify-content: center !important;
        display: flex !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-card {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 20px 16px !important;
        margin: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    .stat-value {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }
    
    .stat-value {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }
    
    /* Секции */
    .features, .empower-section, .experience-section, .team-section, .roadmap-section, .faq-section, .why-solana-section, .security-section {
        padding: 60px 15px !important;
    }
    
    .features h2, .empower-section h2, .experience-section h2, .team-section h2, .roadmap-section h2, .faq-section h2, .why-solana-section h2, .security-section h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        padding: 0 10px;
        margin-bottom: 30px !important;
    }
    
    /* Карточки */
    .feature-card, .empower-card {
        padding: 20px 18px !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }
    
    .feature-card h3, .empower-card h3 {
        font-size: 1.2rem !important;
    }
    
    .feature-icon, .empower-icon {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-icon, .empower-icon {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    /* Кнопки */
    button, .btn, .auth-btn {
        min-height: 44px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Модальные окна - компактные для планшетов */
    .modal-overlay {
        padding: 20px 10px !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .modal-box {
        width: 90% !important;
        max-width: 500px !important;
        padding: 30px 25px !important;
        border-radius: 20px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        margin: auto !important;
        position: relative !important;
    }
    
    .modal-title {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }
    
    .modal-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }
    
    .close-modal {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        font-size: 1.5rem !important;
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 50% !important;
    }
    
    .input-group {
        margin-bottom: 12px !important;
    }
    
    .input-group input {
        padding: 10px 12px !important;
        font-size: 16px !important; /* Предотвращает zoom на iOS */
    }
    
    button, .btn, .submit-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        min-height: 44px !important;
    }
    
    /* Carousel */
    .carousel-wrapper {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .slide {
        height: 250px !important;
    }
    
    /* Footer */
    .footer-content {
        padding: 40px 15px !important;
    }
}

/* Для маленьких телефонов (до 480px) */
@media (max-width: 480px) {
    /* Навигация */
    nav {
        padding: 10px 12px !important;
    }
    
    .logo-img {
        height: 28px !important;
    }
    
    .logo-text {
        font-size: 0.8rem !important;
        margin-left: 6px !important;
    }
    
    /* Hero секция - центрирование всего контента */
    .hero {
        padding: 90px 10px 30px 10px !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .gradient-text {
        font-size: 1.8rem !important;
        text-align: center !important;
        display: block;
    }
    
    .highlight-text {
        font-size: 1.6rem !important;
        text-align: center !important;
        display: block;
    }
    
    .hero p {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
        padding: 0 5px;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Stats container - горизонтальное расположение в один ряд */
    .stats-container {
        flex-direction: row !important;
        gap: 6px !important;
        padding: 0 8px !important;
        margin: 20px auto 0 auto !important;
        align-items: stretch !important;
        justify-content: center !important;
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-card {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 14px 10px !important;
        margin: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        position: relative !important;
    }
    
    .stat-value {
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
    }
    
    /* Roadmap карточки - одинаковый размер для всех фаз */
    .roadmap-card {
        width: 100% !important;
        max-width: 300px !important;
        min-height: 170px !important;
        margin: 0 auto !important;
        padding: 20px 18px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .phase-title {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        flex-shrink: 0 !important;
    }
    
    .roadmap-list {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
    
    .roadmap-list li {
        font-size: 0.8rem !important;
        margin-bottom: 7px !important;
        line-height: 1.4 !important;
    }
    
    .stat-value {
        text-align: center !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    .stat-label {
        text-align: center !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    .stat-value {
        font-size: 1.3rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Секции */
    .features, .empower-section, .experience-section, .team-section, .roadmap-section, .faq-section, .why-solana-section, .security-section {
        padding: 50px 10px !important;
    }
    
    .features h2, .empower-section h2, .experience-section h2, .team-section h2, .roadmap-section h2, .faq-section h2, .why-solana-section h2, .security-section h2 {
        font-size: 1.6rem !important;
        margin-bottom: 25px !important;
        padding: 0 5px;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        padding: 0 5px;
    }
    
    /* Карточки */
    .feature-card, .empower-card {
        padding: 18px 16px !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .feature-card h3, .empower-card h3 {
        font-size: 1.1rem !important;
    }
    
    .feature-icon, .empower-icon {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .feature-card p, .empower-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    /* Модальные окна - компактные для маленьких телефонов */
    .modal-overlay {
        padding: 15px 10px !important;
        align-items: flex-start !important;
        justify-content: center !important;
        overflow-y: auto !important;
    }
    
    .modal-box {
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
        padding: 25px 20px !important;
        border-radius: 16px !important;
        margin: auto !important;
        max-height: calc(100vh - 30px) !important;
        overflow-y: auto !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    .modal-title {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    .modal-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 18px !important;
        line-height: 1.4 !important;
    }
    
    .close-modal {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
        font-size: 1.4rem !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 50% !important;
        z-index: 10 !important;
        margin: 0 !important;
    }
    
    .input-group {
        margin-bottom: 12px !important;
    }
    
    .input-group label {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }
    
    .input-group input {
        padding: 10px 12px !important;
        font-size: 16px !important; /* Предотвращает zoom на iOS */
        border-radius: 10px !important;
    }
    
    button, .btn, .submit-btn {
        padding: 12px 18px !important;
        font-size: 0.85rem !important;
        min-height: 44px !important;
        border-radius: 10px !important;
    }
    
    /* Улучшение для длинного контента */
    .modal-box * {
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
    
    /* Carousel */
    .carousel-wrapper {
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .slide {
        height: 200px !important;
    }
    
    .prev-btn, .next-btn {
        font-size: 1.2rem !important;
        padding: 8px !important;
    }
    
    /* Footer */
    .footer-content {
        padding: 30px 10px !important;
    }
    
    /* Кнопки */
    button, .btn, .auth-btn {
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 20px 40px;
    z-index: 1500;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-consent-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-cyan));
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 25px rgba(153, 69, 255, 0.6);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.cookie-btn-reject:hover {
    color: var(--text-main);
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
}

/* Мобильная адаптация для Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-consent-text {
        flex-direction: column;
        min-width: auto;
    }
    
    .cookie-consent-text i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 28px;
    }
}

/* Recruitment Banner */
.recruitment-banner {
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.12), rgba(0, 240, 255, 0.12));
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(153, 69, 255, 0.2);
    border-bottom: 1px solid rgba(153, 69, 255, 0.2);
}

.recruitment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(153, 69, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.recruitment-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.recruitment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.recruitment-content:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.25);
}

.recruitment-icon {
    font-size: 3.5rem;
    color: var(--primary-neon);
    filter: drop-shadow(0 0 15px rgba(153, 69, 255, 0.6));
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(153, 69, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(153, 69, 255, 0.9)); }
}

.recruitment-text {
    flex: 1;
    text-align: left;
}

.recruitment-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.recruitment-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.recruitment-btn {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-cyan));
    border: 1px solid var(--primary-neon);
    padding: 16px 38px;
    color: var(--text-main);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(153, 69, 255, 0.4);
}

.recruitment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(153, 69, 255, 0.7);
    background: linear-gradient(135deg, var(--secondary-cyan), var(--primary-neon));
}

.recruitment-btn i {
    transition: transform 0.3s ease;
}

.recruitment-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recruitment-banner {
        padding: 35px 15px;
    }
    
    .recruitment-content {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
        gap: 22px;
    }
    
    .recruitment-text {
        text-align: center;
    }
    
    .recruitment-title {
        font-size: 1.3rem;
    }
    
    .recruitment-description {
        font-size: 1.05rem;
    }
    
    .recruitment-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
    
    .recruitment-icon {
        font-size: 2.8rem;
    }
}

