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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #181A20;
            color: #FFFFFF;
            line-height: 1.6;
        }

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

        /* Header Styles */
        header {
            padding: 16px 0;
            margin-bottom: 40px;
        }

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

        .logo {
            height: 70px;
            width: auto;
        }

        .header-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border: 2px solid transparent;
        }

        .btn-login {
            border: 2px solid #00FFC2;
            color: #FF00A8;
            background: transparent;
        }

        .btn-login:hover {
            background: rgba(0, 255, 194, 0.1);
        }

        .btn-signup {
            background: #FF00A8;
            color: white;
            border: 2px solid #FF00A8;
        }

        .btn-signup:hover {
            background: #E0009A;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 32px 24px;
            margin-bottom: 32px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 80px;
            text-shadow: 0 1px 24px #00FFC2;
        }

        .text-primary {
            color: #00FFC2;
        }

        .text-secondary {
            color: #FF00A8;
        }

        .hero-subtitle {
            color: #00FFC2;
            font-size: 18px;
            font-weight: 700;
            margin-top: 64px;
            margin-bottom: 8px;
            text-shadow: 0 0 8px #00FFC2;
        }

        .hero-description {
            font-size: 16px;
            opacity: 0.85;
            margin-bottom: 8px;
        }

        /* Download Buttons */
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 64px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .btn-download {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 9999px;
            font-weight: 700;
        }

        .btn-ios {
            background: #FF00A8;
            color: white;
        }

        .btn-android {
            background: #00FFC2;
            color: #181A20;
        }

        /* Features */
        .features {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

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

        .feature-icon {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .icon-location { color: #00FFC2; filter: drop-shadow(0 0 8px #00FFC2); }
        .icon-video { color: #00BFFF; filter: drop-shadow(0 0 8px #00BFFF); }
        .icon-users { color: #00FFC2; filter: drop-shadow(0 0 8px #00FFC2); }
        .icon-events { color: #00FFC2; filter: drop-shadow(0 0 8px #00FFC2); }

        .feature-text {
            font-size: 12px;
            font-weight: 700;
            margin-top: 8px;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 48px 16px;
            margin-bottom: 48px;
        }

        .section-title {
            color: #00FFC2;
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 32px;
            text-shadow: 0 0 12px #00FFC2;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .card {
            background: transparent;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
        }

        .card-1 { border: 2px solid #00FFC2; }
        .card-2 { border: 2px solid #FF00A8; }
        .card-3 { border: 2px solid #00FFC2; }

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

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .card-1 .card-title { color: #00FFC2; }
        .card-2 .card-title { color: #FF00A8; }
        .card-3 .card-title { color: #00FFC2; }

        .card-description {
            font-size: 14px;
            opacity: 0.85;
        }

        /* Ready to Ping Section */
        .cta-section {
            text-align: center;
            padding: 48px 24px;
            margin-bottom: 48px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 12px 28px;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 18px;
        }

        .btn-get-started {
            background: #FF00A8;
            color: white;
        }

        .btn-learn-more {
            background: transparent;
            border: 2px solid #00FFC2;
            color: #00FFC2;
        }

        .btn-learn-more:hover {
            background: rgba(0, 255, 194, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .features {
                gap: 16px;
            }

            .cards {
                flex-direction: column;
                align-items: center;
            }

            .card {
                max-width: 100%;
            }

            .header-buttons {
                gap: 8px;
            }

            .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
        }
  