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

        body {
            background: #000000;
            font-family: 'Courier New', 'Fira Code', monospace;
            color: #ffffff;
            line-height: 1.6;
        }

        .nav {
            position: sticky;
            top: 0;
            background: #000000;
            border-bottom: 1px solid #333;
            padding: 15px 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            z-index: 100;
        }

        .nav-btn {
            background: transparent;
            border: 1px solid #555;
            color: #fff;
            padding: 10px 24px;
            font-family: 'Courier New', monospace;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }

        .nav-btn.active {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

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

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .project-name {
            font-size: 52px;
            font-weight: bold;
            letter-spacing: 2px;
            border-right: 3px solid #fff;
            display: inline-block;
            padding-right: 15px;
        }

        .owner-name {
            margin-top: 15px;
            font-size: 18px;
            color: #ccc;
        }

        .owner-name a {
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid #555;
            transition: all 0.3s ease;
        }

        .owner-name a:hover {
            border-bottom-color: #fff;
            letter-spacing: 1px;
        }

        .project-link {
            margin-top: 10px;
            font-size: 18px;
        }

        .project-link a {
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid #555;
            transition: all 0.3s ease;
        }

        .project-link a:hover {
            border-bottom-color: #fff;
            letter-spacing: 1px;
        }

        .tagline {
            color: #aaa;
            margin-top: 15px;
            font-size: 14px;
        }

        .section {
            display: none;
        }

        .section.active {
            display: block;
        }

        .card {
            background: #0a0a0a;
            border: 1px solid #2a2a2a;
            padding: 25px;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .card:hover {
            border-color: #fff;
            transform: translateY(-5px);
        }

        .price {
            font-size: 32px;
            font-weight: bold;
            margin: 15px 0;
            color: #ddd;
        }

        .price small {
            font-size: 14px;
            color: #777;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .about-box {
            background: #0a0a0a;
            border-left: 3px solid #fff;
            padding: 25px;
            margin: 20px 0;
        }

        .stat-box {
            background: #0a0a0a;
            border: 1px solid #222;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            border-color: #fff;
            transform: scale(1.02);
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .team-card {
            background: #0a0a0a;
            border: 1px solid #2a2a2a;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            border-color: #fff;
            transform: translateY(-3px);
        }

        .team-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .team-role {
            font-size: 12px;
            color: #888;
        }

        .contact-box {
            background: #0a0a0a;
            border: 1px solid #2a2a2a;
            padding: 40px;
            text-align: center;
            margin: 20px 0;
            transition: all 0.3s ease;
        }

        .contact-box:hover {
            border-color: #fff;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .contact-card {
            background: #0a0a0a;
            border: 1px solid #2a2a2a;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: #fff;
        }

        .telegram-link {
            font-size: 20px;
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid #555;
            transition: all 0.3s ease;
        }

        .telegram-link:hover {
            border-bottom-color: #fff;
            letter-spacing: 1px;
        }

        .payment-box {
            background: #050505;
            border: 1px solid #222;
            padding: 25px;
            text-align: center;
            margin: 20px 0;
        }

        footer {
            text-align: center;
            margin-top: 60px;
            padding: 20px;
            color: #555;
            font-size: 12px;
            border-top: 1px solid #222;
        }

        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 700px) {
            .project-name {
                font-size: 32px;
            }
            .nav-btn {
                padding: 6px 16px;
                font-size: 12px;
            }
            .telegram-link {
                font-size: 16px;
            }
        }