@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800&display=swap");

/* Color palette
   Primary (header/footer): #ff5bc0
   Secondary (body background): #d6f9fe
   Links/buttons: #fef305
   Text: dark shades
*/

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #d6f9fe;
  color: #111111;
}

/* Basic typography */
body {
  line-height: 1.6;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: #111111;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.25rem;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.7);
}

.section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Links & buttons */
a {
  color: #f09300;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: #fef305;
  color: #31111c;
}

.btn-primary:hover {
  background: #ffe600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  background: #ffffff;
  color: #31111c;
  border: 2px solid #fef305;
}

.btn-secondary:hover {
  background: #fff9b8;
  text-decoration: none;
}

/* Header */
.site-header {
  background-color: #ff5bc0;
  color: #1f0a16;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  gap: 1.5rem;
}

.header-burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 4px 5px;
  flex-shrink: 0;
}

.header-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #1f0a16;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.header-logo img {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.header-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1f0a16;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-header.nav-open .main-nav {
  display: flex;
}

.nav-link {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f0a16;
  background: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: all 0.18s ease;
}

.nav-link:hover {
  background: #fef305;
  color: #31111c;
  text-decoration: none;
}

.header-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #fef305;
  background: #fef305;
  color: #31111c;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.22);
  transition: all 0.18s ease;
}

.header-cta:hover {
  background: #ffe600;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Hero */
.site-main {
  padding-top: 0;
}

.hero-section {
  position: relative;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 91, 192, 0.45),
      rgba(214, 249, 254, 0.95)
    ),
    url("../paletton/back.jpg") center/cover no-repeat;
  filter: blur(2px);
  transform: scale(1.06);
  opacity: 0.95;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b145f;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #252525;
  margin-bottom: 1rem;
}

.hero-bullets {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
}

.hero-bullets li {
  margin-bottom: 0.35rem;
  color: #222222;
}

.hero-btn {
  margin-bottom: 0.7rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #444444;
}

/* Game frame */
.hero-game {
  display: flex;
  justify-content: center;
}

.hero-image-link {
  display: block;
  max-width: 430px;
}

.hero-image-link img {
  display: block;
  width: 100%;
  height: auto;
}

/* Two-column layout */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.15fr);
  gap: 2.25rem;
  align-items: flex-start;
}

/* Lists & tables */
.numbered-list {
  padding-left: 1.3rem;
  margin: 0 0 1rem;
}

.numbered-list li {
  margin-bottom: 0.4rem;
}

.table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #ffffff;
}

table th,
table td {
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

table thead {
  background: #ff5bc0;
  color: #1f0a16;
}

table th {
  font-weight: 700;
}

.small-note {
  font-size: 0.8rem;
  color: #444444;
  margin-top: 0.6rem;
}

/* Info cards */
.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 91, 192, 0.35);
}

.info-card h3 {
  margin-bottom: 0.85rem;
}

.info-table {
  font-size: 0.9rem;
}

.info-table th {
  width: 40%;
  background: rgba(255, 91, 192, 0.1);
}

.info-table td {
  background: rgba(255, 255, 255, 0.9);
}

.hero-side-image a {
  display: block;
}

.hero-side-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Feature & check lists */
.feature-list,
.check-list,
.bullet-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.feature-list li,
.check-list li,
.bullet-list li {
  margin-bottom: 0.4rem;
}

/* Card grid for casinos */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.casino-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.25rem 1.35rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 91, 192, 0.35);
  text-align: center;
}

.casino-card h3 {
  margin-bottom: 0.4rem;
}

.casino-card p {
  margin-bottom: 0.6rem;
}

.casino-card ul {
  padding-left: 1.1rem;
  margin: 0 0 0.8rem;
  text-align: left;
}

.casino-card ul li {
  margin-bottom: 0.25rem;
}

.casino-logo-placeholder {
  margin: 0 auto 0.6rem;
  max-width: 150px;
  width: 100%;
  height: 80px;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  background: radial-gradient(
      circle at top,
      rgba(254, 243, 5, 0.35),
      rgba(0, 0, 0, 0.85)
    );
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo-placeholder img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.casino-card .btn-primary {
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  justify-content: center;
}

/* Strategy grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.strategy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 91, 192, 0.35);
}

.strong-note {
  margin-top: 1.3rem;
  font-weight: 600;
  color: #222222;
}

/* FAQ */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.6rem;
  margin-top: 1.6rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 91, 192, 0.3);
}

.faq-question {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.faq-answer {
  font-size: 0.92rem;
  color: #272727;
}

.center-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #ff5bc0;
  color: #1f0a16;
  padding: 1.4rem 0 1.3rem;
  margin-top: 2rem;
  box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.24);
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
}

.footer-inner p {
  margin-bottom: 0.3rem;
}

.footer-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: #31111c;
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header-burger {
    display: inline-flex;
    order: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .header-logo {
    order: 1;
  }

  .header-cta {
    order: 2;
    padding-inline: 1rem;
    font-size: 0.8rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0.6rem 1rem 0.8rem;
    background: #ff5bc0;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .hero-section {
    padding: 2.3rem 0 2rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .strategy-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.3rem 0;
  }
}

@media (max-width: 480px) {
  .header-logo-text {
    font-size: 0.98rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

