<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* :root {
  --orange: #ff6d00;
  --dark: #212121;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --gray-light: #ccc;
  --text-dark: #333;
} */


:root {
  --silver: #C0C0C0;
  --black: #121212;
  --white: #ffffff;
  --gray-light: #e0e0e0;
  --text-dark: #1a1a1a;
  --accent: #d4af37; /* Optional for button hovers or glow */
  --hover-green: #a8f0c6;
  --hover-gold: #FFD700;  /* Classic Gold */

  

  
}




/* body {
  background: linear-gradient(to right, #c0c0c0 0%, #e0e0e0 40%, var(--light-bg) 70%, transparent 100%);
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--dark);
  min-height: 100vh;
} */


body {
  background: linear-gradient(to right, #dcdcdc, #f5f5f5);
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--black);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Improved Typography Hierarchy */
h1 {
  font-size: 2.5rem;       /* Bigger main heading */
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.8rem;       /* Section headings */
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

ul li {
  font-size: 1rem;
  line-height: 1.5;
}


@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  p  { font-size: 0.95rem; }
}



header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 40px;
}

.install-btn {
  background-color: var(--hover-green); /* âœ… green on hover */
  color: var(--black);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  background: #fff;
  padding: 4rem 1rem;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.screenshot {
  max-width: 300px;
  margin-top: 1rem;
  border-radius: 12px;
}

/* .news {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  padding-bottom: 3rem;
} */

.news {
  margin-top: 5rem;
  background: var(--white);
  color: var(--black);
  padding: 4rem 1rem;
}

.news-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.news-card img {
  width: 100%;
  border-radius: 8px;
}

.features {
  background: var(--white);
  color: var(--black);
  margin-top: 5rem;
  text-align: center;
  padding: 2rem;
  padding-bottom: 3rem;
}

footer {
  background: #212121;
  color: white;
  text-align: center;
  padding: 1rem;
}

footer a {
  color: #ff6d00;
  text-decoration: none;
  margin: 0 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

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

  .screenshot {
    width: 90%;
  }

  .news {
  margin-top: 5rem;
    padding: 1rem;
    grid-template-columns: 1fr;
  }

  .features ul {
    padding: 0;
    list-style: none;
  }


  .back-to-top {
    display: block;
  }
}


.install-link {
  background: white;
  color: #ff6d00;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 70px; /* above the install bar */
  right: 16px;
  background: #ff6d00;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Store Buttons */
.store-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

/* QR Code */
.qr-code {
  text-align: center;
  margin-top: 1rem;
}

.qr-code img {
  height: 120px;
  width: 120px;
  margin-top: 0.5rem;
}



.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3rem 1rem 2rem 1rem;
  background: var(--dark);
  color: var(--white);
  gap: 2rem;
}

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

.footer-left,
.footer-center a {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.footer-right {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 0.5rem;
}

.footer-grid h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-grid p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-grid a {
  display: block;
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  margin: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  /* color: var(--orange); */
  color: var(--hover-gold);
}

.social-icon {
  width: 28px;
  height: 28px;
  margin: 0.4rem;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: grayscale(100%) brightness(1.3);
}

.social-icon:hover {
  transform: scale(1.1);
  filter: none;
}


.badge {
  background: var(--orange);     /* Good contrast */
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 6px;
  margin-right: 0.3rem;
}

.legal-container {
  font-family: 'Georgia', serif;
  line-height: 1.8;
  color: #333;
  background: #fff;
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.legal-container h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-container h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #111;
}

.legal-container p,
.legal-container li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-container ul {
  padding-left: 1.2rem;
}




.contact-container {
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  font-family: 'Georgia', serif;
}

.contact-container h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.8rem;
  background: #ff6d00;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.typing-glow {
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  background: #ff6d00;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  box-shadow: 0 0 12px #ff6d00a8, 0 0 20px #ff6d0055;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 3s steps(35, end) forwards, blink 0.8s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: white }
}

/* 
.typing-wrapper {
  background: var(--orange);
  color: white;
  font-size: 2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 0 10px #ff6d0055;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
} */


.typing-wrapper {
  background: var(--hover-gold); /* Black background for contrast */
  color: var(--black);      /* White text */
  font-size: 2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}



.static-text {
  white-space: nowrap;
}

/* .typing-rotate {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  border-right: 2px solid #fff;
  animation: blink-cursor 0.8s step-end infinite;
} */

.typing-rotate {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  border-right: 2px solid var(--white); /* Bright blinking cursor */
  animation: blink-cursor 0.8s step-end infinite;
}


@keyframes blink-cursor {
  from, to { border-color: transparent }
  50% { border-color: #fff }
}




.install-btn:hover,
.install-link:hover {
  transform: scale(1.05);
  background-color: var(--hover-green); /* âœ… green on hover */
  color: var(--black);
}






/* Smooth fade effect on sections */
section {
  transition: all 0.3s ease-in-out;
}

/* Button hover improvement */
button, .install-btn, .install-link {
  transition: all 0.3s ease-in-out;
}
button:hover, .install-btn:hover, .install-link:hover {
  transform: scale(1.06);
  background-color: #e65100;
}

/* News card hover effect */
.news-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Subtle shadow for header and footer */
header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}


footer,
.footer-modern {
  background: var(--black);
  color: var(--white);
  box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.08);
}


/* Improve background readability */
.hero {
  background: var(--white);
  color: var(--black);
  background-size: cover;
  
}

/* Body font smoothing */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.screen-inside {
  position: absolute;
  top: 11%;
  left: 9.3%;
  width: 81.5%;
  height: 78.2%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

.mobile-frame {
  position: relative;
  width: 320px;
  height: 640px;
}

.mobile-frame .phone {
  width: 100%;
  height: auto;
}

.mobile-frame .screen-inside {
  position: absolute;
  top: 11%;
  left: 9.3%;
  width: 81.5%;
  height: 78.2%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-text {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 1rem;
}

.gif-preview {
  width: 300px;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

/* .hero-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
} */

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 480px; /* âœ… Keeps text tighter */
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.qr-code {
  margin-top: 1.2rem;
  text-align: left; /* aligns with buttons */
}

.hero-gif-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-gif {
  width: 300px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}





.news-text {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 500px;
}

.news-text a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.news-text a:hover {
  text-decoration: underline;
  color: #e65100; /* slightly darker orange on hover */
}


.news-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 280px;
}

.news-image img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}









@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column-reverse; /* âœ… stack text before gif on mobile */
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero .container {
    flex-direction: column-reverse; /* text first */
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .news-flex {
    flex-direction: column; /* keep image after text for news section */
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }
  .news-text {
    align-items: center;
  }

  .hero-gif {
    width: 100%;
    max-width: 280px;
  }
  .news-image img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
  }
}



/* Tighter spacing between elements */
.hero-gif-container,
.news-image {
  margin-bottom: 1rem;
}

.hero-text,
.news-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

/* Mobile stacking and centering adjustments */
@media (max-width: 768px) {
  .hero-flex,
  .news-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .hero-text,
  .news-text {
    align-items: center;
    text-align: center;
  }

  .hero-gif,
  .news-image img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
  }
}


@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .footer-grid h3 {
    margin-top: 0.5rem;
  }
}

/* Slide-up animation for sticky install bar */


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


/* === UNIVERSAL SECTION SPACING === */
section {
  padding: 4rem 1rem;
  transition: all 0.3s ease-in-out;
}

/* === EVEN SECTIONS GET A LIGHT BACKGROUND === */
section:nth-of-type(even) {
  background-color: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* === TIGHTER VERTICAL SPACING FOR HEADINGS INSIDE === */
section h2, section h3 {
  margin-bottom: 1rem;
}


.news-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.news-text {
  flex: 1;
  min-width: 300px;
}

.news-text h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.news-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.news-text a {
  margin-top: 1rem;
  display: inline-block;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.news-text a:hover {
  text-decoration: underline;
  color: #e65100;
}

.news-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.news-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features {
  margin-top: 5rem;
  background: #fafafa;
  padding: 5rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.features ul {
  list-style: none;
  margin-top: 2rem;
  padding: 0;
  line-height: 1.6;
}

.features li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}




/* Sticky install bar styles removed for cleaner UX */
/* AOS Enhancements for scroll-triggered reveal */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
}

.footer-modern {
  background: #212121;
  color: white;
  padding: 3rem 1rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h3 {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  /* color: var(--orange); */
  color: var(--hover-gold);
}

.footer-logo {
  height: 32px;
  margin-bottom: 0.5rem;
}

.social-links a img {
  width: 24px;
  height: 24px;
  margin-right: 0.7rem;
  filter: grayscale(100%) brightness(1.4);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
  filter: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-links a img {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}


.clean-footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(2) contrast(1.2);
}


/* Align the list to center under the heading */
.feature-list.center-aligned {
  display: flex;
  flex-direction: column;
  align-items: center; /* âœ… centers items horizontally */
  text-align: center;  /* âœ… centers text inside */
  gap: 1rem;
  margin-top: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.checkmark {
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}


.news-text {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center; /* âœ… Center the content */
  text-align: center;  /* âœ… Center the text */
}

.install-btn {
  background: var(--hover-gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}

.install-btn:hover {
  background-color: var(--silver) !important;  /* âœ… Force override */
  color: var(--black);
}


.hero-gif {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.footer-modern {
  padding-top: 4rem;
  padding-bottom: 3rem;
  opacity: 1; /* AOS will animate this */
}

.qr-code {
  text-align: left;
  margin-top: 1rem;
  position: relative;
}

.qr-code img {
  display: block;
  margin-top: 0.5rem;
  margin-left: 75px; /* âœ… Adjust this value for alignment under Google Play */
  height: 120px;
  width: 120px;
}




</pre></body></html>