@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto'), local('Roboto-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Roboto Bold'), local('Roboto-Bold');
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #1a1a2e;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

ul, ol {
  padding-left: 1.5rem;
}

.max-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-block {
  padding: 32px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a1a2e;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #ff6900;
}

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

.btn-primary {
  background: #ff6900;
  color: #ffffff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 9px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: #ffffff;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  background: #16213e;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: #ffffff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #ff6900;
}

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 64px 16px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  width: 100%;
}

.hero-copy h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.hero-copy .percentage {
  font-size: 4rem;
  font-weight: 900;
  color: #ff6900;
  line-height: 1;
}

.hero-copy .welcome {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

.hero-copy .grab {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.hero-cta {
  font-size: 1.1rem;
  padding: 14px 32px;
}

.payment-section {
  background: #16213e;
}

.payment-title-j {
  text-align: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

.payment-icons-j {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.payment-icons-j img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.trust-section {
  background: #f5f5f2;
  color: #222;
}

.trustPoints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
}

.trustPoints > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-width: 120px;
}

.trustPoints img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.trustPoints p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #222;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #ffffff;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  flex: 1;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-card {
  flex: 0 0 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #16213e;
  transition: transform 0.2s;
}

.slider-card:hover {
  transform: translateY(-4px);
}

.slider-card figure {
  margin: 0;
}

.slider-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  aspect-ratio: 220/160;
}

.slider-card figcaption {
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: rgba(0,0,0,0.7);
}

.slider-arrow {
  background: rgba(255,105,0,0.85);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  padding: 0;
  user-select: none;
}

.slider-arrow:hover {
  background: #ff6900;
}

.fired-section {
  background: #0f3460;
}

.getFiredUp {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0;
  position: relative;
  align-items: center;
}

.getFiredUp::-webkit-scrollbar {
  display: none;
}

.image-container {
  position: relative;
  flex: 0 0 250px;
  border-radius: 8px;
  overflow: hidden;
  min-height: 180px;
}

.image-container img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  aspect-ratio: 250/180;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
}

.card-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

.getFiredUpButton {
  display: inline-block;
  background: #ff6900;
  color: #ffffff !important;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
  width: fit-content;
  transition: opacity 0.2s;
}

.getFiredUpButton:hover {
  opacity: 0.85;
}

.scroll-arrow {
  background: rgba(255,105,0,0.85);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.scroll-arrow:hover {
  background: #ff6900;
}

.top_winners_container {
  background: #16213e;
  border-radius: 8px;
  padding: 24px;
}

.winners_title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.slides_card {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0;
}

.slides_card::-webkit-scrollbar {
  display: none;
}

.winner-card {
  flex: 0 0 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.winner-amount {
  color: #ff6900;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.view-more {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #ff6900;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.view-more:hover {
  opacity: 0.75;
}

.testimonial_title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.testimonials_slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0;
}

.testimonials_slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 260px;
  background: #16213e;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-style: italic;
}

.testimonial-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff6900;
}

.floating-section {
  background: linear-gradient(90deg, #ff6900 0%, #cc4400 100%);
  border-radius: 8px;
  padding: 24px 32px;
  text-align: center;
}

.floating-section .section__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta-primary {
  background: #ffffff;
  color: #ff6900 !important;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: opacity 0.2s;
}

.cta-primary:hover {
  opacity: 0.9;
}

.floating-section a:not(.cta-primary) {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.seo-text-block {
  background: #16213e;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.seo-text-block .max-container {
  padding: 32px 16px 48px;
}

.seo-text-block h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.seo-text-block h2 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #ffffff;
}

.seo-text-block h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}

.seo-text-block p,
.seo-text-block li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  line-height: 1.7;
}

.seo-text-block ol,
.seo-text-block ul {
  margin-bottom: 16px;
}

.seo-text-block ol li,
.seo-text-block ul li {
  margin-bottom: 6px;
}

.seo-internal-link {
  color: #ff9944 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-internal-link:hover {
  color: #ffbb77 !important;
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: #ff9944;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #ffbb77;
}

.breadcrumb span {
  margin: 0 6px;
  color: rgba(255,255,255,0.3);
}

.page-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 48px 16px 32px;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
}

.footer-links {
  background: #0f0f1a;
  margin-top: 0;
}

.ignition-footer {
  padding: 0;
}

.footer-section {
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr 1.2fr;
  gap: 32px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #ff6900;
}

.footer-column h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-column.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ignition-logo img,
.trusted-logo img {
  width: auto;
  max-height: 50px;
  object-fit: contain;
}

.crypto-logos-container,
.cc-logos-container,
.badges-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.crypto-logos-container img,
.cc-logos-container img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.badges-container img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 4px;
}

.about-ignition p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.about-ignition h2 {
  font-size: 0.9rem;
}

.customer-service a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.disclaimer a {
  color: #ff6900;
  text-decoration: underline;
}

.app-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}

.app-specs-table td {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.app-specs-table tr:first-child td {
  background: rgba(255,105,0,0.2);
  font-weight: 700;
  color: #ffffff;
}

.app-specs-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .btn-ghost {
    display: none;
  }

  .hero-copy .percentage {
    font-size: 3rem;
  }

  .hero-copy .welcome {
    font-size: 1.1rem;
  }

  .hero-copy .grab {
    font-size: 0.95rem;
  }

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

  .page-header h1 {
    font-size: 1.5rem;
  }

  .seo-text-block h1 {
    font-size: 1.4rem;
  }

  .seo-text-block h2 {
    font-size: 1.1rem;
  }

  .slider-card {
    flex: 0 0 180px;
  }

  .image-container {
    flex: 0 0 200px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 12px;
  }

  .trustPoints {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 220px;
  }

  .winner-card {
    flex: 0 0 170px;
  }
}