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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: hsl(0, 0%, 8%);
            color: hsl(0, 0%, 95%);
            line-height: 1.6;
        }

        /* Header */
        .header {
            display: flex;
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid hsl(0, 0%, 20%);
            z-index: 1000;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo {
            width: 32px;
            height: 32px;
            background: hsl(0, 75%, 55%);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .title {
            color: hsl(0, 75%, 55%);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .version {
            color: hsl(0, 0%, 65%);
            font-size: 0.875rem;
            margin-left: 0.5rem;
        }

        .header-icons {
            display: flex;
            align-items: right;
            justify-content: right text-align: right;
            gap: 10px;
            transition: all 0.5s ease;
        }

        .header-icons :hover {
            transform: translateY(-5px);
        }

        .icon {
            width: 24px;
            height: 24px;
            background: hsl(0, 0%, 25%);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .icon:hover {
            background: hsl(0, 0%, 35%);
        }

        .update-btn {
            background: hsl(0, 75%, 55%);
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .update-btn:hover {
            background: hsl(0, 75%, 45%);
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            background-image: url('/lovable-uploads/01410435-e2c9-4852-9b8e-794661c14f34.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    hsla(0, 75%, 15%, 0.8),
                    hsla(0, 60%, 10%, 0.6));
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .cta-button {
            background: linear-gradient(135deg, hsl(0, 100%, 55%), hsl(0, 74%, 12%));
            color: white;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);

        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        }

        /* Features Section */
        .features {
            padding: 4rem 2rem;
            background-image: linear-gradient(to bottom, #230002, #1d0003, #160004, #0d0002, #000000);
            margin-top: 300px;
        }

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

        .features-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: hsl(0, 75%, 55%);
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: hsl(0, 0%, 10%);
            border: 1px solid hsl(0, 0%, 20%);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: hsl(0, 75%, 55%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: hsl(0, 75%, 55%);
            border-radius: 12px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: hsl(0, 0%, 75%);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: hsl(0, 0%, 6%);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid hsl(0, 0%, 20%);
        }

        .footer-content {
            color: hsl(0, 0%, 65%);
        }

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

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

            .header {
                padding: 1rem;
            }

            .features {
                padding: 2rem 1rem;
            }
        }