 * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: Arial, sans-serif;
      background-color: #12161c;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 12px 12px;
      color: white;
    }

   header {
  position: fixed;
  top: 0;
  left: 0;
      margin-top: 10px;
  width: 100%;
  z-index: 999; /* Make sure it stays on top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #12161c;
  flex-wrap: wrap;
  border-bottom: 1px dashed #978e8e;
   
}

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo img {
      height: 20px;
    }

    .logo span {
      font-size: 20px;
      font-weight: bold;
      color: #f0b90b;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      color: white;
      cursor: pointer;
      margin-left: auto;
    }

    .right-side {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .icon-btn {
      background: none;
      border: none;
      color: white;
      font-size: 16px;
      cursor: pointer;
    }

    .login-btn, .signup-btn {
      padding: 6px 14px;
      border-radius: 4px;
      font-size: 14px;
    }

    .login-btn {
      background-color: #1e2026;
      color: white;
    }

    .signup-btn {
      background-color: #f0b90b;
      color: #12161c;
      font-weight: bold;
    }


    nav.menu {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    nav.menu > .menu-item {
      position: relative;
    }

    nav.menu a {
      color: white;
      font-size: 14px;
      text-decoration: none;
    }

    nav.menu a:hover {
      color: #f0b90b;
    }

    .menu-item > a.dropdown::after {
      content: " ▾";
      font-size: 10px;
      margin-left: 4px;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 35px;
      left: 0;
      background: #1e2026;
      padding: 10px;
      min-width: 140px;
      border-radius: 4px;
    }

    .menu-item:hover .dropdown-menu {
      display: block;
    }

    .right-side {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .icon-btn {
      background: none;
      border: none;
      color: white;
      font-size: 16px;
      cursor: pointer;
    }

     .login-btn {
    /* color: #8892b0; */
    text-decoration: none;
    /* font-size: 15px; */
    transition: color 0.3s ease;
    /* background: #ccc; */
    background: #cdd1de;
    border-radius: 4px;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-right: 12px;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
}
     

        .login-btn:hover {
            color: white;
        }

    .signup-btn {
padding: 12px 20px;
    color: #fff;
    background: #0faf59;
    box-shadow: 0 4px 10px 0 rgba(53, 184, 114, .25);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    white-space: nowrap;
        }

    .language-dropdown {
      position: relative;
    }

    .language-menu {
      display: none;
      position: absolute;
      right: 0;
      top: 40px;
      background-color: #1e2026;
      border-radius: 6px;
      padding: 20px;
      width: 500px;
      
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      z-index: 9999;
      flex-direction: column;
    }

    .language-menu.active {
      display: flex;
    }

    .language-menu h4 {
      font-size: 13px;
      color: #aaa;
      margin-bottom: 8px;
    }

    .language-menu input[type="text"] {
      width: 100%;
      padding: 6px 10px;
      margin-bottom: 12px;
      background: #12161c;
      border: 1px solid #2c2f36;
      border-radius: 4px;
      color: white;
      font-size: 13px;
    }

    .language-columns {
      column-count: 2;
      column-gap: 40px;
    }

    .language-columns ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .language-columns li {
      font-size: 14px;
      padding: 5px 0;
      color: #ccc;
      cursor: pointer;
      break-inside: avoid;
    }

    .language-columns li:hover,
    .language-columns li.active {
      color: #f0b90b;
      font-weight: bold;
    }

    .hero {
      padding: 60px 20px;
	  margin-top: 30px;
    }

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

    .hero-left {
      flex: 1;
      min-width: 300px;
    }

    .hero-left h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-left h1 span {
      color: #f0b90b;
    }

    .hero-left p {
      font-size: 18px;
      color: #ccc;
      margin-bottom: 30px;
    }

    .hero-form {
      display: flex;
      max-width: 500px;
      margin-bottom: 30px;
    }

    .hero-form input {
      flex: 1;
      padding: 14px;
      border: none;
      border-radius: 6px 0 0 6px;
      background: #1e2026;
      color: #fff;
    }

    .hero-form button {
      background: #f0b90b;
      color: #12161c;
      font-weight: bold;
      padding: 14px 24px;
      border: none;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
    }

    .auth-options {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      align-items: center;
    }

    .auth-options p {
      font-size: 13px;
      color: #888;
      margin-bottom: 8px;
    }

    .hero-visual {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .hero-visual img {
      max-width: 100%;
      height: auto;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #1e2026;
      z-index: 9999;
      padding: 20px;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu .close-btn {
      align-self: flex-end;
      font-size: 22px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .mobile-menu .auth-buttons {
      display: flex;
      gap: 10px;
      margin: 20px 0;
    }

    .mobile-menu .auth-buttons .login-btn {
      background-color: #2b2f36;
      color: white;
      border: none;
      border-radius: 10px;
      padding: 10px 24px;
      font-weight: bold;
      width: 48%;
    }

    .mobile-menu .auth-buttons .signup-btn {
      background-color: #f0b90b;
      color: #12161c;
      border: none;
      border-radius: 10px;
      padding: 10px 24px;
      font-weight: bold;
      width: 48%;
    }

    .mobile-menu input[type="text"] {
      padding: 10px;
      width: 100%;
      border: 1px solid #333;
      border-radius: 6px;
      background: #12161c;
      color: white;
      margin-bottom: 20px;
    }

    .mobile-menu nav {
      flex-grow: 1;
    }

    .mobile-menu .menu-item {
      padding: 12px 0;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .mobile-menu .menu-item i {
      width: 20px;
    }

    .mobile-menu .menu-item .fa-arrow-right {
      margin-left: auto;
    }

.submenu {
  display: none;
  flex-direction: column;
  padding-left: 35px;
  font-size: 15px;
  font-weight: 500;
  color: #eaecef;
  gap: 12px;
  margin: 10px 0 20px;
}

.submenu div {
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}

.submenu div:hover {
  color: #f0b90b;
}

    @media (max-width: 768px) {
      .hamburger {
        display: block;
        order: 2;
      }

      nav.menu,
      .right-side .icon-btn,
      .right-side .login-btn,
      .right-side .signup-btn {
        display: none;
      }
    }
	
	 .download-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 300px; /* Increased from 40px to 60px for spacing */
  padding: 60px 20px;
}

    .phone-image {
      max-width: 330px;
      flex-shrink: 0;
    }

    .phone-image img {
      width: 100%;
      border-radius: 20px;
       
    }

    .info-box {
      max-width: 500px;
    }

    .info-box .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .info-box .logo img {
      height: 28px;
    }

    .info-box h2 {
      font-size: 34px;
      font-weight: 800;
      margin: 0 0 15px;
    }

    .info-box h2 .highlight {
      color: #FFB92C;
    }

    .qr-and-text {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .qr-box {
      
      padding: 12px;
      border-radius: 15px;
    }

    .qr-box img {
      width: 140px;
      height: 140px;
    }

    .info-box p {
      font-size: 14px;
      color: #cccccc;
      line-height: 1.6;
      max-width: 300px;
    }

    .info-box p strong {
      color: #ffffff;
    }

    .platforms {
      display: flex;
      flex-wrap: wrap;
      gap: 15px 25px;
      margin-top: 15px;
    }

    .platforms div {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #ddd;
    }

    .platforms img {
      height: 24px;
    }

    @media (max-width: 768px) {
      .download-wrapper {
        flex-direction: column;
        text-align: center;
      }

      .qr-and-text {
        flex-direction: column;
        align-items: center;
      }

      .info-box {
        max-width: 100%;
      }

      .info-box p {
        max-width: 100%;
      }
    }
	
	    .blog-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .blog-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .blog-header h2 {
      font-size: 28px;
      margin: 0;
    }

    .blog-header a {
      color: #f0b02f;
      text-decoration: none;
      font-weight: 600;
    }

    .blog-container {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }

    .blog-card {
      flex: 0 0 300px;
      background-color: #141414;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(255,255,255,0.05);
    }

    .blog-card img {
      width: 100%;
      height: 170px;
      object-fit: cover;
    }

    .card-thumbnail {
      position: relative;
    }

    .tag-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #ffaa00;
      color: #000;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    .timestamp-badge {
      position: absolute;
      top: 15px;
      left: 155px;
      background: #444;
      color: #eee;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 500;
    }

    .blog-content {
      padding: 15px;
    }

    .blog-title {
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 8px;
      color: #fff;
    }

    .blog-description {
      font-size: 13px;
      color: #aaa;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .read-more {
      font-size: 13px;
      color: #f0b02f;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
    }

    .blog-meta {
      font-size: 12px;
      color: #666;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .blog-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .blog-card {
        flex: 0 0 80%;
      }

      .blog-header h2 {
        font-size: 22px;
      }
    }
	
	    .faq-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 50px 20px;
    }

    .faq-section h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 30px;
    }

    .faq-item {
      border-top: 1px solid #2e2e2e;
      padding: 20px 0;
    }

    .faq-question {
      font-size: 16px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: #f0b02f;
    }

    .faq-answer {
      font-size: 14px;
      color: #ccc;
      margin-top: 10px;
      display: none;
      line-height: 1.6;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-toggle {
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      .faq-section {
        padding: 40px 15px;
      }

      .faq-section h2 {
        font-size: 22px;
      }

      .faq-question {
        font-size: 15px;
      }

      .faq-answer {
        font-size: 13px;
      }
    }
	
	    .footer-section {
      background-color: #0B0B0E;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 12px 12px;
      padding: 50px 20px 20px;
      border-top: 1px solid #1f1f1f;
    }

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

    .footer-brand {
      flex: 1 1 200px;
    }

    .footer-brand img {
      height: 36px;
      margin-bottom: 20px;
    }

    .social-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .social-icons a {
      color: #fff;
      background: #1a1a1a;
      padding: 8px;
      border-radius: 50%;
      font-size: 16px;
      transition: background 0.3s ease;
    }

    .social-icons a:hover {
      background: #f0b02f;
      color: #000;
    }

    .footer-column {
      flex: 1 1 150px;
    }

    .footer-column h4 {
      color: #f0b02f;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 12px;
      color: #777;
    }

    .footer-bottom a {
      color: #f0b02f;
      text-decoration: none;
      margin: 0 10px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 30px;
      }

      .footer-brand,
      .footer-column {
        text-align: center;
      }

      .social-icons {
        justify-content: center;
      }
    }
	
	/* Scrollbar style for Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #5c6270;
  border-radius: 10px;
}

/* Scrollbar style for Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #5c6270 transparent;
}


    .ticker-wrapper {
      background: #12161c;
      overflow: hidden;
      white-space: nowrap;
      padding: 12px 0;
      border-top: 1px solid #1d1d1d;
      border-bottom: 1px solid #1d1d1d;
    }

    .ticker-track {
      display: inline-flex;
      animation: scroll 40s linear infinite;
    }

    .ticker-item {
      display: flex;
      align-items: center;
      margin: 0 35px;
      font-size: 14px;
      font-weight: 500;
      color: #ffffff;
    }

    .ticker-item img {
      width: 22px;
      height: 22px;
      margin-right: 8px;
      border-radius: 6px;
      background: #000;
      padding: 3px;
    }

    .price {
      margin-left: 4px;
      font-weight: bold;
    }

    .change.up {
      color: #4CAF50;
      margin-left: 8px;
    }

    .change.down {
      color: #F44336;
      margin-left: 8px;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media(max-width: 768px) {
      .ticker-item { margin: 0 18px; font-size: 13px; }
      .ticker-item img { width: 20px; height: 20px; }
    }
	
	
	   .pwa-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 60px 30px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .pwa-left {
      flex: 1 1 500px;
    }

    .pwa-left h1 {
      font-size: 42px;
      margin: 0 0 20px;
      font-weight: 700;
      color: #fff;
    }

    .pwa-left p {
      font-size: 16px;
      color: #aaa;
      margin-bottom: 30px;
    }

    .pwa-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .pwa-button {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      padding: 14px 26px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .pwa-button.ios {
      background: linear-gradient(to right, #fcb034, #ffe63b);
      color: #000;
    }

    .pwa-button.android {
      background: #1f1f1f;
      color: #fff;
      border: 1px solid #333;
    }

    .pwa-button:hover {
      transform: scale(1.05);
    }

    .pwa-right {
      flex: 1 1 400px;
      text-align: center;
      margin-top: 30px;
    }

    .pwa-right img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
     
    }

    @media (max-width: 768px) {
      .pwa-section {
        flex-direction: column-reverse;
        text-align: center;
      }

      .pwa-left h1 {
        font-size: 28px;
      }

      .pwa-buttons {
        justify-content: center;
      }
    }
	
	
    .pwa-android-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .pwa-android-left {
      flex: 1 1 400px;
      text-align: center;
    }

    .pwa-android-left img {
      width: 100%;
      max-width: 300px;
      height: auto;
    }

    .pwa-android-right {
      flex: 1 1 500px;
      padding: 20px 30px;
    }

    .pwa-android-right h2 {
      font-size: 32px;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .pwa-step {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .pwa-step i {
      font-size: 18px;
      margin-right: 12px;
      color: #f5c11e;
      width: 22px;
    }

    .pwa-step span {
      font-weight: 600;
      margin-right: 8px;
      color: #fff;
    }

    .pwa-step p {
      color: #ccc;
      margin: 0;
      font-size: 15px;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .pwa-android-section {
        flex-direction: column;
        text-align: center;
      }

      .pwa-android-right h2 {
        font-size: 24px;
      }

      .pwa-step {
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }

      .pwa-step p {
        text-align: center;
      }
    }
	
	    .pwa-ios-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .pwa-ios-left {
      flex: 1 1 500px;
      padding: 20px 30px;
    }

    .pwa-ios-left h2 {
      font-size: 32px;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .pwa-step {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .pwa-step i {
      font-size: 18px;
      margin-right: 12px;
      color: #f5c11e;
      width: 22px;
    }

    .pwa-step span {
      font-weight: 600;
      margin-right: 8px;
      color: #fff;
    }

    .pwa-step p {
      color: #ccc;
      margin: 0;
      font-size: 15px;
      line-height: 1.5;
    }

    .pwa-ios-right {
      flex: 1 1 400px;
      text-align: center;
    }

    .pwa-ios-right img {
      width: 100%;
      max-width: 300px;
      height: auto;
    }

    @media (max-width: 768px) {
      .pwa-ios-section {
        flex-direction: column;
        text-align: center;
      }

      .pwa-ios-left h2 {
        font-size: 24px;
      }

      .pwa-step {
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }

      .pwa-step p {
        text-align: center;
      }
    }
	
	    .testimonial-section {
      padding: 80px 20px;
      overflow: hidden;
      position: relative;
    }

    .testimonial-section h2 {
      font-size: 36px;
      margin-bottom: 10px;
      text-align: center;
    }

    .testimonial-section p.subtitle {
      font-size: 16px;
      color: #aaa;
      text-align: center;
      margin-bottom: 40px;
    }

    .testimonial-track {
      display: flex;
      gap: 30px;
      animation: scroll-horizontal 25s linear infinite;
      width: fit-content;
    }

    .testimonial-wrapper {
      overflow: hidden;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 30px;
      min-width: 300px;
      max-width: 320px;
      flex-shrink: 0;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
    }

    .testimonial-quote {
      font-size: 15px;
      font-style: italic;
      color: #ccc;
      margin-bottom: 25px;
      line-height: 1.6;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .testimonial-user img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid #f5c11e;
    }

    .user-info .name {
      font-weight: bold;
      font-size: 15px;
      color: #f5c11e;
    }

    .user-info .role {
      font-size: 13px;
      color: #999;
    }

    @keyframes scroll-horizontal {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .testimonial-track {
        flex-direction: column;
        animation: scroll-vertical 20s linear infinite;
      }

      @keyframes scroll-vertical {
        0% { transform: translateY(0); }
        100% { transform: translateY(-50%); }
      }

      .testimonial-card {
        margin: 0 auto;
      }
    }
	
		    .affiliate-section {
      position: relative;
      overflow: hidden;
      padding: 120px 20px;
      text-align: center;
      z-index: 1;
    }

    /* Background Gradient Glow Effect */
    .affiliate-section::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      width: 800px;
      height: 800px;
      transform: translateX(-50%);
      background: radial-gradient(circle at center, #ffb80055, transparent 70%);
      filter: blur(120px);
      z-index: 0;
      animation: glow 6s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from { transform: translateX(-50%) scale(1); opacity: 0.4; }
      to { transform: translateX(-50%) scale(1.1); opacity: 0.7; }
    }

    .affiliate-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }
.affiliate-title.img-style {
  font-size: 70px;
  font-weight: 900;
 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.1;
}
    .affiliate-title {
      font-size: 68px;
      font-weight: 900;
      background: linear-gradient(90deg, #ffb800, #ffea00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 25px;
      letter-spacing: -1px;
      text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
      animation: fadeInDown 1s ease;
    }

    .affiliate-heading {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
      color: #fff;
      animation: fadeInUp 1.1s ease;
    }

    .affiliate-subheading {
      font-size: 50px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 35px;
      animation: fadeInUp 1.2s ease;
    }

    .affiliate-description {
      font-size: 18px;
      color: #ccc;
      line-height: 1.7;
      margin-bottom: 40px;
      animation: fadeInUp 1.3s ease;
    }

    .join-btn {
      display: inline-block;
      padding: 16px 38px;
      background: linear-gradient(90deg, #ffb800, #ffea00);
      color: #000;
      font-weight: bold;
      font-size: 16px;
      border-radius: 35px;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
      transition: all 0.3s ease;
      animation: fadeInUp 1.4s ease;
    }

    .join-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 28px rgba(255, 204, 0, 0.5);
    }

    .bottom-callout {
      margin-top: 60px;
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      animation: fadeInUp 1.5s ease;
    }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

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

      .affiliate-heading {
        font-size: 28px;
      }

      .affiliate-subheading {
        font-size: 34px;
      }

      .affiliate-description {
        font-size: 15px;
      }

      .bottom-callout {
        font-size: 22px;
      }
    }
	
	
	    .affiliate-join-section {
      padding: 80px 20px;
      text-align: center;
    }

    .affiliate-join-section h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .affiliate-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 columns only */
      grid-auto-rows: auto;
      gap: 24px;
      max-width: 700px;
      margin: 0 auto;
    }

    .affiliate-box {
      background: linear-gradient(to bottom right, #111 30%, #0c0c0c 100%);
      border-radius: 20px;
      padding: 30px 20px;
      transition: 0.3s ease;
      border: 1px solid #1a1a1a;
    }

    .affiliate-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(255, 193, 7, 0.07);
    }

    .affiliate-box i {
      font-size: 20px;
      color: #f5c11e;
      margin-bottom: 20px;
      display: inline-block;
    }

    .affiliate-box .label {
      font-weight: 600;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 14px;
      line-height: 1.4;
    }

    @media (max-width: 600px) {
      .affiliate-grid {
        grid-template-columns: 1fr; /* Stack in 1 column on small screens */
      }

      .affiliate-join-section h2 {
        font-size: 28px;
      }
    }
	
	    .partner-section {
      padding: 80px 20px;
      max-width: 1080px;
      margin: auto;
    }

    .partner-section h2 {
      font-size: 36px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 60px;
    }

    .partner-grid {
      display: grid;
      grid-template-columns: repeat(2, 480px); /* Fixed column width */
      gap: 30px;
      justify-content: center; /* Center the grid */
    }

    .partner-box {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 24px;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 transparent;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .partner-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(255, 193, 7, 0.08);
    }

    .partner-box p {
      font-size: 15px;
      color: var(--subtext);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .partner-box p strong {
      color: var(--text);
    }

    .partner-box img {
     height: 432px;
      border-radius: 14px;
      object-fit: cover;
    }

    .partner-logo {
      margin-top: 10px;
    }

    .partner-logo img {
      height: 26px;
    }

    @media (max-width: 1020px) {
      .partner-grid {
        grid-template-columns: 1fr; /* Stack on smaller screens */
      }
    }
	
	    .how-it-works {
      padding: 60px 20px 40px;
      text-align: center;
    }

    .how-it-works h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .steps {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .step-box {
      background: #111;
      border-radius: 16px;
      padding: 20px 24px;
      color: #ccc;
      font-size: 16px;
      font-weight: 400;
      max-width: 460px;
      flex: 1 1 300px;
      box-shadow: inset 0 0 0 1px #1c1c1c;
    }

    .step-box strong {
      color: #fff;
      font-weight: 600;
    }

    .earn-box {
      background: #111;
      border-radius: 16px;
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin: 0 auto 50px;
      max-width: 960px;
      box-shadow: inset 0 0 0 1px #1c1c1c;
    }

    .earn-box p {
      font-size: 16px;
      color: #ccc;
      flex: 1 1 300px;
      text-align: left;
    }

    .earn-box p strong {
      color: #fff;
      font-weight: 600;
    }

    .earn-box img {
      max-width: 180px;
      height: auto;
      flex-shrink: 0;
    }

    .cta {
      text-align: center;
      margin-top: 60px;
    }

    .cta h3 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .cta p {
      font-size: 16px;
      font-weight: 500;
      max-width: 600px;
      margin: auto;
      color: #ccc;
    }

    .cta button {
      margin-top: 20px;
      background: linear-gradient(to right, #ffc107, #ffcc33);
      border: none;
      border-radius: 24px;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: bold;
      color: #000;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(255, 193, 7, 0.2);
    }

    @media (max-width: 768px) {
      .how-it-works h2 {
        font-size: 28px;
      }

      .earn-box {
        flex-direction: column;
        text-align: center;
      }

      .earn-box p {
        text-align: center;
      }

      .earn-box img {
        margin-top: 10px;
      }
    }
	
	.fluffy-text {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(145deg, #f9b52d, #ff8500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    1px 1px 0 #ff9500,
    2px 2px 0 #d67400,
    3px 3px 5px rgba(0, 0, 0, 0.3);
  display: inline-block;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      1px 1px 0 #ff9500,
      2px 2px 0 #d67400,
      3px 3px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  50% {
    text-shadow:
      1px 1px 0 #ffc700,
      2px 2px 0 #ff9900,
      4px 4px 10px rgba(255, 153, 0, 0.5);
    transform: scale(1.03);
  }
}


.page-title {
    text-allign: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
    margin-top: 50px;
}

.page-title h1 {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  display: inline-block;
}

.page-title h1 span {
  color: #f5b942; /* yellow/orange Q highlight */
  display: inline-block;
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 32px;
  }
}

  .fq8547-section {
 
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    border-bottom: 4px dotted #7d7d8542;
}
* {

    .fq8547-title {
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 30px;
    }

    .fq8547-title::before {
      content: "📱";
      background: #f5b942;
      color: black;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border-radius: 50%;
    }

    .fq8547-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    details {
      
      border-radius: 12px;
      overflow: hidden;
    }

    summary {
      padding: 18px 24px;
      cursor: pointer;
      font-weight: bold;
	  border: 1px solid #2a2e38;
    border-radius: 12px;
      font-size: 14px;
      text-transform: uppercase;
      color: #ddd;
      position: relative;
    }

    summary::after {
      content: "+";
      position: absolute;
      right: 24px;
      font-size: 20px;
      color: #999;
      transition: transform 0.3s ease;
    }

    details[open] summary::after {
      transform: rotate(45deg);
      color: #f5b942;
    }

    .fq8547-answer {
      padding: 12px 24px 20px;
      font-size: 14px;
      color: #bbb;
      background: #1a1d24;
    }

    @media screen and (max-width: 768px) {
      .fq8547-grid {
        grid-template-columns: 1fr;
      }
    }
	
	
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
      position: relative;
    }

    .contact-wrapper::before {
      content: "";
      position: absolute;
      top: -20%;
      left: -20%;
      width: 150%;
      height: 150%;
      
      z-index: 0;
      animation: floatBG 12s ease-in-out infinite;
    }

    @keyframes floatBG {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .contact-info, .contact-form {
      flex: 1;
      min-width: 320px;
      z-index: 1;
    }

    .contact-info h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 16px;
      line-height: 1.7;
      color: #ccc;
    }

    .contact-info strong {
      color: #f5b942;
    }

    .contact-address {
      margin-top: 30px;
    }

    .contact-address p {
      margin: 4px 0;
      font-size: 15px;
    }

    .contact-address a {
      color: #f5b942;
      text-decoration: none;
    }

    .social-icons {
      margin-top: 20px;
    }

 

    .social-icons a:hover {
      color: #f5b942;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 30px;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }

    .contact-form h3 {
      font-size: 26px;
      margin-bottom: 25px;
      color: #fff;
    }

    .form-group {
      position: relative;
      margin-bottom: 25px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 16px 14px;
      font-size: 15px;
      color: #fff;
      background: transparent;
      border: 1px solid #444;
      border-radius: 10px;
      outline: none;
      transition: border 0.3s ease;
    }

    .form-group label {
      position: absolute;
      top: 50%;
      left: 14px;
      color: #aaa;
      font-size: 14px;
      transform: translateY(-50%);
      background: #0f1116;
      padding: 0 4px;
      transition: 0.3s;
      pointer-events: none;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
      top: -8px;
      font-size: 12px;
      color: #f5b942;
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-group button {
      background: linear-gradient(135deg, #f5b942, #ff9500);
      border: none;
      padding: 14px 24px;
      color: #000;
      font-weight: bold;
      border-radius: 8px;
      font-size: 15px;
      cursor: pointer;
      width: 100%;
      transition: background 0.3s ease, transform 0.2s;
    }

    .form-group button:hover {
      background: linear-gradient(135deg, #ffd875, #ffae00);
      transform: translateY(-1px);
    }

    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }

      .contact-info h2 {
        font-size: 28px;
      }

      .contact-form h3 {
        font-size: 22px;
      }
    }
	
	    .about-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 50px;
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      flex-wrap: wrap;
    }

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

    .about-text h2 {
      font-size: 38px;
      margin-bottom: 20px;
    }

    .about-text h3 {
      font-size: 18px;
      color: #f5b942;
      margin-bottom: 25px;
    }

    .about-text p {
      font-size: 16px;
      color: #ccc;
      line-height: 1.7;
    }

    .about-visual {
      flex: 1;
      min-width: 300px;
      text-align: center;
      position: relative;
    }

    .about-visual img {
      max-width: 100%;
      height: auto;
    }

    .about-logo {
      margin-top: 30px;
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .about-text h2 {
        font-size: 32px;
      }
    }
	
	    .about-us2 {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-us2 .image-container {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .about-us2 .image-container img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 0 40px rgba(0, 255, 255, 0.08);
    }

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

    .about-us2 .text h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #fff;
    }

    .about-us2 .text p {
      color: #ccc;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    @media (max-width: 768px) {
      .about-us2 {
        flex-direction: column;
        text-align: center;
      }

      .about-us2 .text h2 {
        font-size: 22px;
      }

      .about-us2 .text p {
        font-size: 15px;
      }
    }
	
	    .modern-section {
      padding: 60px 20px;
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }

    .modern-section h2 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 50px;
    }

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

    .modern-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .modern-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.05);
    }

    .modern-card p {
      font-size: 15px;
      color: #ccc;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .modern-section h2 {
        font-size: 26px;
      }

      .modern-grid {
        grid-template-columns: 1fr;
      }
    }
	
 
 .bloged-container {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
    }

    .bloged-main {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .bloged-card {
      background: #1a1d24;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }

    .bloged-card:hover {
      transform: translateY(-5px);
    }

    .card-image {
      position: relative;
    }

    .card-image img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-labels {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: row; /* 👈 now horizontal */
  gap: 10px;            /* space between items */
  flex-wrap: wrap;
}

    .label {
      
      color: #000;
      font-size: 12px;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 6px;
      display: inline-block;
    }

    .date-label {
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
    }

    .bloged-content {
      padding: 20px;
    }

    .bloged-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .bloged-snippet {
      font-size: 14px;
      color: #ccc;
      margin-bottom: 12px;
    }

    .read-more {
      font-size: 14px;
      color: #f5b942;
      text-decoration: none;
      font-weight: 600;
    }

    .sidebar h3 {
      font-size: 18px;
      margin-bottom: 15px;
      border-bottom: 2px solid #f5b942;
      padding-bottom: 5px;
      width: fit-content;
    }

    .sidebar {
      padding: 10px;
    }

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

    .sidebar li {
      font-size: 14px;
      color: #ccc;
      margin: 8px 0;
    }

    .popular-post {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 15px;
    }

    .popular-post img {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      object-fit: cover;
    }

    .post-info {
      display: flex;
      flex-direction: column;
    }

    .post-title {
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      line-height: 1.3;
    }

    .post-date {
      font-size: 13px;
      color: #bbb;
    }

    @media (max-width: 992px) {
      .bloged-container {
        grid-template-columns: 1fr;
      }

      .bloged-main {
        grid-template-columns: 1fr;
      }
    }
	
	    .blogedcontainer {
      display: flex;
      flex-wrap: wrap;
      padding: 40px 20px;
      max-width: 1300px;
      margin: auto;
    }

    .main-content {
      flex: 2;
      padding-right: 30px;
    }

    .bloged-header {
      margin-bottom: 20px;
    }

    .bloged-title {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0;
      color: #f1f1f1;
    }

    .bloged-meta {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .bloged-meta span {
      background: #222;
      padding: 6px 12px;
      border-radius: 5px;
      color: #f5b942;
    }

    .bloged-image {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .bloged-content p {
      line-height: 1.7;
      margin-bottom: 18px;
      color: #ccc;
    }

    .sidebar {
      flex: 1;
      min-width: 280px;
      padding-top: 20px;
    }

    .sidebar h3 {
      font-size: 20px;
      margin-bottom: 15px;
      border-bottom: 2px solid #f5b942;
      display: inline-block;
    }

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

    .sidebar li {
      margin: 10px 0;
      font-size: 15px;
      color: #aaa;
    }

    .popular-posts li {
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid #222;
      padding-bottom: 10px;
    }

    .popular-posts img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 5px;
    }

    .popular-posts .text {
      flex: 1;
    }

    .popular-posts .text small {
      color: #777;
      font-size: 13px;
    }

    @media(max-width: 768px) {
      .blogedcontainer {
        flex-direction: column;
      }

      .main-content {
        padding-right: 0;
      }
    }
	
	
	  .policy-container {
      max-width: 900px;
      margin: auto;
      padding: 60px 20px;
    }

    h1 {
      font-size: 36px;
      color: #f5b942;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 24px;
      color: #fff;
      margin-top: 40px;
      margin-bottom: 10px;
    }

    p {
      font-size: 15px;
      color: #ccc;
      margin-bottom: 20px;
    }

    ul {
      padding-left: 20px;
      margin-bottom: 30px;
    }

    ul li {
      margin-bottom: 10px;
      color: #aaa;
    }

    a {
      color: #f5b942;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      h2 {
        font-size: 20px;
      }
    }