        :root {
            --primary-black: #252A34;
            --primary-text: #f7f7f7;
            --player-one: #08D9D6;
            --player-two: #FF2E63;
        }
        
        @font-face {
            font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

            src: url('/static/fonts/segoeuithis.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
        }
        
        @font-face {
            font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

            src: url('/static/fonts/segoeuithisi.ttf') format('truetype');
            font-weight: 400;
            font-style: italic;
        }
        
        @font-face {
            font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

            src: url('/static/fonts/segoeuithibd.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
        }
        
        @font-face {
            font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

            src: url('/static/fonts/segoeuithisz.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
        }

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

        body {
            font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

            background: var(--primary-black);
            color: var(--primary-text);
            line-height: 1.6;
        }

        header {
            text-align: center;
            padding: 60px 20px;
            background: rgba(8, 217, 214, 0.1);
            border-radius: 20px;
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
            position: relative;
            border: 2px solid transparent;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--player-one), var(--player-two));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        h2 {
            font-size: 2rem;
            margin: 0px 0 15px;
            color: rgb(8, 217, 214);
        }

        h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--primary-text);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            opacity: 0.95
        }

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


        .tagline {
            font-size: 1.5rem;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .section {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px;
            margin-bottom: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(8, 217, 214, 0.3)
        }

        .highlight {
            background: rgba(8, 217, 214, 0.2);
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: bold;
            color: var(--player-one)
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:nth-child(odd) {
            border-color: rgba(8, 217, 214, 0.3);
        }

        .feature-card:nth-child(even) {
            border-color: rgba(255, 46, 99, 0.3);
        }

        .feature-card:hover {
            translate: translateY(-5px);
            box-shadow: 0 10px 30px rgba(8, 217, 214, 0.3);
        }

        .feature-card:nth-child(even):hover {
            box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .cta-section {
            text-align: center;
            padding: 50px 20px;
            background: rgba(255, 46, 99, 0.1);
            border-radius: 15px;
            margin-top: 40px;
            border: 2px solid var(--player-two)
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--player-one), var(--player-two));
            color: var(--primary-text);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 20px rgba(8, 217 214, 0.4);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(255, 46, 99, 0.6);
        }

        @media (max-width: 760px) {
            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .section {
                padding: 25px;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }
        }