@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
  --teal-bg: #0b1618;
  --teal-card: #132224;
  --teal-card2: #1a2e30;
  --teal-teal: #0d9488;
  --teal-steel: #94a3b8;
  --teal-text: #f0fdfa;
  --teal-muted: #6b9e98;
  --teal-muted2: #a8d5d0;
  --teal-border: #1e3a3c;
  --teal-heading: 'Raleway', sans-serif;
  --teal-body: 'Roboto', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--teal-bg);
  color: var(--teal-text);
  font-family: var(--teal-body);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--teal-heading);
  line-height: 1.25;
  font-weight: 700;
}

a { color: var(--teal-teal); text-decoration: none; }
a:hover { color: var(--teal-muted2); }

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

/* ── LAYOUT ── */
.teal-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.teal-header {
  background: rgba(11,22,24,0.96);
  border-bottom: 1px solid var(--teal-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.teal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.teal-logo {
  font-family: var(--teal-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-teal);
  letter-spacing: 0.02em;
}

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

.teal-nav { display: flex; align-items: center; gap: 28px; }
.teal-nav a { color: var(--teal-muted2); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.teal-nav a:hover { color: var(--teal-text); }

.teal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-teal);
  color: #0b1618;
  font-family: var(--teal-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.teal-btn:hover {
  background: #14b8a6;
  color: #0b1618;
  transform: translateY(-1px);
}

.teal-btn-lg {
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 8px;
}

.teal-btn-outline {
  background: transparent;
  border: 2px solid var(--teal-teal);
  color: var(--teal-teal);
}

.teal-btn-outline:hover {
  background: var(--teal-teal);
  color: #0b1618;
}

/* ── HERO ── */
.teal-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.teal-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(13,148,136,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.teal-hero h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  color: var(--teal-text);
  margin-bottom: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.teal-hero h1 em {
  font-style: italic;
  color: var(--teal-teal);
  font-weight: 600;
}

.teal-hero-sub {
  font-size: 1.1rem;
  color: var(--teal-muted2);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.teal-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.teal-hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.teal-badge {
  background: var(--teal-card);
  border: 1px solid var(--teal-border);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
}

.teal-badge-val {
  font-family: var(--teal-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-teal);
  display: block;
}

.teal-badge-lbl {
  font-size: 0.75rem;
  color: var(--teal-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SECTIONS ── */
.teal-section { padding: 64px 0; }
.teal-section-alt { background: var(--teal-card); }

.teal-section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--teal-text);
  margin-bottom: 12px;
}

.teal-section-sub {
  color: var(--teal-muted2);
  max-width: 600px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  font-weight: 300;
}

/* ── GRID ── */
.teal-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.teal-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.teal-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── CARDS ── */
.teal-card {
  background: var(--teal-card2);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.teal-card:hover {
  border-color: var(--teal-teal);
  transform: translateY(-2px);
}

.teal-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(13,148,136,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.teal-card h3 {
  font-family: var(--teal-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 8px;
}

.teal-card p { font-size: 0.88rem; color: var(--teal-muted2); font-weight: 300; }

/* ── SLOT CARDS ── */
.teal-slot {
  background: var(--teal-card2);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  padding: 18px;
  transition: border-color 0.2s;
}

.teal-slot:hover { border-color: var(--teal-teal); }

.teal-slot-name {
  font-family: var(--teal-heading);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 4px;
}

.teal-slot-meta { font-size: 0.78rem; color: var(--teal-muted); }

.teal-slot-rtp {
  display: inline-block;
  background: rgba(13,148,136,0.15);
  color: var(--teal-teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
  margin-right: 6px;
}

.teal-slot-win {
  display: inline-block;
  background: rgba(148,163,184,0.1);
  color: var(--teal-steel);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 8px;
}

/* ── BONUS TABLE ── */
.teal-bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.teal-bonus-table th {
  background: var(--teal-card2);
  color: var(--teal-muted2);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--teal-border);
  font-family: var(--teal-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.teal-bonus-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--teal-border);
  color: var(--teal-text);
  font-size: 0.9rem;
  font-weight: 300;
}

.teal-bonus-table tr:last-child td { border-bottom: none; }
.teal-bonus-table tr:hover td { background: rgba(13,148,136,0.04); }

.teal-highlight { color: var(--teal-teal); font-weight: 700; }

/* ── PAYMENT GRID ── */
.teal-pay {
  background: var(--teal-card2);
  border: 1px solid var(--teal-border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.teal-pay-icon { font-size: 1.4rem; }
.teal-pay-name { font-size: 0.9rem; font-weight: 500; color: var(--teal-text); }
.teal-pay-times { font-size: 0.78rem; color: var(--teal-muted); font-weight: 300; }

/* ── VIP ── */
.teal-vip-track {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--teal-border);
}

.teal-vip-tier {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid var(--teal-border);
  background: var(--teal-card2);
  transition: background 0.2s;
}

.teal-vip-tier:last-child { border-right: none; }
.teal-vip-tier:hover { background: var(--teal-card); }

.teal-vip-icon { font-size: 1.4rem; margin-bottom: 6px; }
.teal-vip-name { font-size: 0.8rem; font-weight: 700; color: var(--teal-text); font-family: var(--teal-heading); }
.teal-vip-pct { font-size: 0.73rem; color: var(--teal-teal); font-weight: 700; }

/* ── LIVE ── */
.teal-live-card {
  background: var(--teal-card2);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
}

.teal-live-card:hover { border-color: var(--teal-teal); }

.teal-live-name {
  font-family: var(--teal-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-text);
}

.teal-live-provider { font-size: 0.78rem; color: var(--teal-muted); }
.teal-live-mult { font-size: 0.95rem; font-weight: 500; color: var(--teal-muted2); }

/* ── FAQ ── */
.teal-faq-item {
  border-bottom: 1px solid var(--teal-border);
  padding: 20px 0;
}

.teal-faq-item:last-child { border-bottom: none; }

.teal-faq-q {
  font-family: var(--teal-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 8px;
}

.teal-faq-a { font-size: 0.88rem; color: var(--teal-muted2); font-weight: 300; line-height: 1.65; }

/* ── TRUST BAR ── */
.teal-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--teal-border);
  border-bottom: 1px solid var(--teal-border);
}

.teal-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--teal-muted2);
  font-weight: 300;
}

.teal-trust-item span:first-child { font-size: 1.1rem; }

/* ── MIRROR BOX ── */
.teal-mirror-box {
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.teal-mirror-box-icon { font-size: 2rem; flex-shrink: 0; }

.teal-mirror-box h3 {
  font-family: var(--teal-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-teal);
  margin-bottom: 6px;
}

.teal-mirror-box p { font-size: 0.88rem; color: var(--teal-muted2); font-weight: 300; }

/* ── FOOTER ── */
.teal-footer {
  background: var(--teal-card);
  border-top: 1px solid var(--teal-border);
  padding: 48px 0 32px;
}

.teal-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.teal-footer-brand { font-family: var(--teal-heading); font-size: 1.3rem; font-weight: 700; color: var(--teal-teal); margin-bottom: 12px; }
.teal-footer-desc { font-size: 0.83rem; color: var(--teal-muted); line-height: 1.6; font-weight: 300; }

.teal-footer-col h4 {
  font-family: var(--teal-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 14px;
}

.teal-footer-col ul { list-style: none; }
.teal-footer-col ul li { margin-bottom: 8px; }
.teal-footer-col ul li a { font-size: 0.83rem; color: var(--teal-muted); font-weight: 300; }
.teal-footer-col ul li a:hover { color: var(--teal-text); }

.teal-footer-bottom {
  border-top: 1px solid var(--teal-border);
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--teal-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── INFO BOX ── */
.teal-info-box {
  background: rgba(13,148,136,0.06);
  border: 1px solid rgba(13,148,136,0.2);
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 24px;
}

.teal-info-box p { font-size: 0.86rem; color: var(--teal-muted2); font-weight: 300; }

/* ── TAG ── */
.teal-tag {
  display: inline-block;
  background: rgba(13,148,136,0.1);
  color: var(--teal-teal);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--teal-heading);
}

/* ── STEPS ── */
.teal-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teal-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--teal-card2);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  padding: 20px;
}

.teal-step-num {
  counter-increment: steps;
  width: 36px;
  height: 36px;
  background: var(--teal-teal);
  color: #0b1618;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--teal-heading);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.teal-step-num::before { content: counter(steps); }

.teal-step-body h4 {
  font-family: var(--teal-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-text);
  margin-bottom: 4px;
}

.teal-step-body p { font-size: 0.86rem; color: var(--teal-muted2); font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .teal-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .teal-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .teal-footer-grid { grid-template-columns: 1fr 1fr; }
  .teal-vip-track { flex-wrap: wrap; }
  .teal-vip-tier { min-width: 30%; border-right: 1px solid var(--teal-border); }
}

@media (max-width: 600px) {
  .teal-grid-3 { grid-template-columns: 1fr; }
  .teal-grid-4 { grid-template-columns: 1fr 1fr; }
  .teal-grid-2 { grid-template-columns: 1fr; }
  .teal-footer-grid { grid-template-columns: 1fr; }
  .teal-nav { gap: 12px; }
  .teal-hero { padding: 48px 0 40px; }
  .teal-mirror-box { flex-direction: column; gap: 12px; }
}
