
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: #212229;
            color: white;
            line-height: 1.4;
            text-align: center;
        }

        body p {
            line-height: 1.1
        }

        /* Navigation */
        .navbar {
            padding: 1.2rem 1.6rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: rgba(33, 34, 41, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: white;
        }


        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            padding: 1.2rem 3.2rem;
            min-height: 90vh;
            max-height: 110vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
            background: linear-gradient(-45deg, #FFD50B, #FE365E, #BF5AF1, #00FFF0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            animation: gradient 9s ease infinite;
            font-family: "Rubik", sans-serif;
            font-size: 3.5rem;
            font-optical-sizing: auto;
            font-weight: 700;
            font-style: normal;
        }



        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content h2 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            margin-left: 15%;
            margin-right: 15%;
            font-family: "Rubik", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
        }

        .hero-phone {
            position: relative;
            max-width: 350px;
            margin: 0 auto;
            aspect-ratio: 0.462;
        }

   

        .phone-container {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
        }

        .phone-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 2;
        }

        .video-mockup {
            position: absolute;
            top: 5.2%;
            left: 50%;
            transform: translateX(-50%);
            width: 93.5%;
            height: 90%;
            overflow: hidden;
            border-radius: 40px;
            aspect-ratio: 0.462;
        }

        .video-block {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .video-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video {
            width: 100%;
            height: 100%;
        }

        .video-embed {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .video-embed video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .hero-phone {
                max-width: 320px;
            }
            
            .video-mockup {
                border-radius: 35px;
            }

            .hero-content h1, h2 {
                text-align: center;
            }
        }

        @media (max-width: 460px) {
            .hero-phone {
                max-width: 240px;
            }
        }

                /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: left;
            }

            .button-container {
                justify-content: left;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .button-container {
                display: flex;
                flex-direction: column;
                align-items: left;
                gap: 1rem;
                padding-top: 5px;
            }
        }

        @media (max-width: 462px) {
            .hero {
                padding: 0.5rem 1.2rem;
                padding-bottom: 1.2rem;
            }

            .hero-container {
                gap: 0.8rem;
            }

            .hero-content h1 {
                font-size: 2.0rem;
                margin-bottom: 0.5rem;
            }

            .hero-content h2 {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
            }
        }


        /* Buttons */
        .button {
            width: 100%;
            max-width: 250px; /* Increased max-width for larger container */
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .button-container {
            display: flex;
            flex-direction: column; /* Changed to stack buttons vertically */
            gap: 1rem;
            align-items: center; /* Center buttons in the container */
        }

        .button {
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1.0rem;
            transition: transform 0.2s;
            font-size: 16pt;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button.primary {
            background: #5865F2;
            color: white;
        }

        .button.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
        }

        .button img {
            width: 32px;
            height: 32px;
        }

        @media (max-width: 460px) {
            .button {
                max-width: 200px;
                height: 50px;
                padding: 0.6rem 1.2rem;
                font-size: 14pt;
                gap: 0.8rem;
            }

            .button-container {
                gap: 0.8rem;
            }

            .button img {
                width: 24px;
                height: 24px;
            }
        }

        /* Features Section */
        .features {
            padding: 4rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            
        }


        .features h2 {
            font-family: "Rubik", sans-serif;
            font-size: 1.8rem;
            font-optical-sizing: auto;
            font-weight: 700;
        }

        .features h3 {
            font-family: "Rubik", sans-serif;
            font-size: 1.2rem;
            font-optical-sizing: auto;
            font-weight: 700;
        }

        .features p {
            font-family: "Rubik", sans-serif;
            font-size: 1.1rem;
            font-weight: 300;
            margin-top: 10px;
            padding-left: 8%;
            padding-right: 8%;
        }

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

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

        .feature-card {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            text-align: center;
        }

        .feature-card img {
            width: 80px;
            height: 80px;
            margin-bottom: 0.5rem;
        }

        /* Header */
        .navbar {
            padding: 0.8rem 2rem;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: transparent;
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: white;
        }

        .logo img {
            height: 90px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }


        /* Footer */
        .footer {
            padding-top: 3rem;
            background: rgba(0, 0, 0, 0.2);
            font-family: "Rubik", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            font-size: 16px;                     /* Updated font-size to make it smaller */
            font-weight: 300;                    /* Unchanged */
        }

        
        .footer-container {
            max-width: 1200px;
            margin-left: 20%;
            margin-right: 20%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        @media (max-width: 462px) {
            .footer-container {
                max-width: 90%;
                margin-left: 5%;
                margin-right: 5%;
                gap: 1.5rem;
                font-size: 13;
            }
        }

        .footer-links a, p {
            color: rgba(255, 255, 255, 0.7);
            display: block;
            margin-bottom: 0.5rem;
            text-align: center;
            margin: auto;
            line-height: 120%;
        }

        .footer-links a {
            text-decoration: underline;
        }

        .footer-links p {
            text-decoration: none;
            padding-top: 5px;
        }

        .footer-links img {
            width: 180px;
            display: block;
            margin: auto;
            padding-bottom: 8px;
        }

        @media (max-width: 462px) {
            .footer-links img {
                width: 150px;
                padding-bottom: 5px;
            }
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            width: 100px;
            margin: auto;
        }

        .social-links img {
            width: 30px;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        @media (max-width: 462px) {
            .social-links img {
                width: 25px;
                padding-top: 4px;
                padding-bottom: 4px;
            }
        }

        .social-links a {
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .social-links a:hover {
            opacity: 1;
        }

         /* Responsive Design */
         @media (max-width: 768px) {
            .footer-links img {
                width: 150px;
                display: block;
                margin: auto;
                padding-bottom: 3px;

            }

            .social-links img {
                width: 30px;
                padding-top: 5px;
                padding-bottom: 5px;
            }

            .footer {
                font-size: 13px;  
            }

            
        }


        .tos-pp-container {
            padding: 10vh 5vw 10vh 5vw;
            text-align: left;
        }
        @media (max-width: 768px) {
            .tos-pp-container {
                padding: 5vh 2vw 5vh 2vw;
            }
        }
        .tos-pp-container h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        .tos-pp-container p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-align: left;
        }


        .credits {
            padding: 4rem 2rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .credits h1 {
            margin-bottom: 2rem;
            text-align: center;
            font-family: "Rubik", sans-serif;
            font-size: 2.5rem;
            font-optical-sizing: auto;
            font-weight: 700;
            font-style: normal;
        }

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

        .team-member {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center; /* Center align team member text */
            margin-bottom: 20px; /* Add spacing between team members */
        }

        .team-member h3 {
            color: #FFD50B;
            margin-bottom: 0.5rem;
            font-size: 1.2rem; /* Make text smaller */
            font-family: "Rubik", sans-serif;
            font-optical-sizing: auto;
            font-weight: 700;
            font-style: normal;
            letter-spacing: 0.2px;

        }

        .team-member p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.0rem; /* Make text smaller */
            font-family: "Rubik", sans-serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
        }

        .footer-characters {
            width: 100%;
            display: block;
            position: relative;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: -1;
            margin-top: -70px;
        }
        @media (max-width: 500px) {
            .footer-characters {
                margin-top: -50px;
            }
        }

        .footer-characters img {
            width: 100%;
            height: auto;
            display: block;
            vertical-align: bottom;
            filter: brightness(110%) saturate(105%);
        }


