/* Mostbet CZ – Monobrand Casino Website
   Brand: green #027B5B, yellow, dark bg */

:root {
  --mostbet-green: #027B5B;
  --mostbet-green-light: #039d6f;
  --mostbet-green-dark: #015a42;
  --mostbet-yellow: #ffc107;
  --mostbet-yellow-dim: #e5ac00;
  --bg-dark: #0d1412;
  --bg-card: #141d1a;
  --bg-section: #111916;
  --text: #e8edea;
  --text-muted: #8a9d94;
  --border: rgba(2, 123, 91, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header – fixed with on-page menu */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 20, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--mostbet-green);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition), background var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--mostbet-green-light);
  background: rgba(2, 123, 91, 0.15);
}

.nav-list a.active {
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--mostbet-green);
  color: #fff;
  border-color: var(--mostbet-green);
}

.btn-primary:hover {
  background: var(--mostbet-green-light);
  border-color: var(--mostbet-green-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--mostbet-green);
  border-color: var(--mostbet-green);
}

.btn-outline:hover {
  background: rgba(2, 123, 91, 0.2);
  color: var(--mostbet-green-light);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(2, 123, 91, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(2, 123, 91, 0.1), transparent),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead-wrap {
  max-width: 960px;
  margin: 0 auto 24px;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 100%;
  margin: 0;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}

.hero-lead.is-expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.hero-lead-toggle {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mostbet-green);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.hero-lead-toggle:hover {
  color: var(--mostbet-green-light);
}

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

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-image {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 960px;
  margin: 0 auto;
}

/* Section images */
.section-image {
  margin: 32px 0;
  padding: 0;
}

.section-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section-image--bonus img {
  max-width: 500px;
  margin: 0 auto;
}

.section-image--aviator img,
.section-image--sports img {
  max-width: 640px;
  margin: 0 auto;
}

.section-image--app {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.section-image--app img {
  max-width: 200px;
  width: 200px;
}

/* Games preview grid */
.games-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.games-preview img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
}

.games-preview img:hover {
  border-color: var(--mostbet-green);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .hero-image {
    margin-top: 28px;
  }

  .section-image--app img {
    max-width: 160px;
    width: 160px;
  }
}

/* Legal notice */
.legal-notice {
  background: rgba(200, 80, 60, 0.12);
  border: 1px solid rgba(200, 80, 60, 0.35);
  padding: 20px 0;
}

.legal-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}

.section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--mostbet-green);
  border-radius: 2px;
  margin-top: 12px;
}

.section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #fff;
}

.section h3:first-of-type {
  margin-top: 24px;
}

.section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: #fff;
}

.section p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.section p:last-of-type {
  margin-bottom: 24px;
}

.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.text-muted {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px !important;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--mostbet-green);
  border-radius: 50%;
}

/* Bonus cards */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  border-color: var(--mostbet-green);
  box-shadow: var(--shadow);
}

.bonus-card h3,
.bonus-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.bonus-card p {
  font-size: 0.95rem;
  margin: 0 0 16px;
  color: var(--text-muted);
}

.bonus-card .btn {
  width: 100%;
}

/* FAQ */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* CTA section */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-section) 0%, rgba(2, 123, 91, 0.08) 100%);
}

.cta-section .hero-ctas {
  margin-top: 24px;
}

/* Footer */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Scroll offset for fixed header */
section[id] {
  scroll-margin-top: 80px;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }

  .nav-list.is-open {
    transform: translateX(0);
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 14px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .header-ctas .btn-outline {
    display: none;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-ctas .btn {
    width: 100%;
  }
}
.games-preview {
  display: flex;
  gap: 15px;
}

.games-preview img {
  width: 400px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.logo img {
    max-height: 40px;
    width: auto;
    display: block;
}