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

        :root {
            --background: hsl(222, 47%, 11%);
            --foreground: hsl(210, 40%, 98%);
            --card: hsl(224, 40%, 16%);
            --card-foreground: hsl(210, 40%, 98%);
            --primary: hsl(199, 89%, 48%);
            --primary-foreground: hsl(210, 40%, 98%);
            --secondary: hsl(217, 33%, 17%);
            --muted-foreground: hsl(215, 20%, 65%);
            --accent: hsl(142, 76%, 36%);
            --border: hsl(217, 33%, 25%);
            --radius: 0.75rem;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Main Content */
        .main-content {
            padding-top: 6rem;
            padding-bottom: 4rem;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeIn 0.6s ease-out;
        }

        .hero-icon {
            display: inline-flex;
            padding: 1rem;
            background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.2), hsla(142, 76%, 36%, 0.2));
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
        }

        .hero-icon svg {
            width: 2.5rem;
            height: 2.5rem;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            max-width: 48rem;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
            animation: fadeIn 0.6s ease-out 0.2s both;
        }

        .stat-card {
            background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.1), hsla(142, 76%, 36%, 0.1));
            border: 1px solid hsla(199, 89%, 48%, 0.2);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* Section Title */
        .section-title {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            transition: border-color 0.3s;
        }

        .feature-card:hover {
            border-color: hsla(199, 89%, 48%, 0.5);
        }

        .feature-icon {
            display: inline-flex;
            padding: 0.75rem;
            background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.2), hsla(142, 76%, 36%, 0.2));
            border-radius: var(--radius);
            margin-bottom: 1rem;
        }

        .feature-icon svg {
            width: 2rem;
            height: 2rem;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        .feature-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* Social Links */
        .social-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .social-intro p {
            color: var(--muted-foreground);
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .social-card {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
            display: block;
        }

        .social-card:hover {
            border-color: hsla(199, 89%, 48%, 0.5);
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
        }

        .social-icon {
            display: inline-flex;
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            transition: transform 0.3s;
        }

        .social-card:hover .social-icon {
            transform: scale(1.1);
        }

        .social-icon.twitter {
            background: linear-gradient(135deg, hsl(199, 89%, 48%), hsl(199, 89%, 58%));
        }

        .social-icon.telegram {
            background: linear-gradient(135deg, hsl(200, 98%, 39%), hsl(200, 98%, 49%));
        }

        .social-icon.support {
            background: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 76%, 46%));
        }

        .social-icon.email {
            background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
        }

        .social-icon svg {
            width: 2rem;
            height: 2rem;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .social-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-card p {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-bottom: 1rem;
        }

        .social-btn {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background-color: transparent;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            color: var(--foreground);
            transition: all 0.3s;
        }

        .social-card:hover .social-btn {
            background-color: var(--primary);
            color: var(--primary-foreground);
            border-color: var(--primary);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 48rem;
            margin: 0 auto 4rem;
        }

        .faq-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .faq-header svg {
            width: 2rem;
            height: 2rem;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        .faq-item {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .faq-question svg {
            width: 1.25rem;
            height: 1.25rem;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
            flex-shrink: 0;
        }

        .faq-answer {
            color: var(--muted-foreground);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3rem 1.5rem;
            background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.1), hsla(142, 76%, 36%, 0.1));
            border: 1px solid hsla(199, 89%, 48%, 0.2);
            border-radius: calc(var(--radius) * 2);
            margin-bottom: 3rem;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            
                padding: 8px 16px;
            border-radius: var(--radius);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
           
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--primary-foreground);
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid hsla(199, 89%, 48%, 0.5);
            color: var(--foreground);
        }

        .btn-outline:hover {
            background: hsla(199, 89%, 48%, 0.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .navbar-links {
                gap: 1rem;
                font-size: 0.875rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-buttons {
                flex-direction: column;
            }
        }