
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5530 100%);
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
            overflow: hidden;
        }

        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="60" cy="10" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            margin-top: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: #7dd87d;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo::before {
            content: "";
            width: 32px;
            height: 32px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            display: block;
        }

        .hero {
            text-align: center;
            padding: 120px 0 80px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .platform-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .platform-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: #d1fae5;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 12px 20px;
            border-radius: 15px;
            border: 1px solid rgba(74, 222, 128, 0.2);
            background: rgba(74, 222, 128, 0.05);
        }

        .platform-item:hover {
            transform: translateY(-2px);
            border-color: rgba(74, 222, 128, 0.4);
            background: rgba(74, 222, 128, 0.1);
        }

        .platform-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .platform-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .platform-title {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
        }

        .platform-subtitle {
            font-size: 14px;
            color: #a7f3d0;
            font-weight: 300;
        }

        .cta-button {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            border: none;
            color: #0f2027;
            padding: 18px 40px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(74, 222, 128, 0.4);
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }      

        .logo-tagline {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            font-style: italic;
        }

        @media (max-width: 768px) {

            .platform-info {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .platform-item {
                justify-content: center;
                width: 100%;
                max-width: 300px;
            }

            .hero {
                padding: 80px 0 60px;
            }

        }

        @media (max-width: 480px) {
            header {
                padding: 20px 0;
                flex-direction: column;
                gap: 20px;
            }

            .logo {
                font-size: 20px;
            }

            .hero h1 {
                margin-bottom: 40px;
            }

            .platform-info {
                gap: 15px;
            }

            .cta-button {
                padding: 16px 32px;
                font-size: 15px;
            }

        }