/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: #111111; }
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
  color: #ffffff;
}
.section-sub {
  text-align: center;
  color: #aaaaaa;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.accent { color: #16B5A6; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #16B5A6;
  color: #0a0a0a;
}
.btn-primary:hover {
  background: #109C8F;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 181, 166, 0.3);
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: #ffffff;
  color: #0a0a0a;
}
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 10px 18px; font-size: 13px; background: #EF2200; color: #fff; }
.btn-sm:hover { background: #c91d00; }

/* === HEADER === */
.site-header {
  background: #0a0a0a;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
}
.logo span { color: #16B5A6; }
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo img {
  height: 52px;
}
@media (max-width: 640px) {
  .logo img { height: 34px; }
}
.main-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.2s;
}
.main-nav a:hover { color: #16B5A6; }
.nav-cta {
  background: #16B5A6;
  color: #0a0a0a !important;
  padding: 10px 20px;
  border-radius: 6px;
}
.nav-cta:hover { background: #109C8F; color: #0a0a0a !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid #222;
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 19px;
  color: #cccccc;
  max-width: 720px;
  margin: 0 auto 35px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  background: rgba(22, 181, 166, 0.1);
  color: #16B5A6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(22, 181, 166, 0.3);
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  max-width: 1000px;
  margin: 45px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1b2a2a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  line-height: 0;
}
.hero-slides {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.hero-slide { min-width: 100%; }
.hero-slide img { width: 100%; height: auto; display: block; }
.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex;
  gap: 9px;
  justify-content: center;
  line-height: normal;
}
.hero-dot {
  width: 11px; height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: #16B5A6; transform: scale(1.2); }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.hero-arrow:hover { background: #16B5A6; color: #0a0a0a; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
@media (max-width: 640px) {
  .hero-slider { margin-top: 30px; border-radius: 10px; }
  .hero-arrow { width: 34px; height: 34px; font-size: 20px; }
  .hero-dot { width: 9px; height: 9px; }
}

/* === CASINO GRID === */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.casino-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}
.casino-card:hover {
  transform: translateY(-5px);
  border-color: #16B5A6;
  box-shadow: 0 15px 40px rgba(22, 181, 166, 0.15);
}
.casino-logo {
  background: #0a0a0a;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border: 1px solid #1f1f1f;
}
.casino-logo img {
  max-width: 100%;
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}
.casino-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.bonus-amount {
  color: #16B5A6;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.casino-pros {
  margin-bottom: 22px;
}
.casino-pros li {
  padding: 6px 0;
  color: #cccccc;
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}
.casino-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16B5A6;
  font-weight: bold;
}

/* === PROMO GRID === */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.promo-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-5px);
  border-color: #16B5A6;
  box-shadow: 0 15px 40px rgba(22, 181, 166, 0.15);
}
.promo-image {
  width: 100%;
  aspect-ratio: 1024 / 500;
  background: #0a0a0a;
  overflow: hidden;
}
.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.promo-card:hover .promo-image img {
  transform: scale(1.05);
}
.promo-card h3 {
  font-size: 16px;
  text-align: center;
  padding: 18px 15px 14px;
  color: #ffffff;
  font-weight: 700;
}
.promo-card .btn {
  margin: 0 auto 18px;
  padding: 11px 28px;
  font-size: 13px;
  width: max-content;
  max-width: calc(100% - 30px);
}

/* === PARTNER TABS === */
.partner-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.partner-tab {
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px 28px;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.partner-tab.active,
.partner-tab:hover {
  background: #16B5A6;
  color: #0a0a0a;
  border-color: #16B5A6;
}
.partner-content { display: none; }
.partner-content.active { display: block; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
}
.partner-card:hover {
  border-color: #EF2200;
  transform: translateY(-3px);
}
.partner-card h4 {
  margin-bottom: 8px;
  font-size: 17px;
}
.partner-card p {
  color: #16B5A6;
  font-weight: 700;
  margin-bottom: 14px;
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: #1a1a1a;
  padding: 28px 22px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #2a2a2a;
}
.step-num {
  width: 50px;
  height: 50px;
  background: #16B5A6;
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.step p {
  color: #aaaaaa;
  font-size: 14px;
}

/* === TABLE === */
.table-wrap {
  overflow-x: auto;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
}
th {
  background: #0a0a0a;
  color: #16B5A6;
  font-weight: 700;
}
tbody tr:last-child td { border-bottom: none; }

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: stretch;
  margin-top: 10px;
}
.about-text p {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text strong {
  color: #ffffff;
  font-weight: 700;
}
.about-card {
  background: linear-gradient(180deg, #161616 0%, #1a1a1a 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.about-card-logo {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #2a2a2a;
  width: 100%;
  text-align: center;
}
.about-card-logo img {
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.about-features li {
  padding: 14px 0;
  border-top: 1px solid #2a2a2a;
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-features li:first-child {
  border-top: none;
}
.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  color: #16B5A6;
  font-weight: 900;
  font-size: 18px;
}
.about-features li strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}
.about-features li span {
  color: #aaaaaa;
  font-size: 13px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.about-stat {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: all 0.25s ease;
}
.about-stat:hover {
  border-color: #16B5A6;
  transform: translateY(-3px);
}
.about-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #16B5A6;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.about-stat-label {
  font-size: 13px;
  color: #aaaaaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .about-stat-num { font-size: 28px; }
  .about-stat-label { font-size: 12px; }
}

/* === LONG-FORM CONTENT === */
.content-section .container {
  max-width: 1080px;
}
.content-block {
  margin-bottom: 70px;
  position: relative;
}
.content-block:last-child {
  margin-bottom: 0;
}
.content-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #16B5A6;
  letter-spacing: 3px;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(22, 181, 166, 0.08);
  border: 1px solid rgba(22, 181, 166, 0.25);
  border-radius: 30px;
}
.content-block h2 {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.content-block > p,
.partner-detail-card > p {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-block > p:last-child,
.partner-detail-card > p:last-child {
  margin-bottom: 0;
}
.content-block strong,
.partner-detail-card strong {
  color: #ffffff;
  font-weight: 700;
}
.content-block a,
.partner-detail-card a {
  color: #16B5A6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-block a:hover,
.partner-detail-card a:hover {
  color: #109C8F;
}
.content-h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 22px;
  padding-left: 16px;
  border-left: 4px solid #16B5A6;
  line-height: 1.3;
}

/* Highlight stat row (after section 01) */
.highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(22, 181, 166, 0.06) 0%, rgba(22, 181, 166, 0.02) 100%);
  border: 1px solid rgba(22, 181, 166, 0.2);
  border-radius: 14px;
}
.highlight-item {
  text-align: center;
}
.highlight-num {
  font-size: 32px;
  font-weight: 900;
  color: #16B5A6;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.highlight-label {
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Benefit grid (5 cards) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
.benefit-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 22px 22px 20px;
  transition: all 0.25s ease;
}
.benefit-card:hover {
  border-color: #16B5A6;
  transform: translateY(-3px);
}
.benefit-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(22, 181, 166, 0.12);
  color: #16B5A6;
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}
.benefit-card h4 {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.benefit-card p {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Numbered T&C list */
.numbered-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.numbered-list li {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  align-items: flex-start;
}
.numbered-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #16B5A6;
  color: #0a0a0a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}
.numbered-list li > div strong {
  color: #ffffff;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.numbered-list li > div p {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Callout boxes */
.callout {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #cccccc;
  border-left: 4px solid;
}
.callout strong {
  color: #ffffff;
}
.callout-warning {
  background: rgba(239, 34, 0, 0.08);
  border-left-color: #EF2200;
}
.callout-warning strong {
  color: #EF2200;
}
.callout-info {
  background: rgba(22, 181, 166, 0.06);
  border-left-color: #16B5A6;
}
.callout-info strong {
  color: #16B5A6;
}

/* Flow diagram (4 steps with arrows) */
.flow-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  padding: 28px 22px;
  background: linear-gradient(180deg, #161616 0%, #1a1a1a 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
}
.flow-step {
  text-align: center;
  padding: 8px;
}
.flow-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: #16B5A6;
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(22, 181, 166, 0.25);
}
.flow-step h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-step p {
  color: #aaaaaa;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.flow-arrow {
  color: #16B5A6;
  font-size: 24px;
  font-weight: 900;
  opacity: 0.6;
}

/* Bonus type grid (section 03) */
.bonus-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 24px;
}
.bonus-type-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 24px 22px;
  transition: all 0.25s ease;
  position: relative;
}
.bonus-type-card:hover {
  border-color: #16B5A6;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22, 181, 166, 0.1);
}
.bonus-type-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #16B5A6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(22, 181, 166, 0.1);
  border-radius: 20px;
  margin-bottom: 14px;
}
.bonus-type-card h4 {
  font-size: 17px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bonus-type-amount {
  font-size: 22px;
  font-weight: 900;
  color: #16B5A6;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.bonus-type-card p {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Heylink + Joylink side-by-side cards */
.partner-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.partner-detail-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 0;
}
.partner-detail-card.partner-detail-card-alt {
  background: linear-gradient(180deg, #1a1a1a 0%, #181818 100%);
}
.partner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #16B5A6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 11px;
  background: rgba(22, 181, 166, 0.1);
  border-radius: 20px;
}
.partner-tag-red {
  color: #EF2200;
  background: rgba(239, 34, 0, 0.1);
}
.partner-detail-card h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.feature-pills {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.feature-pills li {
  padding: 12px 16px;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.55;
}
.feature-pills li:last-child {
  margin-bottom: 16px;
}

/* Slot provider grid */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 0;
}
.provider-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 22px;
  transition: all 0.25s ease;
}
.provider-card:hover {
  border-color: #16B5A6;
  transform: translateY(-3px);
}
.provider-name {
  font-size: 20px;
  font-weight: 900;
  color: #16B5A6;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.provider-card p {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Conclusion banner */
.conclusion-banner {
  margin-top: 70px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #0a1f0e 0%, #0a0a0a 100%);
  border: 1px solid rgba(22, 181, 166, 0.3);
  border-radius: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.conclusion-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 181, 166, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.conclusion-banner h2 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.3;
  position: relative;
}
.conclusion-banner p {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.conclusion-banner strong {
  color: #16B5A6;
}
.conclusion-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 968px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-type-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-row { grid-template-columns: repeat(3, 1fr); padding: 20px 16px; }
  .highlight-num { font-size: 26px; }
  .partner-detail-grid { grid-template-columns: 1fr; }
  .flow-diagram {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 24px;
  }
  .flow-arrow { display: none; }
}
@media (max-width: 640px) {
  .content-block h2 { font-size: 24px; }
  .content-h3 { font-size: 18px; }
  .content-block > p,
  .partner-detail-card > p { font-size: 15px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: 1fr; }
  .bonus-type-grid { grid-template-columns: 1fr; }
  .highlight-row { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .highlight-num { font-size: 28px; }
  .flow-diagram { grid-template-columns: 1fr; padding: 20px; }
  .conclusion-banner { padding: 36px 24px; }
  .conclusion-banner h2 { font-size: 24px; }
  .partner-detail-card { padding: 26px 22px; }
  .partner-detail-card h2 { font-size: 22px; }
  .numbered-list li { padding: 14px 16px; }
  .numbered-num { width: 32px; height: 32px; font-size: 14px; }
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 20px 25px;
}
.faq-item summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #16B5A6;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 14px;
  color: #cccccc;
  font-size: 15px;
}

/* === FOOTER === */
.site-footer {
  background: #050505;
  border-top: 1px solid #222;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
  align-items: start;
}
.footer-grid h4 {
  color: #16B5A6;
  margin-bottom: 14px;
  font-size: 16px;
}
.footer-grid ul li {
  padding: 5px 0;
  color: #aaaaaa;
  font-size: 14px;
}
.footer-grid ul li a:hover { color: #16B5A6; }
.footer-grid p { color: #aaaaaa; font-size: 14px; margin-top: 10px; }
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #1a1a1a;
  color: #666;
  font-size: 13px;
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #16B5A6;
  color: #0a0a0a;
  padding: 16px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(22, 181, 166, 0.4);
  z-index: 99;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    align-items: stretch;
  }
  .casino-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card h3 { font-size: 14px; padding: 14px 10px 10px; }
  .promo-card .btn {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
  }
  .partner-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 28px; }
  .floating-cta { padding: 13px 20px; font-size: 13px; }
}

/* === CONTENT / LEGAL PAGES === */
.page-hero {
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
  border-bottom: 1px solid #222;
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
}
.page-hero p {
  color: #aaaaaa;
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 17px;
}
.page-hero .hero-badges { margin-top: 24px; }
.page-hero-banner {
  display: block;
  max-width: 1040px;
  margin: 34px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1b2a2a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-hero-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(22, 181, 166, 0.22);
}
.page-hero-banner img { width: 100%; height: auto; display: block; }
@media (max-width: 640px) {
  .page-hero-banner { margin-top: 24px; border-radius: 10px; }
}
.page-breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}
.page-breadcrumb a:hover { color: #16B5A6; }
.prose {
  max-width: 820px;
  margin: 0 auto;
  color: #cfcfcf;
  font-size: 16px;
}
.prose h2 {
  color: #ffffff;
  font-size: 26px;
  margin: 38px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1f1f1f;
}
.prose h3 {
  color: #ffffff;
  font-size: 19px;
  margin: 26px 0 10px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol {
  margin: 0 0 18px 22px;
  padding-left: 4px;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 9px; }
.prose a { color: #16B5A6; text-decoration: underline; }
.prose a:hover { color: #109C8F; }
.prose strong { color: #ffffff; }
.prose .updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}
.prose .callout {
  background: #111111;
  border-left: 3px solid #16B5A6;
  border-radius: 4px;
  padding: 18px 22px;
  margin: 26px 0;
  color: #dddddd;
}
.prose .callout.warn { border-left-color: #EF2200; }
.faq-block {
  max-width: 820px;
  margin: 0 auto;
}
.faq-block details {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 0 22px;
}
.faq-block summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  font-size: 22px;
  color: #16B5A6;
  transition: transform 0.2s;
}
.faq-block details[open] summary::after { content: "\2212"; }
.faq-block details > p {
  color: #cfcfcf;
  padding: 0 0 20px;
  margin: 0;
}
@media (max-width: 640px) {
  .page-hero h1 { font-size: 30px; }
  .prose h2 { font-size: 22px; }
}
