html {
  scroll-behavior: smooth;
}

:root {
  --primary: #FF00FF;
  --primary-hover: #D000D0;
  --secondary: #00FFFF;
  --secondary-hover: #00D0D0;
  --accent: #FFD500;
  --text-main: #FFFFFF;
  --text-muted: #E2DDF8;
  --bg-light: #1A0B2E;
  --bg-white: #2D1B4E;
  --bg-dark: #0A031A;
  --font-family: "Chakra Petch", sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  font-family: 'Chakra Petch', var(--font-family);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #FF00FF 0%, #9D00FF 100%);
  color: #FFFFFF !important;
  text-shadow: 1px 1px 0px #4B0082, -1px -1px 0px #4B0082, 1px -1px 0px #4B0082, -1px 1px 0px #4B0082, 0px 3px 5px rgba(0,0,0,0.8);
  box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.4), inset 0px -4px 0px rgba(75, 0, 130, 0.6), 0px 6px 12px rgba(0,0,0,0.5), 0 0 15px #FF00FF;
  border: 3px solid #00FFFF;
  gap: 8px;
}

.btn:hover {
  background: linear-gradient(180deg, #FF4DFF 0%, #B433FF 100%);
  transform: scale(1.05);
  box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.5), inset 0px -4px 0px rgba(75, 0, 130, 0.5), 0px 10px 16px rgba(0,0,0,0.6), 0 0 25px #00FFFF;
}

/* Header */
.header {
  padding: 20px 0;
  background: #0b031b;
  backdrop-filter: blur(10px);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(12px);
    padding: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 101;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-actions {
    display: none;
  }
}

/* Sections Common */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.5);
  z-index: 1;
}

.hero-floating-candies {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-candy {
  position: absolute;
  height: auto;
  animation: float-candy 5s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.candy-1 { bottom: 12%; left: 6%; width: 55px; animation-delay: 0s; }
.candy-2 { bottom: 18%; right: 8%; width: 80px; animation-delay: 0.8s; }
.candy-3 { top: 12%; left: 10%; width: 45px; animation-delay: 1.6s; }
.candy-4 { top: 18%; right: 12%; width: 70px; animation-delay: 1.2s; }
.candy-5 { bottom: 35%; left: 3%; width: 65px; animation-delay: 0.4s; }
.candy-6 { bottom: 40%; right: 4%; width: 50px; animation-delay: 2.0s; }
.candy-7 { top: 25%; left: 22%; width: 38px; animation-delay: 1.5s; }
.candy-8 { bottom: 25%; right: 25%; width: 85px; animation-delay: 0.6s; }
.candy-9 { top: 8%; left: 50%; width: 60px; transform: translateX(-50%); animation-delay: 1.1s; }

@keyframes float-candy {
  0%, 100% {
    transform: translateY(0px) rotate(-6deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(8deg) scale(1.06);
  }
}

@media (max-width: 768px) {
  .hero-candy {
    width: 38px !important;
  }
  .candy-2 { width: 46px !important; }
  .candy-4 { width: 42px !important; }
  .candy-8 { width: 50px !important; }
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  border: 2px solid var(--secondary);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.4), inset 0 0 6px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.8);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 255, 255, 0.9), inset 0 0 12px rgba(0, 255, 255, 0.6);
    border-color: #00FFFF;
  }
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.text-neon-blue {
  color: #00FFFF;
  font-weight: 800;
}

.hero-content h1 .text-neon-blue {
  display: block;
  font-size: 72px;
  padding-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.btn-large {
  font-family: 'Chakra Petch', var(--font-family);
  font-size: 24px;
  padding: 18px 56px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  background: linear-gradient(180deg, #FF00FF 0%, #9D00FF 100%);
  color: #FFFFFF !important;
  text-shadow: 1px 1px 0px #4B0082, -1px -1px 0px #4B0082, 1px -1px 0px #4B0082, -1px 1px 0px #4B0082, 0px 3px 5px rgba(0,0,0,0.8);
  box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.4), inset 0px -4px 0px rgba(75, 0, 130, 0.6), 0px 6px 12px rgba(0,0,0,0.5), 0 0 15px #FF00FF;
  border: 3px solid #00FFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: hero-btn-scale 2.5s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@keyframes hero-btn-scale {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.4), inset 0px -4px 0px rgba(75, 0, 130, 0.6), 0px 6px 12px rgba(0,0,0,0.5), 0 0 15px #FF00FF;
  }
  50% {
    transform: scale(1.04);
    box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.5), inset 0px -4px 0px rgba(75, 0, 130, 0.5), 0px 10px 16px rgba(0,0,0,0.6), 0 0 25px #00FFFF;
  }
}

.btn-large:hover {
  background: linear-gradient(180deg, #FF4DFF 0%, #B433FF 100%);
  transform: scale(1.08);
  box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.5), inset 0px -4px 0px rgba(75, 0, 130, 0.5), 0px 10px 16px rgba(0,0,0,0.6), 0 0 25px #00FFFF;
  color: #FFFFFF;
  animation: none;
}

.hero-disclaimer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
  font-size: 14px;
  color: #FFE83A;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  font-weight: 800;
  flex-wrap: wrap;
  letter-spacing: 1px;
}

.hero-free-shine {
  background: linear-gradient(270deg, #FFE83A, #FFF59D, #FFD54F, #FFE83A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rightToLeftShine 3s linear infinite;
  font-weight: 900;
}

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

/* Sections General Updates */
.section-dark {
  background-color: rgb(0 0 0 / 30%);
  color: #fff;
}

.section-badge-center {
  text-align: center;
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  border:  1px solid var(--secondary);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}

.badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-right: 8px;
  animation: badgeBlink 1.2s infinite ease-in-out;
  vertical-align: middle;
}

@keyframes badgeBlink {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--secondary); }
  50% { opacity: 0.2; transform: scale(0.8); box-shadow: 0 0 0px var(--secondary); }
}

.section-header h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  color: #F8FAFC;
  font-size: 18px;
}

.highlight-text-small {
  color: var(--secondary);
}

/* Marquee Section */
.marquee-container {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0.6) !important;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid rgba(0, 255, 255, 0.5);
  border-top: 2px solid rgba(0, 255, 255, 0.5);
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  font-weight: 800;
  font-size: 18px;
  padding: 0 40px;
  color: #FFE83A;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  letter-spacing: 2px;
}

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

/* The Strategy Path (Timeline) */
.timeline {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--border-radius);
  gap: 24px;
  transition: var(--transition);
}

.timeline-item.active {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--secondary);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-icon.locked {
  background: rgba(0, 0, 0, 0.6);
  color: #F8FAFC;
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-content h4 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--secondary);
}

.timeline-content p {
  color: #F8FAFC;
  font-size: 14px;
}

.timeline-status {
  flex-shrink: 0;
}

.status-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.status-btn.active {
  background: linear-gradient(180deg, #FF00FF 0%, #9D00FF 100%);
  color: #FFFFFF !important;
  text-shadow: 1px 1px 0px #4B0082, -1px -1px 0px #4B0082, 1px -1px 0px #4B0082, -1px 1px 0px #4B0082, 0px 3px 5px rgba(0,0,0,0.8);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.4), inset 0px -2px 0px rgba(75, 0, 130, 0.6), 0px 4px 8px rgba(0,0,0,0.5), 0 0 10px #FF00FF;
  border: 2px solid #00FFFF;
  padding: 6px 14px;
}

.status-btn.locked {
  background: rgba(0, 0, 0, 0.6);
  color: #F8FAFC;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-btn.soon {
  background: transparent;
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dashboards Section */
.dashboards {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.dashboards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.dashboard-card {
  background: linear-gradient(180deg, #00FFFF, #0055FF);
  padding: 9px;
  border-radius: 24px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.dashboard-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: none;
  border: none;
  transition: transform 0.3s ease;
}

.dashboard-card:hover img {
  transform: none;
}

/* Services Grid */
.services {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: rgba(0, 0, 0, 0.7);
  border:  1px solid var(--secondary);
  padding: 40px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--secondary);
  margin-bottom: 24px;
}

.service-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.service-card p {
  color: #F8FAFC;
  line-height: 1.6;
}

/* Process Steps */
.process {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  background: rgba(0, 0, 0, 0.7);
  border:  1px solid var(--secondary);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.step-card:hover {
  transform: scale(1.03);
  background: rgba(0, 0, 0, 0.7);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #FF00FF 0%, #9D00FF 100%);
  color: #FFFFFF !important;
  font-size: 22px;
  font-weight: 900;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  text-shadow: 1px 1px 0px #4B0082, -1px -1px 0px #4B0082, 1px -1px 0px #4B0082, -1px 1px 0px #4B0082, 0px 3px 5px rgba(0,0,0,0.8);
  box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.4), inset 0px -4px 0px rgba(75, 0, 130, 0.6), 0px 6px 12px rgba(0,0,0,0.5), 0 0 15px #FF00FF;
  border: 3px solid #00FFFF;
}

.step-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.step-card p {
  color: #F8FAFC;
  font-size: 15px;
}

/* Optimization (Metrics) */
.optimization {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.metrics-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 60px;
}

.metric-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  min-width: 140px;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #F8FAFC;
}

/* Details Section */
.details {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.detail-card {
  background: rgba(0, 0, 0, 0.7);
  border:  1px solid var(--secondary);
  padding: 48px;
  border-radius: var(--border-radius);
  text-align: center;
}

.detail-icon {
  width: 300px;
  max-width: 100%;
  height: auto;
  color: var(--primary);
  margin: 0 auto 24px;
}

.detail-icon svg,
.detail-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.detail-card h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.detail-card p {
  color: #F8FAFC;
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 213, 0, 0.4);
  background: rgba(0, 0, 0, 0.7);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-header:hover,
.accordion-item.active .accordion-header {
  color: var(--secondary);
}

.accordion-header svg {
  color: var(--secondary);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active {
  border-color: var(--secondary);
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
  color: var(--secondary);
}

.accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #F8FAFC;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  padding: 0 24px 24px;
  max-height: 200px;
}

/* Bottom CTA */
.bottom-cta {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 100px 0;
}

.cta-box {
  background: rgba(0, 0, 0, 0.7);
  border:  1px solid var(--secondary);
  padding: 80px 40px;
  border-radius: 32px;
  text-align: center;
  animation: cta-pulse 3s infinite ease-in-out;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 232, 58, 0.2), inset 0 0 10px rgba(255, 232, 58, 0.1);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 232, 58, 0.5), inset 0 0 20px rgba(255, 232, 58, 0.3);
  }
}

.cta-box h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

.cta-box p {
  font-size: 20px;
  color: #F8FAFC;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #0a031a;
  color: white;
  padding: 24px 0 16px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-desc {
  color: #F8FAFC;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links ul li {
  margin-bottom: 0;
}

.footer-links ul a {
  color: #F8FAFC;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #F8FAFC;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container, .intro-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content h1 .text-neon-blue {
    font-size: 48px;
  }
  
  .intro-image img {
    margin: 0 auto;
  }
  
  .dashboards-grid, .details-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-disclaimer {
    display: none !important;
  }

  .header {
    display: none !important;
  }

  .hero {
    padding: 20px 0 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content h1 .text-neon-blue {
    font-size: 36px;
  }

  .btn-large {
    font-size: 18px;
    padding: 14px 40px;
  }
  
  .cta-box h2 {
    font-size: 32px;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }

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

  .marquee-content {
    animation: marquee 26s linear infinite;
  }

  .detail-icon {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h1 .text-neon-blue {
    font-size: 32px;
  }

  .btn-large {
    font-size: 16px;
    padding: 12px 30px;
  }

  .marquee-content span {
    font-size: 14px;
    padding: 0 20px;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .dashboard-card, .service-card, .step-card, .detail-card {
    padding: 20px;
  }
  
  .dashboard-card {
    padding: 8px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Daily Rewards Section */
.daily-rewards {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0;
}

.daily-rewards-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.daily-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.daily-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.daily-card.active-reward {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #FF3366;
  box-shadow: 0 0 25px rgba(255, 51, 102, 0.4);
  animation: daily-pulse 2.5s infinite ease-in-out;
}

@keyframes daily-pulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3), inset 0 0 10px rgba(255, 51, 102, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.6), inset 0 0 18px rgba(255, 51, 102, 0.3);
  }
}

.daily-coin-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.daily-coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.daily-amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  font-family: 'Chakra Petch', var(--font-family);
}

.daily-day {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #F8FAFC;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .daily-rewards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .daily-rewards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-card {
    padding: 16px !important;
  }
}

/* Custom Widget Helper Classes */
.x-center {
  left: 50%;
  transform: translateX(-50%);
}

.w-90-custom {
  width: 90%;
}

.w-card-custom {
  max-width: 500px;
}

@keyframes pulse-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.zoom {
  animation: pulse-zoom 2s infinite ease-in-out;
}

.zoom2 {
  animation: pulse-zoom 2.5s infinite ease-in-out reverse;
}

.hide-in-desktop {
  display: none !important;
}

@media (max-width: 768px) {
  .hide-in-desktop {
    display: block !important;
    margin-bottom: 24px;
  }
}
