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

body {
  font-family: Arial, sans-serif;
  background-color: #131722;
  background-size: 12px 12px;
  color: white;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #131722;
  box-shadow: 0 18px 40px rgb(103 93 24 / 45%), 0 6px 14px rgb(8 18 67), inset 0 1px 0 rgb(133 118 10);
}

.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 {
  text-decoration: none;
  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;
  text-decoration:none;
  line-height: 20px;
  cursor: pointer;
  white-space: nowrap;
}

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;
}

.language-dropdown {
  position: relative;
}

.language-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background-color: #131722;
  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 SECTION ========== */
.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;
  overflow-y: auto;
}

.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;
  text-decoration: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;
}

/* ========== DOWNLOAD SECTION ========== */
.download-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  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;
}

/* ========== BLOG SECTION ========== */
.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;
}

/* ========== FAQ SECTION ========== */
.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);
}

/* ========== FOOTER SECTION ========== */
.footer-section {
  background-color: #131722;
  box-shadow: 0 18px 40px rgb(103 93 24 / 45%), 0 6px 14px rgb(8 18 67), inset 0 1px 0 rgb(133 118 10);
  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;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}

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

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

* {
  scrollbar-width: thin;
  scrollbar-color: #5c6270 transparent;
}

/* ========== TICKER ========== */
.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%); }
}

/* ========== PWA SECTION ========== */
.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;
}

/* ========== PWA ANDROID SECTION ========== */
.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;
}

/* ========== PWA iOS SECTION ========== */
.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-ios-right {
  flex: 1 1 400px;
  text-align: center;
}

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

/* ========== TESTIMONIAL SECTION ========== */
.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%); }
}

/* ========== AFFILIATE SECTION ========== */
.affiliate-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  text-align: center;
  z-index: 1;
}

.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;
}

@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); }
}

/* ========== AFFILIATE JOIN SECTION ========== */
.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);
  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;
}

/* ========== PARTNER SECTION ========== */
.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);
  gap: 30px;
  justify-content: center;
}

.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;
}

/* ========== HOW IT WORKS ========== */
.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);
}

/* ========== FLUFFY TEXT ========== */
.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 ========== */
.page-title {
  text-align: 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;
  display: inline-block;
}

/* ========== FQ8547 SECTION ========== */
.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;
}

/* ========== CONTACT SECTION ========== */
.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 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);
}

/* ========== ABOUT SECTION ========== */
.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;
}

/* ========== ABOUT US2 ========== */
.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;
}

/* ========== MODERN SECTION ========== */
.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;
}

/* ========== BLOG SECTION ========== */
.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;
  gap: 10px;
  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;
}

.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;
}

/* ========== BLOG DETAIL ========== */
.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-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.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;
}

.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;
}

/* ========== POLICY CONTAINER ========== */
.policy-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

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

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

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

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

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

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

.policy-container a:hover {
  text-decoration: underline;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

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

  nav.menu,
  .right-side .icon-btn,
  .right-side .login-btn,
  .right-side .signup-btn {
    display: none;
  }

  header {
    padding: 12px 15px;
  }

  .logo span {
    font-size: 18px;
  }

  /* Language Menu Mobile */
  .language-menu {
    width: 90vw;
    right: 5vw;
    left: 5vw;
    padding: 15px;
  }

  /* Hero Mobile */
  .hero {
    padding: 40px 15px;
    margin-top: 60px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-form {
    flex-direction: column;
    gap: 10px;
  }

  .hero-form input,
  .hero-form button {
    border-radius: 6px;
    width: 100%;
  }

  .auth-options {
    gap: 20px;
  }

  /* Download Section Mobile */
  .download-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px 15px;
  }

  .phone-image {
    max-width: 250px;
  }

  .info-box h2 {
    font-size: 26px;
  }

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

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

  /* Blog Mobile */
  .blog-section {
    padding: 40px 15px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-header h2 {
    font-size: 22px;
  }

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

  .blog-container {
    padding-left: 5px;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 40px 15px;
  }

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

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

  .faq-answer {
    font-size: 13px;
  }

  /* Footer Mobile */
  .footer-section {
    padding: 40px 15px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

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

  .social-icons {
    justify-content: center;
  }

  /* Ticker Mobile */
  .ticker-item {
    margin: 0 18px;
    font-size: 13px;
  }

  .ticker-item img {
    width: 20px;
    height: 20px;
  }

  /* PWA Section Mobile */
  .pwa-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 15px;
  }

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

  .pwa-left p {
    font-size: 15px;
  }

  .pwa-buttons {
    justify-content: center;
  }

  .pwa-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .pwa-right {
    margin-top: 20px;
  }

  .pwa-right img {
    max-width: 280px;
  }

  /* PWA Android Mobile */
  .pwa-android-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }

  .pwa-android-left img {
    max-width: 250px;
  }

  .pwa-android-right {
    padding: 20px 15px;
  }

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

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

  .pwa-step p {
    text-align: center;
  }

  /* PWA iOS Mobile */
  .pwa-ios-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }

  .pwa-ios-left {
    padding: 20px 15px;
  }

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

  .pwa-ios-right img {
    max-width: 250px;
  }

  /* Testimonial Mobile */
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-section h2 {
    font-size: 28px;
  }

  .testimonial-section p.subtitle {
    font-size: 14px;
  }

  .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;
    min-width: 280px;
  }

  /* Affiliate Section Mobile */
  .affiliate-section {
    padding: 80px 15px;
  }

  .affiliate-title {
    font-size: 42px;
  }

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

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

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

  .join-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .bottom-callout {
    font-size: 22px;
  }

  /* Affiliate Join Mobile */
  .affiliate-join-section {
    padding: 60px 15px;
  }

  .affiliate-join-section h2 {
    font-size: 28px;
  }

  .affiliate-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Partner Section Mobile */
  .partner-section {
    padding: 60px 15px;
  }

  .partner-section h2 {
    font-size: 28px;
  }

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

  .partner-box img {
    height: auto;
    max-height: 300px;
  }

  /* How It Works Mobile */
  .how-it-works {
    padding: 50px 15px 30px;
  }

  .how-it-works h2 {
    font-size: 28px;
  }

  .step-box {
    font-size: 15px;
    padding: 18px 20px;
  }

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

  .earn-box p {
    text-align: center;
    font-size: 15px;
  }

  .earn-box img {
    margin-top: 10px;
    max-width: 150px;
  }

  .cta h3 {
    font-size: 24px;
  }

  .cta p {
    font-size: 15px;
  }

  /* Page Title Mobile */
  .page-title {
    padding: 40px 15px;
    margin-top: 60px;
  }

  .page-title h1 {
    font-size: 28px;
  }

  /* FQ8547 Mobile */
  .fq8547-section {
    padding: 40px 15px;
  }

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

  summary {
    padding: 15px 18px;
    font-size: 13px;
  }

  .fq8547-answer {
    padding: 12px 18px 18px;
    font-size: 13px;
  }

  /* Contact Mobile */
  .contact-wrapper {
    flex-direction: column;
    padding: 60px 15px;
  }

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

  .contact-info p {
    font-size: 15px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form h3 {
    font-size: 22px;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 12px;
    font-size: 14px;
  }

  /* About Section Mobile */
  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 15px;
  }

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

  .about-text h3 {
    font-size: 16px;
  }

  .about-text p {
    font-size: 15px;
  }

  /* About Us2 Mobile */
  .about-us2 {
    flex-direction: column;
    text-align: center;
    padding: 50px 15px;
  }

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

  .about-us2 .text p {
    font-size: 15px;
  }

  /* Modern Section Mobile */
  .modern-section {
    padding: 50px 15px;
  }

  .modern-section h2 {
    font-size: 26px;
  }

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

  .modern-card {
    padding: 25px 18px;
  }

  .modern-card p {
    font-size: 14px;
  }

  /* Blog Container Mobile */
  .bloged-container {
    grid-template-columns: 1fr;
    padding: 30px 15px;
  }

  .bloged-main {
    grid-template-columns: 1fr;
  }

  /* Blog Detail Mobile */
  .blogedcontainer {
    flex-direction: column;
    padding: 30px 15px;
  }

  .main-content {
    padding-right: 0;
  }

  .bloged-title {
    font-size: 18px;
  }

  .bloged-meta {
    font-size: 13px;
    gap: 10px;
  }

  .bloged-image {
    max-height: 250px;
  }

  /* Policy Mobile */
  .policy-container {
    padding: 50px 15px;
  }

  .policy-container h1 {
    font-size: 28px;
  }

  .policy-container h2 {
    font-size: 20px;
  }

  .policy-container p {
    font-size: 14px;
  }

  /* Fluffy Text Mobile */
  .fluffy-text {
    font-size: 32px;
  }
}

/* Extra Small Mobile (< 480px) */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .info-box h2 {
    font-size: 22px;
  }

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

  .affiliate-title {
    font-size: 32px;
  }

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

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

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

  .testimonial-section h2 {
    font-size: 24px;
  }

  .partner-section h2 {
    font-size: 24px;
  }

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

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

  .page-title h1 {
    font-size: 24px;
  }

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