* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
  color: #1a1a1a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 55px 0;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
}

.section-label,
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #c9a64b;
  margin-bottom: 12px;
}

.section-head h2,
.why-content h2,
.split-content-card h2,
.crypto-left h2,
.legal-hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #111111;
}

.section-head p,
.why-content p,
.split-content-card p,
.crypto-left p,
.legal-hero p {
  font-size: 16px;
  color: #666;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #d4b25d;
  color: #ffffff;
}

.btn-primary:hover {
  background: #be9a42;
}

.btn-secondary {
  background: #111111;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #000000;
}

.btn-outline {
  border: 1px solid #d4b25d;
  color: #d4b25d;
  background: transparent;
}

.btn-outline:hover {
  background: #d4b25d;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #111111;
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.55);
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #111111;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 15, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.inner-header {
  background: #111111;
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  color: #d4b25d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero Slider */
.hero.hero-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 15, 0.92) 0%, rgba(5, 8, 15, 0.74) 40%, rgba(5, 8, 15, 0.25) 100%);
  z-index: 1;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 620px;
  padding: 80px 0;
}

.hero-text .eyebrow {
  color: #ffffff;
  font-size: 15px;
}

.hero-text h1 {
  font-size: 92px;
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-subtext {
  max-width: 560px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.hero-arrow:hover {
  background: rgba(212, 178, 93, 0.95);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dot.active {
  background: #d4b25d;
}

/* Promo strip */
.promo-grid {
  display: grid;
  gap: 20px;
}

.promo-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.promo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 190px;
  display: block;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.75));
}

.promo-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 85%;
}

/* Crypto section */
.crypto-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f1117;
  border-radius: 18px;
  overflow: hidden;
  align-items: center;
}

.crypto-left {
  padding: 50px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
}

.crypto-left h2 {
  color: #ffffff;
  text-transform: uppercase;
}

.crypto-left p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}

.crypto-right {
  height: 380px;
  max-height: 380px;
}

.crypto-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Highlights */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.highlight-card {
  border-radius: 14px;
  padding: 28px 24px;
  min-height: 170px;
  color: #fff;
}

.highlight-card h3 {
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.highlight-card p {
  color: rgba(255,255,255,0.84);
  font-size: 15px;
}

.highlight-card.blue {
  background: #2366d1;
}

.highlight-card.dark {
  background: #313a48;
}

.highlight-card.darker {
  background: #1a1f28;
}

.highlight-card.red {
  background: #e11616;
}

.support-banner {
  background: #013a6b;
  border-radius: 14px;
  padding: 20px 28px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.support-banner span {
  font-size: 34px;
  font-weight: 900;
  color: #d4b25d;
  line-height: 1;
}

.support-banner p {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Split sections */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.split-image-card,
.wide-image-card {
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
  max-height: 380px;
  background: #ddd;
}

.split-image-card img,
.wide-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-content-card {
  background: #faf7ef;
  border-radius: 18px;
  padding: 42px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content-card p {
  margin-bottom: 22px;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.check-list {
  list-style: none;
  margin: 24px 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #333;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4b25d;
  font-weight: 800;
}

.why-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-gallery img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
}

.why-gallery img:first-child {
  grid-column: span 2;
  height: 300px;
}

/* Bonuses */
.bonus-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bonus-item {
  display: flex;
  gap: 18px;
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.bonus-item.active {
  background: #faf7ef;
}

.bonus-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0e8d2;
  color: #b98f32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.bonus-item h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.bonus-item p {
  font-size: 15px;
  color: #666;
}

.bonus-image img {
  width: 100%;
  border-radius: 18px;
  min-height: 400px;
  object-fit: cover;
}

/* CTA */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0b1020 0%, #1d2b57 100%);
  border-radius: 22px;
  padding: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.section-label.light {
  color: #d4b25d;
}

.cta-box h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-box p {
  max-width: 700px;
  color: rgba(255,255,255,0.84);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Disclaimer */
.disclaimer-bar {
  background: #111111;
  padding: 14px 0;
}

.disclaimer-bar p {
  text-align: center;
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: #ffffff;
}

.footer-top {
  padding: 60px 0 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 30px;
}

.footer-about h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.footer-about p {
  color: rgba(255,255,255,0.72);
  max-width: 540px;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-mini-links a:hover {
  color: #d4b25d;
}

.footer-bottom {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom.single-line {
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.72);
}

.footer-mini-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-mini-links a {
  color: rgba(255,255,255,0.72);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d4b25d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0,0,0,0.20);
  z-index: 100;
}

/* Legal pages */
.legal-page {
  padding: 70px 0 90px;
  background: #f7f7f7;
}

.legal-wrap {
  max-width: 1000px;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

.legal-content section + section {
  margin-top: 28px;
}

.legal-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #111111;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  color: #555;
}

.legal-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: 74px;
  }

  .promo-grid-4,
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .why-grid,
  .bonus-layout,
  .crypto-box {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-image-card,
  .wide-image-card {
    height: 340px;
    max-height: 340px;
  }

  .split-content-card {
    min-height: auto;
  }

  .crypto-left {
    min-height: auto;
  }

  .crypto-right {
    height: 340px;
    max-height: 340px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 34px 0;
  }

  .header-wrap {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    padding-top: 8px;
  }

  .header-actions {
    margin-left: auto;
  }

  .logo {
    font-size: 26px;
  }

  .hero.hero-slider,
  .hero-slide .hero-content {
    min-height: 620px;
  }

  .hero-text {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .hero-dots {
    bottom: 18px;
  }

  .section-head h2,
  .why-content h2,
  .split-content-card h2,
  .crypto-left h2,
  .legal-hero h1,
  .cta-box h2 {
    font-size: 30px;
  }

  .promo-grid-4,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .promo-card span,
  .highlight-card h3 {
    font-size: 22px;
  }

  .support-banner {
    padding: 18px 18px;
  }

  .support-banner span {
    font-size: 26px;
  }

  .support-banner p {
    font-size: 16px;
  }

  .crypto-left,
  .split-content-card,
  .cta-box,
  .legal-content {
    padding: 24px;
  }

  .crypto-box {
    grid-template-columns: 1fr;
  }

  .crypto-right {
    height: 240px;
    max-height: 240px;
  }

  .crypto-left {
    min-height: auto;
    padding: 24px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-image-card,
  .wide-image-card {
    height: 240px;
    max-height: 240px;
  }

  .split-content-card {
    min-height: auto;
    padding: 24px;
  }

  .why-gallery {
    grid-template-columns: 1fr;
  }

  .why-gallery img:first-child {
    grid-column: span 1;
    height: 220px;
  }

  .why-gallery img {
    height: 220px;
  }

  .bonus-image img {
    min-height: 260px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 42px 0 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}