:root {
  --bg: #ffffff;
  --ink: #0f1720;
  --muted: #5f7283;
  --line: #e6eef3;
  --card: #ffffff;
  --chip: #eef7f4;
  --mint: #7be0c3;
  --mint-strong: #11c29a;
  --peach: #ffe3d1;
  --violet: #e6e5ff;
  --yellow: #fff3b0;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(16, 24, 40, .06)
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font: 16px/1.65 Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.15rem;
  border: 1px solid var(--mint-strong);
  border-radius: 999px;
  color: #fff;
  background: var(--mint-strong);
  font-weight: 800;
  transition: transform .15s ease, box-shadow .2s
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 194, 154, .25)
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--chip);
  color: #076e5d;
  font-weight: 700;
  font-size: .82rem
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--line)
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  gap: .7rem;
  align-items: center
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--mint);
  color: #073b34;
  display: grid;
  place-items: center;
  font-weight: 900
}

/* Added rule for image logo */
img.logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center
}

.nav-links a {
  padding: .55rem .7rem;
  border-radius: 10px;
  color: #3a4b59
}

.nav-links a:hover {
  background: var(--chip)
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: #223
}

@media (max-width:900px) {
  .nav-links {
    display: none
  }

  .burger {
    display: inline-grid;
    place-items: center
  }
}

.mobile {
  display: none;
  position: fixed;
  inset: 64px 16px auto 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow)
}

.mobile a {
  display: block;
  padding: 12px;
  border-radius: 10px
}

.mobile a:hover {
  background: #f6fbf9
}

.hero {
  padding: 62px 0 28px;
  background: linear-gradient(180deg, #e8fff6, #ffffff 40%)
}

.hero .grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center
}

@media (max-width:980px) {
  .hero .grid {
    grid-template-columns: 1fr
  }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  margin: 0 0 10px;
  letter-spacing: -.6px;
  font-weight: 900
}

.hero p {
  max-width: 740px;
  margin: 0 0 16px;
  color: #3c4d5a
}

.hero .art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dff6ee
}

.hero .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

section {
  padding: 44px 0
}

h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 10px;
  letter-spacing: -.2px
}

h3 {
  margin: 0 0 6px
}

.muted {
  color: var(--muted)
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:980px) {
  .grid-3 {
    grid-template-columns: 1fr
  }
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow)
}

.card h3 {
  font-size: 1.4rem;
  margin: 0 0 12px
}

.card p {
  margin: 0 0 16px;
  line-height: 1.6
}

.card .muted {
  font-size: 0.95rem
}

.card .thumb {
  height: 140px;
  border-radius: 12px;
  background: #eef1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:980px) {
  .steps {
    grid-template-columns: 1fr
  }
}

.step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow)
}

.step .num {
  font-weight: 900;
  color: #0aa689
}

.kasino {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media (max-width:1100px) {
  .kasino {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:720px) {
  .kasino {
    grid-template-columns: 1fr
  }
}

.kard {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  height: 100%;
}

.kard .img {
  height: 160px;
  background: #eef7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kard .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.kard .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kard h3 {
  margin-top: 0;
}

.kard .body>p {
  flex-grow: 1;
  margin: 10px 0;
}

.kard ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: #3c4d5a;
  flex-grow: 1;
}

.kard .cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.kard .cta .btn {
  width: 100%;
  text-align: center;
}

.kard .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.kard .stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.kard .rating-value {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.band {
  background: linear-gradient(180deg, #ffffff, #f6fbf9)
}

.band .card {
  background: #ffffff
}

.faq {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px
}

@media (max-width:980px) {
  .faq {
    grid-template-columns: 1fr
  }
}

.qa {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.qa+.qa {
  margin-top: 10px
}

.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  position: relative;
  padding-right: 50px;
}

.qa summary::-webkit-details-marker {
  display: none
}

.qa summary::after {
  content: '❯';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--mint-strong);
}

.qa[open] summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

.qa .ans {
  padding: 0 18px 16px;
  color: #3c4d5a
}

.curve-wrap {
  margin-top: 28px;
  background: #0f1720;
  color: #dfe7ee;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding-top: 24px
}

.curve-wrap h2 {
  color: #ffffff
}

.slider {
  overflow: hidden;
  border: 1px solid #242f3a;
  border-radius: 16px;
  background: #101a25;
  margin: 16px 0
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding: 12px;
  animation: slide 22s linear infinite
}

.slider img {
  width: 160px;
  height: 70px;
  object-fit: contain;
  background: #17212c;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #243241
}

@keyframes slide {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

footer {
  border-top: 1px solid #243241;
  padding: 34px 0;
  background: transparent
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.foot-cols a {
  color: #a9b7c6
}

@media (max-width:960px) {
  .foot-grid {
    grid-template-columns: 1fr
  }

  .foot-cols {
    grid-template-columns: 1fr
  }
}

.small {
  color: #a9b7c6;
  font-size: .95rem
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: #0f1720;
  color: #dfe7ee;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.2);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  flex: 1;
  min-width: 120px;
  text-align: center;
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    width: 95%;
    padding: 15px;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    min-width: auto;
  }
}

.disclaimer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  color: #0f1720;
}

.disclaimer-icon {
  font-size: 1.5rem;
}
