:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --text-primary: #FFD700;
    --text-secondary: #FFEB3B;
    --text-tertiary: #FFC107;
    --accent-primary: #FFD700;
    --accent-secondary: #FFEB3B;
    --accent-tertiary: #FFC107;
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FFEB3B 50%, #FFC107 100%);
    --gradient-2: linear-gradient(135deg, #FFEB3B 0%, #FFD700 100%);
    --gradient-3: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
    --gradient-4: linear-gradient(135deg, #FFD700 0%, #FFEB3B 100%);
    --gradient-5: linear-gradient(135deg, #FFEB3B 0%, #FFC107 100%);
    --glow-color: rgba(255, 215, 0, 0.3);
}

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

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

body {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    direction: rtl;
    text-align: right;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #FFEB3B;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #FFD700;
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: none;
    will-change: auto;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.4) 0%, rgba(96, 96, 96, 0.2) 50%, transparent 100%);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 160, 160, 0.35) 0%, rgba(128, 128, 128, 0.15) 50%, transparent 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: 8s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 112, 112, 0.3) 0%, rgba(80, 80, 80, 0.15) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 15s;
}

@media (max-width: 768px) {
    .orb-1 {
        width: 400px;
        height: 400px;
        top: -150px;
        left: -150px;
    }

    .orb-2 {
        width: 350px;
        height: 350px;
        bottom: -100px;
        right: -100px;
    }

    .orb-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
        bottom: -80px;
        right: -80px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(80px, -80px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-60px, 60px) scale(0.95) rotate(180deg);
    }
    75% {
        transform: translate(40px, 40px) scale(1.05) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    color: #FFD700;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.3);
}

.title-line {
    display: block;
    animation: none;
    opacity: 1;
}

.title-line:nth-child(2) {
    opacity: 1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #FFEB3B;
    margin-bottom: 48px;
    line-height: 1.75;
    animation: none;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: none;
}

.badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #FFEB3B;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    color: #FFD700;
}



/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFD700;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.section-description {
    font-size: 1.1rem;
    color: #FFEB3B;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.about-card {
    padding: 48px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 48px rgba(255, 215, 0, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.about-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700;
}

.about-card p {
    color: #FFEB3B;
    line-height: 1.8;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    position: relative;
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    opacity: 0.25;
    letter-spacing: -0.03em;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700;
}

.feature-item p {
    color: #FFEB3B;
    line-height: 1.8;
}

/* Info Section */
.info {
    background: var(--bg-secondary);
    position: relative;
}

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

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.info-text h2 {
    text-align: right;
    margin-bottom: 30px;
}

.info-text p {
    color: #FFEB3B;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-stats {
    display: flex;
    gap: 40px;
}

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

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #FFEB3B;
    font-size: 0.9rem;
}

.info-visual {
    position: relative;
}

.visual-card {
    position: relative;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.5s ease;
}

.visual-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.2) 0%, rgba(96, 96, 96, 0.1) 50%, transparent 70%);
    animation: none;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #FFD700;
}

.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-bar {
    height: 32px;
    border-radius: 16px;
    min-width: 50px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.chart-item span {
    color: #FFEB3B;
    font-size: 0.9rem;
    min-width: 100px;
}

/* Roadmap Section */
.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(128, 128, 128, 0.5) 0%, rgba(96, 96, 96, 0.3) 100%);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    padding-right: 80px;
    margin-bottom: 60px;
}

.timeline-marker {
    position: absolute;
    right: 20px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #808080 0%, #606060 100%);
    border: 5px solid var(--bg-primary);
    box-shadow: 0 0 24px rgba(128, 128, 128, 0.6), 0 0 48px rgba(128, 128, 128, 0.3);
    animation: none;
}

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

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
    transform: translateX(12px);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 32px rgba(255, 215, 0, 0.15);
}

@media (max-width: 768px) {
    .timeline-content:hover {
        transform: none;
    }
}

.timeline-date {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFD700;
}

.timeline-content p {
    color: #FFEB3B;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background: var(--bg-secondary);
    position: relative;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.1);
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #FFD700;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 28px;
}

.faq-answer p {
    color: #FFEB3B;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section p {
    color: #FFEB3B;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFEB3B;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .nav-content {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        width: 100%;
        padding: 30px 20px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 16px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 24px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
        padding: 0 10px;
        text-align: center;
    }

    .hero-badges {
        gap: 12px;
        padding: 0 10px;
        justify-content: center;
        align-items: center;
    }

    .badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-text {
        text-align: center;
        width: 100%;
    }

    .info-text h2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .info-text p {
        text-align: center;
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .info-stats {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .visual-card {
        padding: 32px 24px;
    }

    .card-content h3 {
        font-size: 1.3rem;
        text-align: center;
    }

    .distribution-chart {
        gap: 12px;
    }

    .chart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .chart-bar {
        width: 100% !important;
        height: 28px;
    }

    .chart-item span {
        min-width: auto;
        font-size: 0.85rem;
    }

    .roadmap-timeline::before {
        right: 15px;
    }

    .timeline-item {
        padding-right: 50px;
        margin-bottom: 40px;
    }

    .timeline-marker {
        right: 5px;
        width: 20px;
        height: 20px;
    }

    .timeline-content {
        padding: 24px 20px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }

    .about-grid {
        gap: 20px;
    }

    .about-card {
        padding: 32px 24px;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-item {
        padding: 32px 24px;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 10px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .telegram-cta {
        padding: 80px 0;
    }

    .cta-content {
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .cta-icon {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 2rem;
        padding: 0 10px;
        text-align: center;
    }

    .cta-description {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }

    .telegram-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }
}

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

    .nav-content {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        padding: 0;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0;
    }

    .badge {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-card {
        padding: 28px 20px;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 28px 20px;
    }

    .feature-number {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .info-content {
        gap: 30px;
    }

    .info-text p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .info-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .visual-card {
        padding: 24px 20px;
    }

    .card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .chart-item {
        gap: 6px;
    }

    .chart-bar {
        height: 24px;
    }

    .chart-item span {
        font-size: 0.8rem;
    }

    .roadmap-timeline::before {
        right: 12px;
    }

    .timeline-item {
        padding-right: 45px;
        margin-bottom: 30px;
    }

    .timeline-marker {
        right: 2px;
        width: 18px;
        height: 18px;
    }

    .timeline-content {
        padding: 20px 16px;
    }

    .timeline-date {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 18px 16px;
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .telegram-cta {
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .cta-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
        padding: 0;
        text-align: center;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 32px;
        padding: 0;
        text-align: center;
    }

    .telegram-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer {
        padding: 50px 0 24px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 24px;
        font-size: 0.85rem;
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
        padding: 0;
    }
}

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

    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-card,
    .feature-item,
    .timeline-content,
    .visual-card {
        padding: 24px 16px;
    }

    .badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .telegram-button {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth page transitions */
body {
    opacity: 0;
    animation: fadeInBody 0.6s ease-out forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

/* Enhanced hover effects */
.about-card,
.feature-item,
.timeline-content,
.faq-item {
    will-change: transform;
}

/* Gradient text animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Telegram CTA Section */
.telegram-cta {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.telegram-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 128, 128, 0.3), transparent);
}

.telegram-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(128, 128, 128, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 96, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: none;
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.1rem;
    color: #FFEB3B;
    margin-bottom: 40px;
    line-height: 1.6;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
    outline: none;
}

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

.telegram-button:hover::before {
    left: 100%;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.4);
}

.telegram-button:focus {
    outline: 2px solid rgba(255, 215, 0, 0.5);
    outline-offset: 2px;
}

.telegram-button:active {
    transform: translateY(-1px);
}

.telegram-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Background Animations */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(128, 128, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 128, 128, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: none;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: rgba(128, 128, 128, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: none;
    display: none;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    50% {
        transform: translate(100px, -100px) scale(1.5);
        opacity: 0.5;
    }
}

/* Animated Lines */
.animated-line {
    position: fixed;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(128, 128, 128, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
    animation: none;
    display: none;
}

@keyframes lineMove {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Section Background Effects */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.02) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: none;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

