:root {
  --bg: #F0F4EF;
  --surface: #FFFFFF;
  --text: #1E2923;
  --muted: #5C6B61;
  --primary: #86A384;
  --secondary: #B3C1AD;
  --accent: #D4A373;
  --border: rgba(30, 41, 35, 0.08);
  --nav-bg: #1E2923;
  --hero-bg: #152019;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image: linear-gradient(160deg, var(--bg) 0%, rgba(134, 163, 132, 0.12) 45%, var(--bg) 100%);
  position: relative;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 10% 0%, rgba(212, 163, 115, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(134, 163, 132, 0.1), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--accent);
}

.disclosure-banner {
  max-width: fit-content;
  margin: 8px auto;
  padding: 5px 18px;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.3);
  border-radius: 4px;
  text-align: center;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  height: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 32px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-desktop a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  color: var(--surface);
  width: 28px;
  height: 28px;
  position: relative;
}

.nav-desktop a:hover {
  opacity: 1;
  color: var(--secondary);
}

.nav-desktop a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-desktop a[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--surface);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.nav-desktop a[data-tooltip]:hover::after {
  opacity: 1;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--surface);
}

.burger-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-bg);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: var(--surface);
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a:hover {
  color: var(--secondary);
}

.site-footer {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 20px 32px;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 13px;
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badges a img,
.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

.age-overlay,
.cookie-banner {
  position: fixed;
  z-index: 10000;
}

.age-overlay {
  inset: 0;
  background: rgba(21, 32, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-modal h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.age-modal p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-buttons button {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.age-confirm {
  background: var(--primary);
  color: var(--surface);
}

.age-confirm:hover {
  background: #6d8a6b;
}

.age-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  max-width: 600px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.cookie-accept {
  background: var(--primary);
  color: var(--surface);
}

.cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.legal-page main,
.subpage-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.legal-page h1,
.subpage-main h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-page h2,
.subpage-main h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-page h3,
.subpage-main h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 8px;
}

.legal-page p,
.legal-page li,
.subpage-main p,
.subpage-main li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-page ul,
.subpage-main ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 16px;
  background: var(--bg);
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-error {
  color: #c0392b;
  font-size: 13px;
  margin: -10px 0 12px;
  display: none;
}

.contact-form .form-error.visible {
  display: block;
}

.contact-form button[type="submit"] {
  padding: 12px 32px;
  background: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  background: #6d8a6b;
}

.form-success {
  padding: 32px;
  background: rgba(134, 163, 132, 0.12);
  border: 1px solid rgba(134, 163, 132, 0.3);
  border-radius: 10px;
  text-align: center;
}

.form-success h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success.hidden,
.contact-form.hidden {
  display: none;
}

.page-404 {
  text-align: center;
  padding: 80px 20px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-404 p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary:hover {
  background: #6d8a6b;
  color: var(--surface);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}

.startup-pitch-ui {
  --pitch-growth: var(--primary);
  --vision-accent: var(--accent);
}

.hero {
  background: var(--hero-bg);
  min-height: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 40px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 32, 25, 0.7) 0%, rgba(30, 41, 35, 0.4) 100%);
  z-index: 1;
}

.hero-collage {
  position: absolute;
  width: 100%;
  max-width: 600px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  overflow: hidden;
}

.hero-collage img {
  position: absolute;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  max-width: 500px;
  max-height: 320px;
}

.hero-img-1 {
  width: 200px;
  height: 160px;
  top: 20px;
  left: 10%;
  transform: rotate(-5deg);
}

.hero-img-2 {
  width: 160px;
  height: 140px;
  top: 60px;
  right: 15%;
  transform: rotate(3deg);
}

.hero-img-3 {
  width: 140px;
  height: 120px;
  bottom: 30px;
  left: 35%;
  transform: rotate(-2deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 200px auto 0;
  line-height: 1.5;
}

.investors-metrics {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.investors-metrics .metric {
  text-align: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.investors-metrics .metric strong {
  display: block;
  font-size: 22px;
  color: var(--secondary);
  font-weight: 800;
}

.investors-metrics .metric span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offers-section {
  padding: 60px 20px;
  position: relative;
  background: linear-gradient(180deg, rgba(134, 163, 132, 0.06) 0%, var(--bg) 100%);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 163, 115, 0.06), transparent 70%);
  pointer-events: none;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.offers-section h2 {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  justify-content: center;
}

.offer-card {
  background: #1a2e22;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.offer-card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.offer-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 6px;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.offer-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-bonus {
  font-size: 15px;
  color: #e8d5b5;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #c9a227;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: background 0.2s;
}

.offer-cta:hover {
  background: #dbb42e;
  color: #1a1a1a;
}

.info-section {
  padding: 56px 20px;
  position: relative;
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.info-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.info-cta:hover {
  background: #6d8a6b;
  color: var(--surface);
}

.layout-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.support-list {
  list-style: none;
  padding: 0;
}

.support-list li {
  padding: 14px 18px;
  background: rgba(134, 163, 132, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
  border-left: 3px solid var(--primary);
}

.layout-security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sec-card {
  padding: 24px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
}

.sec-card .sec-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(134, 163, 132, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.layout-licensed {
  display: flex;
  gap: 0;
  counter-reset: step;
}

.licensed-step {
  flex: 1;
  padding: 24px 20px;
  position: relative;
  text-align: center;
}

.licensed-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: var(--primary);
  color: var(--surface);
  border-radius: 50%;
  margin: 0 auto 12px;
  font-weight: 700;
  font-size: 16px;
}

.layout-select table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.layout-select th,
.layout-select td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.layout-select th {
  background: rgba(134, 163, 132, 0.12);
  font-weight: 700;
  color: var(--text);
}

.layout-bonuses {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}

.vision-growth-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.growth-stat {
  flex: 1;
  min-width: 120px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(134, 163, 132, 0.15), rgba(212, 163, 115, 0.1));
  border-radius: 10px;
  text-align: center;
}

.growth-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.growth-stat span {
  font-size: 12px;
  color: var(--muted);
}

.layout-wagering {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.wager-block {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.wager-block h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.layout-slots {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}

.layout-slots img {
  border-radius: 10px;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.layout-beyond {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.beyond-card {
  padding: 24px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.beyond-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}

.layout-live {
  display: flex;
  gap: 0;
}

.live-dark,
.live-light {
  flex: 1;
  padding: 32px 28px;
}

.live-dark {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10px 0 0 10px;
}

.live-dark h2 {
  color: #fff;
}

.live-light {
  background: rgba(134, 163, 132, 0.1);
  border-radius: 0 10px 10px 0;
}

.layout-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.type-pill {
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.decor-inline {
  margin: 20px auto;
  border-radius: 10px;
  max-width: 100%;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.info-inner {
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-collage {
    display: none;
  }

  .hero {
    background: linear-gradient(160deg, var(--hero-bg) 0%, #243528 100%);
    min-height: 380px;
  }

  .hero::after {
    background: rgba(21, 32, 25, 0.75);
  }

  .hero-content {
    padding: 20px;
  }

  .hero-subtitle {
    margin-top: 16px;
  }

  .layout-support,
  .layout-security,
  .layout-licensed,
  .layout-bonuses,
  .layout-wagering,
  .layout-slots,
  .layout-beyond,
  .layout-live {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .live-dark {
    border-radius: 10px 10px 0 0;
  }

  .live-light {
    border-radius: 0 0 10px 10px;
  }

  .licensed-step {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 12px;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}
