        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gold: #FFD700;
            --gold-dark: #FFA500;
            --gold-darker: #FF8C00;
            --bg-dark: #0a0a0a;
            --bg-darker: #000000;
            --text-light: #ffffff;
            --text-gray: #aaaaaa;
            --text-dark: #666666;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Навигация */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
        
        /* Герой секция */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 20px 50px;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }
        
        .hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)); }
            to { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8)); }
        }
        
        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--gold);
            display: block;
        }
        
        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }
        
        .btn-secondary {
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }
        
        /* Floating particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Секции */
        .section {
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* О проекте */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .about-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .about-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .about-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--gold);
        }
        
        .about-text {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Проблемы и решения */
        .problems-solutions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .problems, .solutions {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            padding: 40px;
        }
        
        .problems {
            border: 2px solid rgba(255, 0, 0, 0.3);
        }
        
        .solutions {
            border: 2px solid rgba(0, 255, 0, 0.3);
        }
        
        .problems h3, .solutions h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .problems h3 {
            color: #ff6b6b;
        }
        
        .solutions h3 {
            color: #51cf66;
        }
        
        .list-item {
            display: flex;
            align-items: start;
            margin-bottom: 20px;
            gap: 15px;
        }
        
        .list-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .problems .list-icon {
            color: #ff6b6b;
        }
        
        .solutions .list-icon {
            color: #51cf66;
        }
        
        /* Токеномика */
        .tokenomics-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .tokenomics-chart {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .tokenomics-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .token-allocation {
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--gold);
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .token-allocation:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }
        
        .allocation-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .allocation-name {
            font-weight: 600;
            color: var(--gold);
        }
        
        .allocation-percentage {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .allocation-details {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Дорожная карта */
        .roadmap {
            position: relative;
            padding: 60px 0;
        }
        
        .roadmap-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--gold), var(--gold-dark));
            transform: translateX(-50%);
        }
        
        .roadmap-item {
            position: relative;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
        }
        
        .roadmap-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .roadmap-content {
            width: 45%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .roadmap-content:hover {
            transform: scale(1.05);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .roadmap-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: var(--bg-dark);
            border: 4px solid var(--gold);
            border-radius: 50%;
            z-index: 1;
        }
        
        .roadmap-date {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .roadmap-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .roadmap-description {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Команда */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .team-member {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .team-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--bg-dark);
        }
        
        .team-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--gold);
        }
        
        .team-position {
            color: var(--text-gray);
            margin-bottom: 15px;
        }
        
        .team-experience {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: rgba(255, 215, 0, 0.5);
        }
        
        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--gold);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 25px 25px;
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* CTA секция */
        .cta {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            margin: 100px auto;
            max-width: 1000px;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        
        .cta-title {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .cta-text {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 40px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Футер */
        .footer {
            background: var(--bg-darker);
            padding: 60px 20px 30px;
            margin-top: 100px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--gold);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }
        
        /* Мобильная адаптация */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .problems-solutions {
                grid-template-columns: 1fr;
            }
            
            .tokenomics-container {
                grid-template-columns: 1fr;
            }
            
            .roadmap-line {
                left: 20px;
            }
            
            .roadmap-item {
                flex-direction: column !important;
                align-items: flex-start;
                padding-left: 60px;
            }
            
            .roadmap-content {
                width: 100%;
            }
            
            .roadmap-dot {
                left: 20px;
            }
        }