/* style.css — Verde Casino DE | Accent: #00b352 */

:root {
  --accent: #00b352;
  --accent-light: color-mix(in srgb, var(--accent) 70%, white);
  --accent-hover: color-mix(in srgb, var(--accent) 85%, white);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #080f0d;
  color: #e0e0e0;
  line-height: 1.65;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #080f0d;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.cta-btn:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.cta-btn-outline {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  text-decoration: none;
}

.cta-btn-outline:hover {
  background: var(--accent);
  color: #080f0d;
  text-decoration: none;
}

/* ── Header & Navigation ── */
header {
  background: #0d1a14;
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid #1a3028;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #c8d8cc;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  text-decoration: none;
}

.nav-links .nav-cta a {
  background: var(--accent);
  color: #080f0d;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-links .nav-cta a:hover {
  background: var(--accent-hover);
}

/* ── Burger ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #e0e0e0;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all 0.3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0d1a14;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #1a3028;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 13px 20px;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: #1a3028;
  }

  .nav-links .nav-cta a {
    margin: 8px 20px;
    display: block;
    border-radius: 8px;
    padding: 12px 20px;
    background: var(--accent);
    color: #080f0d;
  }
}

/* ── Layout ── */
main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 40px 48px;
}

section {
  margin-bottom: 52px;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1.3;
}

h2 {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: var(--accent-light);
  margin-bottom: 14px;
  margin-top: 8px;
  line-height: 1.35;
}

h3 {
  font-size: 1.15rem;
  color: #b8d4c0;
  margin-bottom: 10px;
  margin-top: 4px;
}

p {
  margin-bottom: 14px;
  color: #d0dbd4;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

li {
  margin-bottom: 6px;
  color: #d0dbd4;
}

strong {
  color: #e8f2ec;
}

/* ── Trust Bar ── */
.trust-bar {
  background: #0d1a14;
  border-bottom: 1px solid #1a3028;
  padding: 10px 16px;
  font-size: 0.82rem;
  color: #7aaa8a;
  text-align: center;
}

.trust-bar span {
  margin: 0 12px;
}

.trust-bar .trust-icon {
  color: var(--accent);
}

/* ── Hero ── */
.hero {
  position: relative;
  text-align: center;
  margin-bottom: 44px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4, 18, 10, 0.40) 0%, rgba(4, 18, 10, 0.62) 55%, rgba(4, 18, 10, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px 50px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero .hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 28px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero .bonus-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 179, 82, 0.55);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

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

/* ── Brand Banner ── */
.brand-banner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 36px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.brand-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .brand-banner {
    border-radius: 6px;
    margin-bottom: 22px;
  }
}

/* ── Slots Grid ── */
.slots-section {
  margin-bottom: 44px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.slot-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 179, 82, 0.22);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.slot-info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #e8f5ee;
  line-height: 1.3;
}

.slot-provider {
  font-size: 0.78rem;
  color: #6a9a7a;
}

.slot-rtp {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.rtp-val {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.rtp-vol {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.rtp-vol.high {
  background: rgba(0, 179, 82, 0.15);
  color: var(--accent);
  border: 1px solid rgba(0, 179, 82, 0.3);
}

.rtp-vol.mid {
  background: rgba(240, 165, 0, 0.12);
  color: #f0a500;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

@media (max-width: 1100px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 700px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Info Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}

.info-card {
  background: #0f1f18;
  border: 1px solid #1a3028;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}

.info-card .ic-label {
  font-size: 0.78rem;
  color: #6a9a7a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.info-card .ic-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

/* ── Tables ── */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

th,
td {
  padding: 11px 15px;
  text-align: left;
  border-bottom: 1px solid #1a3028;
}

th {
  background: #0f2018;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

tr:hover td {
  background: #0d1a14;
}

td {
  font-size: 0.95rem;
}

@media (max-width: 600px) {

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead tr {
    display: none;
  }

  td {
    padding: 9px 14px;
    border-bottom: none;
  }

  td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--accent);
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  tr {
    border: 1px solid #1a3028;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
  }
}

/* ── Game Cards Grid ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}

.game-card {
  background: #0f1f18;
  border: 1px solid #1a3028;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.game-card a {
  text-decoration: none;
  display: block;
}

.game-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.game-card .gc-name {
  padding: 7px 8px 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e0e8e4;
}

.game-card .gc-provider {
  padding: 0 8px 4px;
  font-size: 0.75rem;
  color: #6a9a7a;
}

.game-card .gc-rtp {
  padding: 0 8px 8px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 400px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Provider Cards ── */
.provider-grid {
  display: grid;
  gap: 18px;
}

.provider-card {
  background: #0f1f18;
  border: 1px solid #1a3028;
  border-radius: 10px;
  padding: 20px 18px;
}

.provider-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

/* ── Steps List ── */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  padding: 16px 18px 16px 54px;
  position: relative;
  background: #0f1f18;
  border: 1px solid #1a3028;
  border-radius: 10px;
  margin-bottom: 10px;
  color: #d0dbd4;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #080f0d;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.steps-list li strong {
  color: #e8f2ec;
  display: block;
  margin-bottom: 3px;
}

/* ── Pros / Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pros-cons .pc-col {
  background: #0f1f18;
  border-radius: 10px;
  padding: 18px;
}

.pros-cons .pc-col.pros {
  border-top: 3px solid var(--accent);
}

.pros-cons .pc-col.cons {
  border-top: 3px solid #c0392b;
}

.pros-cons h3 {
  margin-bottom: 10px;
}

.pros-cons .pc-col.pros h3 {
  color: var(--accent);
}

.pros-cons .pc-col.cons h3 {
  color: #e74c3c;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
}

.pros-cons li {
  padding: 6px 0 6px 24px;
  position: relative;
  border-bottom: 1px solid #1a3028;
  font-size: 0.92rem;
}

.pros-cons li:last-child {
  border-bottom: none;
}

.pc-col.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pc-col.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
}

@media (max-width: 580px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* ── Payment Methods ── */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
}

.pay-badge {
  background: #0f2018;
  border: 1px solid #1a3028;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c8d8cc;
}

/* ── FAQ Accordion ── */
.faq-section details {
  border: 1px solid #1a3028;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-section summary {
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 600;
  background: #0f1f18;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e0e8e4;
  transition: background 0.2s;
}

.faq-section summary:hover {
  background: #142a1e;
}

.faq-section summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-section details[open] summary::after {
  content: "−";
}

.faq-section details p {
  padding: 16px 18px;
  background: #0a1510;
  line-height: 1.7;
}

/* ── Bonus Box ── */
.bonus-box {
  background: linear-gradient(135deg, #0d2018, #142a1e);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 28px;
}

.bonus-box .bb-amount {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--accent);
}

.bonus-box .bb-spins {
  font-size: 1.1rem;
  color: #8ab89a;
  margin: 6px 0 18px;
}

.bonus-box .bb-terms {
  font-size: 0.78rem;
  color: #5a8a6a;
  margin-top: 12px;
}

/* ── RTP Badge ── */
.rtp-badge {
  display: inline-block;
  background: rgba(0, 179, 82, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 179, 82, 0.25);
}

/* ── Sport Section ── */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.sport-card {
  background: #0f1f18;
  border: 1px solid #1a3028;
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s;
}

.sport-card:hover {
  border-color: var(--accent);
}

.sport-card .sc-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.sport-card .sc-name {
  font-weight: 700;
  color: #e0e8e4;
  font-size: 0.95rem;
}

.sport-card .sc-desc {
  font-size: 0.78rem;
  color: #6a9a7a;
  margin-top: 4px;
}

/* ── Section Divider ── */
.section-intro {
  max-width: 100%;
}

.cta-center {
  text-align: center;
  margin: 28px 0;
}

.cta-center .cta-note {
  font-size: 0.78rem;
  color: #5a8a6a;
  margin-top: 8px;
}

/* ── Footer ── */
footer {
  background: #0d1a14;
  border-top: 1px solid #1a3028;
  text-align: center;
  padding: 28px 16px;
  font-size: 0.84rem;
  color: #4a7a5a;
  margin-top: 0;
}

footer a {
  color: #6a9a7a;
}

footer a:hover {
  color: var(--accent);
}

.footer-nav {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

.footer-rg {
  font-size: 0.78rem;
  color: #3a6a4a;
  margin-top: 8px;
}

.footer-logo {
  margin-bottom: 12px;
  width: 36px;
  height: 36px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo img {
  width: 154px;
  max-width: none;
  height: 56px;
  margin: -10px 0 0 0;
}

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .hero {
    padding: 36px 14px 32px;
  }

  .cta-btn,
  .cta-btn-outline {
    width: 100%;
    display: block;
    padding: 17px;
  }

  main {
    padding: 18px 16px 40px;
  }
}

/* ── Mobile Sticky CTA Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  padding: 11px 16px 15px;
  z-index: 300;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-cta-bar a {
  color: #080f0d;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}

.mobile-cta-bar a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.mobile-cta-bar .mcta-bonus {
  font-size: 1.05rem;
  font-weight: 900;
  display: block;
}

.mobile-cta-bar .mcta-sub {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.55);
  display: block;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }
}
