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

html,
body {
    height: auto;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #171717;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: auto;
}

/* Starry background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 100px 150px, #ffffff, transparent),
        radial-gradient(2px 2px at 300px 80px, #ffffff, transparent),
        radial-gradient(1px 1px at 500px 200px, #ffffff, transparent),
        radial-gradient(1px 1px at 700px 120px, #ffffff, transparent),
        radial-gradient(2px 2px at 900px 180px, #ffffff, transparent),
        radial-gradient(1px 1px at 200px 300px, #ffffff, transparent),
        radial-gradient(1px 1px at 600px 350px, #ffffff, transparent),
        radial-gradient(2px 2px at 800px 400px, #ffffff, transparent),
        radial-gradient(1px 1px at 150px 450px, #ffffff, transparent),
        radial-gradient(1px 1px at 400px 500px, #ffffff, transparent);
    background-size: 1000px 600px;
    z-index: -1;
    opacity: 0.4;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #171717;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-img {
    height: 30px;
    width: auto;
}

.launch-btn {
    background: rgb(255 255 255 / 7%);
    border: unset;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.launch-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #171717;
    padding-top: 80px;
    overflow: hidden;
    z-index: 1
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.intro-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.beta-tag {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    padding: 1px 5px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
}

.intro-text {
    margin-left: 5px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
}

.hero-title {
    width: fit-content;
    font-size: 4rem;
    font-family: fantasy;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-description {
    font-size: 16px;
    line-height: 1.3;
    font-family: sans-serif;
    color: #9ca3af;
    margin-bottom: 40px;
}

.highlight {
    color: #10b981;
    font-weight: 600;
}

.cta-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    position: relative;
    width: 240px;
    height: 480px;
    background: #1a1a1a;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #333;
    z-index: 3;
}

.phone-screen {
    width: 200px;
    height: 420px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-logo {
    width: 80%;
    object-fit: contain;
}


.gradient-circle {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.8;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 5px 8px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-link222 {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}





.nav-link.active,
.nav-link:hover {
    color: #000;
    /* background: rgba(0, 0, 0, 0.1); */
}





/* Features Section */
.features {
    padding: 120px 0;
    background: #171717;
    display: flex;
    z-index: 1
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
    margin-bottom: 80px;
    max-width: 1200px;
}

.feature-card {
    background: #1C1C1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.2;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #171717;
    z-index: 1
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.premium {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
}

.limited-offer {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.period {
    font-size: 1rem;
    color: #9ca3af;
    margin-left: 4px;
}

.plan-description {
    color: #9ca3af;
    margin-bottom: 32px;
    line-height: 1.2;
}

.features-list {
    list-style: none;
}

.features-list li {
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
}

.features-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #171717;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 60px;
    display: flex;
}

.footer-content {
    display: flex;
    gap: 100px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
}

.footer-logo {
    height: 30px;
    margin-right: 20px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-group h4 {
    color: #ffffff6b;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.link-group>a {
    display: block;
    color: #ffffff9c;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #ffffff;
}

.telegram-link {
    color: #06b6d4;
    text-decoration: none;
}

.copyright {
    color: #ffffff9c;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        display: inline-block
    }

    .footer-left {
        display: inline-block;
        margin-bottom: 20px;
    }

    .footer-left .footer-links {
        margin-top: 20px;
    }

    .floating-nav {
        gap: 0;
        padding: 6px 8px;
        bottom: 20px;
    }

    .nav-link {
        padding: 8px 16px;
        font-size: 12px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .phone-screen {
        width: 160px;
        height: 320px;
    }

    .gradient-circle {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
}