/* ===========================================================================
Landing Page Custom Styles
=========================================================================== */
/* Top Navigation*/
.fl-landing-page .lp-header {
  position: sticky;
  top: 0;
  background-color: var(--fl-bg-body);
  z-index: 1000;
}
.fl-landing-page .lp-logo img {
  max-height: 32px;
  width: auto;
}
.fl-landing-page .lp-logo-text {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--fl-text-title);
}
.fl-landing-page .lp-header nav a, .fl-landing-page .lp-header a.btn-link {
  font-weight: 500;
  color: var(--fl-text-dark);
  transition: color 0.3s ease;
  text-decoration: none;
}
.fl-landing-page .lp-header nav a:hover, .fl-landing-page .lp-header a.btn-link:hover {
  color: var(--fl-color-white);
}

/* ===========================================================================
Hero Section
=========================================================================== */
.lp-hero-section {
  padding: 2rem 0;
}
.lp-chip {
  border-radius: 9999px;
  border: 1px solid rgba(92, 255, 193, 0.3);
  background-color: var(--fl-bg-surface);
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fl-primary);
}
.lp-chip-pulse {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--fl-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
.lp-chip-text {
  font-weight: 500;
}
@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.45);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.2);
  }
}
.lp-gradient-text {
  background: linear-gradient(90deg, #34d399, #38bdf8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-subtitle {
  font-size: 1.1rem;
  color: var(--fl-text-secondary);
  line-height: 1.7;
  max-width: 36rem;
}
.lp-hero-btn {
  padding: 0.85rem 1.85rem;
}
/* Hero Stats */
.lp-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 32rem;
}
.lp-stat-item {
  flex: 1;
}
.lp-stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--fl-text-title);
  margin-bottom: 0.25rem;
}
.lp-stat-label {
  font-size: 0.9rem;
  color: var(--fl-text-tertiary);
  line-height: 1.4;
}
/* Payment Methods */
.lp-payment-badge {
  margin-top: 2rem;
}
.lp-badge-label {
  font-size: 0.9rem;
  color: var(--fl-text-tertiary);
  margin-bottom: 0.75rem;
}
.lp-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lp-badge-item {
  border-radius: 9999px;
  border: 1px solid var(--fl-border-primary);
  background-color: var(--fl-bg-surface);
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  color: var(--fl-text-secondary);
}
/* Landing Hero Dashboard */
.lp-hero-dashboard {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
.lp-dashboard-card {
  background-color: var(--fl-bg-surface);
  border-radius: 1.75rem;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(26px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
/* Dashboard Balance */
.lp-dashboard-balance {
  background: var(--fl-bg-tertiary);
  border-radius: 1rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.lp-balance-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.lp-balance-title {
  font-size: 1rem;
  color: var(--fl-text-secondary);
  font-weight: 500;
}
.lp-balance-amount-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.lp-balance-amount {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--fl-text-title);
  letter-spacing: -0.05em;
  line-height: 1;
}
.lp-balance-label {
  font-size: 1.1rem;
  color: var(--fl-text-tertiary);
  font-weight: 500;
}
.lp-balance-usd {
  font-size: 1.1rem;
  color: var(--fl-primary);
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.lp-btn-redeem {
  background-color: color-mix(in oklab, var(--fl-color-white) 3%, transparent);
  border: 1px solid #3a3d52;
  color: var(--fl-text-title);
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.lp-btn-redeem:hover {
  background-color: color-mix(in oklab, var(--fl-color-white) 3%, transparent);
  color: var(--fl-text-title);
  border: 1px solid #3a3d52;
}
.lp-btn-redeem a, .lp-btn-redeem a:hover {
    color: var(--fl-text-title);
}
.lp-loot-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: 0.07;
	transition: all 0.5s ease;
	transform: rotate(20deg);
}
.lp-dashboard-balance:hover .lp-loot-icon {
	opacity: 0.15;
	transform: rotate(0deg) scale(1.1);
}
/* Tasks Preview */
.lp-tasks-preview {
  background: transparent;
  padding: 1.25rem 0.25rem;
}
.lp-tasks-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.lp-tasks-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fl-text-secondary);
}
.lp-tasks-badge {
  color: var(--fl-text-tertiary);
  font-size: 0.9rem;
  font-weight: 500;
}
.lp-task-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp-task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid var(--fl-border-primary);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.lp-task-item:hover {
  transform: translateX(5px);
}
.lp-task-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.lp-task-icon img {
  width: 28px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 3px;
}
.lp-task-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-task-name {
  font-size: 0.95rem;
  color: var(--fl-text-secondary);
  font-weight: 500;
}
.lp-task-reward {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fl-text-title);
}
/* Floating Coins */
.lp-floating-coin {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: floatCoin 6s ease-in-out infinite;
  pointer-events: none;
}
.lp-floating-coin img {
    width: 32px;
    height: auto;
}
.lp-floating-coin-1 {
  top: 10%;
  left: -3%;
  animation-delay: 0s;
}
.lp-floating-coin-2 {
  top: 60%;
  right: -4%;
  animation-delay: 2s;
}
@keyframes floatCoin {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
  }
}

/* ===========================================================================
How it Works Section
=========================================================================== */
.lp-section-subtitle {
  font-size: 1.1rem;
  color: var(--fl-text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.lp-how-it-section {
  padding: 4rem 0;
}
.lp-step-card {
  background-color: var(--fl-bg-surface);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.lp-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #34d399, #38bdf8, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.lp-step-card:hover::before {
  transform: scaleX(1);
}
.lp-step-card:hover {
  transform: translateY(-8px);
}
.lp-step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--fl-bg-body);
  color: var(--fl-primary);
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.lp-step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.lp-step-icon img {
  width: 42px;
  height: auto;
}
.lp-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fl-text-title);
  margin-bottom: 0.75rem;
}
.lp-step-description {
  font-size: 1rem;
  color: var(--fl-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===========================================================================
Bento Grid Section
=========================================================================== */
.lp-bento-grid-section {
  padding: 4rem 0;
}
.lp-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin: 0 auto;
}
.lp-bento-card {
  background: var(--fl-bg-surface);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.lp-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(92, 255, 193, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.lp-bento-card:hover::before {
  opacity: 1;
}
.lp-bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(92, 255, 193, 0.4);
}
.lp-bento-large {
  grid-column: span 7;
  grid-row: span 2;
}
.lp-bento-medium {
  grid-column: span 5;
  grid-row: span 2;
}
.lp-bento-small {
  grid-column: span 4;
}
.lp-visual-graphics {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}
.lp-bento-card:hover .lp-visual-graphics {
  transform: scale(1.05);
}
/* Play Games Graphics */
.lp-game-character {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: bounce 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.lp-game-character img {
  width: 48px;
  height: auto;
}
.lp-game-character:nth-child(1) {
  background: linear-gradient(135deg, #5cffc1 0%, #4dd9a8 100%);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.lp-game-character:nth-child(2) {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  top: 50%;
  left: 50%;
  animation-delay: 0.3s;
}
.lp-game-character:nth-child(3) {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  top: 25%;
  right: 15%;
  animation-delay: 0.6s;
}
.lp-game-character:nth-child(4) {
  background: linear-gradient(135deg, #ff6b9d 0%, #c94277 100%);
  bottom: 20%;
  left: 30%;
  animation-delay: 0.9s;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Install Apps Graphics */
.lp-phone-container {
  position: relative;
  width: 140px;
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 8px;
}
.lp-phone-screen {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.lp-app-icon {
    color: var(--fl-color-white);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  position: absolute;
  animation: appFloat 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-app-icon:nth-child(1) {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  top: 15px;
  left: 15px;
}
.lp-app-icon:nth-child(2) {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  top: 15px;
  right: 15px;
  animation-delay: 0.5s;
}
.lp-app-icon:nth-child(3) {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  bottom: 50px;
  left: 15px;
  animation-delay: 1s;
}
.lp-app-icon:nth-child(4) {
  background: linear-gradient(135deg, #fa709a, #fee140);
  bottom: 50px;
  right: 15px;
  animation-delay: 1.5s;
}
@keyframes appFloat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Survey Graphics */
.lp-survey-paper {
  width: 120px;
  height: 160px;
  background: var(--fl-bg-tertiary);
  border-radius: 12px;
  padding: 15px;
  position: relative;
  border: 1px solid rgba(92, 255, 193, 0.2);
}
.lp-survey-line {
  height: 8px;
  background: linear-gradient(135deg, #5cffc1, #4dd9a8);
  border-radius: 4px;
  margin-bottom: 12px;
  animation: fillLine 2s ease-in-out infinite;
}
.lp-survey-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.lp-survey-line:nth-child(2) { width: 60%; animation-delay: 0.3s; }
.lp-survey-line:nth-child(3) { width: 90%; animation-delay: 0.6s; }
.lp-survey-line:nth-child(4) { width: 70%; animation-delay: 0.9s; }
@keyframes fillLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.lp-checkmark {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #5cffc1, #4dd9a8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-bg-body);
  font-size: 16px;
  font-weight: bold;
  animation: pulse-mark 1.5s ease-in-out infinite;
}
@keyframes pulse-mark {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Leaderboard Graphics */
.lp-podium-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
.lp-podium {
  width: 60px;
  background: linear-gradient(135deg, #5cffc1 0%, #4dd9a8 100%);
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.lp-podium.lp-first { 
  height: 120px; 
  animation-delay: 0.2s;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}
.lp-podium.lp-second { 
  height: 90px; 
  animation-delay: 0s;
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}
.lp-podium.lp-third { 
  height: 70px; 
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
}
.lp-podium-rank {
  color: var(--fl-bg-body);
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.lp-trophy-icon {
  position: absolute;
  top: -29px;
  font-size: 2rem;
  animation: trophySpin 3s ease-in-out infinite;
}
.lp-trophy-icon img {
  width: 32px;
  height: auto;
}
@keyframes trophySpin {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Refer Others Graphics */
.lp-people-network {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-person-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5cffc1 0%, #4dd9a8 100%);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-bg-body);
  font-size: 1.5rem;
  animation: nodeGlow 2s ease-in-out infinite;
}
.lp-person-node.lp-center {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  z-index: 2;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: var(--fl-bg-tertiary);
}
.lp-person-node:nth-child(2) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.lp-person-node:nth-child(3) {
  top: 10%;
  right: 20%;
  animation-delay: 0.5s;
}
.lp-person-node:nth-child(4) {
  bottom: 20%;
  left: 15%;
  animation-delay: 1s;
}
.lp-person-node:nth-child(5) {
  bottom: 20%;
  right: 15%;
  animation-delay: 1.5s;
}
@keyframes nodeGlow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.lp-bento-card-title {
  color: var(--fl-text-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  z-index: 1;
}
.lp-bento-card-description {
  color: var(--fl-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1;
}

/* ===================================
  FAQ SECTION
=================================== */
.lp-faq-section {
  padding: 4rem 0;
}
.lp-faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--fl-bg-surface);
  border: 1px solid var(--fl-border-primary);
  border-radius: 0.75rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-button {
  background: transparent;
  color: var(--fl-text-title);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--fl-text-title);
}
.accordion-button:hover {
  background: var(--fl-bg-tertiary);
}
.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
  color: var(--fl-text-title);
  flex-shrink: 0;
  background-image: none !important;
  transform: none !important;
}
.accordion-button:not(.collapsed)::after {
  content: '−';
}
.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--fl-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ===================================
   FINAL CTA SECTION
=================================== */
.lp-cta-section {
  padding: 4rem 0;
}
.lp-cta-card {
  background: var(--fl-bg-surface);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.lp-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.lp-cta-badge {
  display: inline-block;
  background: rgba(92, 255, 193, 0.15);
  color: var(--fl-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.lp-cta-subtitle {
  font-size: 1.1rem;
  color: var(--fl-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.lp-btn-cta {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* ===================================
  Landing Page Responsive Design
=================================== */
@media (max-width: 991.98px) {
  .lp-hero-stats {
    gap: 1.5rem;
  }
  .lp-bento-large, .lp-bento-medium, .lp-bento-small {
    grid-column: span 12;
  }
}
@media (max-width: 767.98px) {
  .lp-hero-section {
    padding: 1rem 0;
  }
  .lp-hero-stats {
    gap: 1rem;
  }
  .lp-hero-dashboard {
    padding-top: 30px;
  }
  .lp-dashboard-card {
    padding: 1.5rem;
  }
  .lp-balance-amount {
    font-size: 2rem;
  }
  .lp-how-it-section {
    padding: 2rem 0;
  }
  .lp-bento-grid-section {
    padding: 2rem 0;
  }
  * {animation: none !important}
}
@media (max-width: 575.98px) {
  .lp-bento-card {
    padding: 30px;
  }
  .lp-cta-card {
    padding: 2rem 1.5rem;
  }
}

