:root {
  --bg: #06090f;
  --bg-2: #0b111c;
  --panel: #0f1726;
  --panel-soft: rgba(15, 23, 38, 0.8);
  --text: #eef2ff;
  --muted: #aab3c6;
  --accent: #f5c15b;
  --accent-2: #48c774;
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(245, 193, 91, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: auto;
  position: relative;
  min-width: 1024px;
}

h1, h2, h3, h4 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.bg-sheen {
  position: fixed;
  inset: -15% auto auto -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(245, 193, 91, 0.25), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.nav-shell {
  background: rgba(6, 9, 15, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 10;
  min-width: 1024px;
  width: 100%;
}

.navbar-brand {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text);
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  min-width: 1024px;
}

#heroCarousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 500px;
  min-width: 1024px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.slide-one {
  background:url('../img/slider1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.slide-two {
  background: url('../img/slider2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.slide-three {
  background: url('../img/slider3.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent);
}

.section {
  padding: 70px 0 90px;
  position: relative;
  z-index: 1;
}

.layout-wrap {
  overflow-x: auto;
}

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 24px;
  min-width: 980px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.hero-panel {
  background: linear-gradient(140deg, rgba(15, 23, 38, 0.95), rgba(9, 14, 24, 0.95));
}

.cta-panel {
  border: 1px solid rgba(245, 193, 91, 0.4);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.icon-list ion-icon {
  color: var(--accent);
  font-size: 20px;
}

h2 ion-icon,
h3 ion-icon {
  color: var(--accent);
  vertical-align: middle;
  margin-right: 8px;
  font-size: 28px;
}

h3 ion-icon {
  font-size: 24px;
}

.row p strong ion-icon {
  color: var(--accent);
  font-size: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

.highlight-box strong ion-icon {
  color: var(--accent-2);
  font-size: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

.highlight-box {
  background: rgba(245, 193, 91, 0.12);
  border: 1px solid rgba(245, 193, 91, 0.3);
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 18px;
}

.small-note {
  color: var(--muted);
  margin-bottom: 16px;
}

.steps-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.steps-list ion-icon {
  color: var(--accent-2);
  vertical-align: middle;
}

.package-card {
  background: rgba(10, 16, 26, 0.8);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
}

.package-card h4 {
  margin-bottom: 12px;
}

.package-basic h4 {
  color: #8bd36a;
}

.package-gold h4 {
  color: #f5c15b;
}

.package-vip h4 {
  color: #72b7ff;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.package-card ion-icon {
  color: var(--accent);
}

.accordion-item {
  background: rgba(10, 16, 26, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
}

.accordion-button {
  background: rgba(10, 16, 26, 0.9);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--accent), #f6b347);
  color: #20150a;
  box-shadow: 0 10px 25px rgba(245, 193, 91, 0.3);
}

.accordion-button::after {
  filter: brightness(0.8);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0.2);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.accordion-button:not(.collapsed) .faq-icon {
  color: #20150a;
}

.accordion-body {
  background: rgba(6, 10, 18, 0.9);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.forex-pairs {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.pair-item {
  background: rgba(6, 10, 18, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  transition: transform 0.2s ease;
}

.pair-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 193, 91, 0.4);
}

.pair-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pair-name {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pair-name ion-icon {
  color: var(--accent);
  font-size: 18px;
}

.pair-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.pair-change {
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.pair-change.positive {
  color: var(--accent-2);
}

.pair-change.negative {
  color: #ff6b6b;
}

.mini-chart {
  width: 100%;
  height: 60px;
  border-radius: 8px;
}

.visitor-panel h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.visitor-panel h4 ion-icon {
  color: var(--accent);
  font-size: 22px;
}

.visitor-stats {
  display: grid;
  gap: 14px;
}

.visitor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(6, 10, 18, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.visitor-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.visitor-count {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.visitor-activity {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.activity-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(72, 199, 116, 0.6);
}

.activity-text {
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #f6b347);
  border: none;
  color: #20150a;
  font-weight: 600;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #f6b347, var(--accent));
  color: #20150a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 193, 91, 0.3);
}

.btn-accent ion-icon {
  margin-right: 6px;
  font-size: 18px;
}

.btn-lg {
  padding: 12px 28px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .layout-grid {
    min-width: 940px;
  }
}

@media (max-width: 575px) {
  .layout-grid {
    min-width: 900px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
