:root {
  --novo-bg: #080a0f;
  --novo-bg-soft: #0c1017;
  --novo-card: #11151d;
  --novo-card-hover: #151a23;

  --novo-gold: #d8b15a;
  --novo-gold-light: #edca73;

  --novo-text: #f5f7fa;
  --novo-muted: #9299a8;
  --novo-border: #252c38;

  --novo-green: #42d392;
}


/* =========================
   GLOBAL
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--novo-bg);

  color: var(--novo-text);

  font-family:
    Inter,
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

.novo-page {
  min-height: 100vh;

  background: var(--novo-bg);
}

.novo-page p {
  margin-top: 0;
}

.novo-page h1,
.novo-page h2,
.novo-page h3 {
  margin-top: 0;
}


/* =========================
   HERO
========================= */

.novo-hero {
  position: relative;

  min-height: 650px;

  overflow: hidden;

  border-bottom:
    1px solid
    var(--novo-border);

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(216, 177, 90, 0.13),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #080a0f 0%,
      #0a0e15 55%,
      #080a0f 100%
    );
}

.novo-hero-inner {
  max-width: 1240px;

  min-height: 650px;

  margin: 0 auto;

  padding: 80px 30px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 50px;

  align-items: center;
}

.novo-hero-content {
  position: relative;

  z-index: 2;
}

.novo-hero-title {
  font-size:
    clamp(46px, 5vw, 72px);

  line-height: 0.98;

  letter-spacing: -0.045em;

  font-weight: 800;

  margin-bottom: 28px;
}

.novo-hero-title span {
  color: var(--novo-gold);
}

.novo-hero-text {
  max-width: 560px;

  color: #c5cad3;

  font-size: 18px;

  line-height: 1.65;

  margin-bottom: 25px;
}

.novo-trust-points {
  display: flex;

  flex-wrap: wrap;

  gap: 22px;

  margin-bottom: 30px;
}

.novo-trust-points p {
  color: #e5e8ed;

  font-size: 14px;

  font-weight: 600;

  margin: 0;
}

.novo-button-primary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 15px 24px;

  background:
    linear-gradient(
      135deg,
      var(--novo-gold),
      var(--novo-gold-light)
    );

  color: #090b0f;

  border-radius: 8px;

  text-decoration: none;

  font-size: 15px;

  font-weight: 900;

  transition: all 0.2s ease;
}

.novo-button-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 30px
    rgba(216, 177, 90, 0.22);
}

.novo-button-primary span {
  font-size: 18px;
}

.novo-legal-mini {
  margin-top: 18px;

  color: #697180;

  font-size: 11px;
}


/* =========================
   HERO VISUAL
========================= */

.novo-hero-visual-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.novo-hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.novo-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Erzeugt einen edlen Tiefeneffekt passend zum dunklen Layout */
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
  border-radius: 25px;
}

.novo-hero-img:hover {
  transform: scale(1.02);
}


/* =========================
   OFFER SECTION
========================= */

.novo-casino-section {
  max-width: 1240px;

  margin: 0 auto;

  padding:
    95px 30px
    80px;
}

.novo-section-eyebrow {
  color: var(--novo-gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.22em;

  margin-bottom: 18px;
}

.novo-section-title {
  font-size:
    clamp(32px, 4vw, 46px);

  line-height: 1.05;

  letter-spacing: -0.035em;

  margin-bottom: 12px;
}

.novo-section-intro {
  max-width: 700px;

  color: var(--novo-muted);

  font-size: 16px;

  line-height: 1.6;

  margin-bottom: 32px;
}


/* =========================
   FILTER
========================= */

.novo-filters {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 30px;
}

.novo-filter {
  padding: 10px 20px;

  border:
    1px solid
    var(--novo-border);

  border-radius: 999px;

  background: transparent;

  color: #bfc5ce;

  font-size: 13px;

  cursor: pointer;

  transition: all 0.2s ease;
}

.novo-filter:hover,
.novo-filter-active {
  background: var(--novo-gold);

  border-color: var(--novo-gold);

  color: #090b0f;
}


/* =========================
   GRID
========================= */

.novo-casino-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


/* =========================
   CARD
========================= */

.novo-casino-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 485px;

  padding: 27px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0)
    ),
    var(--novo-card);

  border:
    1px solid
    var(--novo-border);

  border-radius: 14px;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.novo-casino-card:hover {
  transform: translateY(-4px);

  background: var(--novo-card-hover);

  border-color: #3b4351;

  box-shadow:
    0 20px 50px
    rgba(0, 0, 0, 0.28);
}

.novo-casino-card-featured {
  border:
    2px solid
    var(--novo-gold);

  box-shadow:
    0 0 40px
    rgba(216, 177, 90, 0.08),

    0 20px 60px
    rgba(0, 0, 0, 0.3);
}

.novo-casino-card.hidden {
  display: none;
}


/* =========================
   BADGE
========================= */

.novo-badge {
  position: absolute;

  top: -14px;
  left: 20px;

  padding: 7px 13px;

  border-radius: 6px;

  background: var(--novo-gold);

  color: #080a0f;

  font-size: 11px;

  font-weight: 900;
}


/* =========================
   CARD TOP
========================= */

.novo-card-top {
  display: grid;

  grid-template-columns:
    42px 1fr auto;

  align-items: center;

  gap: 13px;

  padding-bottom: 23px;

  margin-bottom: 23px;

  border-bottom:
    1px solid
    var(--novo-border);
}

.novo-ranking {
  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border:
    1px solid
    #46505e;

  color: #d9dde3;

  font-size: 14px;

  font-weight: 800;
}


/* =========================
   CASINO LOGO
========================= */

.novo-casino-logo {
  min-width: 0;

  width: 130px;
  height: 130px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 10px;

  border-radius: 8px;

  background: #0c1017;

  border:
    1px solid
    rgba(255, 255, 255, 0.06);

  overflow: hidden;
}


/* =========================
   LOGO PLACEHOLDER
========================= */

.novo-logo-placeholder {
  gap: 4px;

  font-size: 13px;

  letter-spacing: -0.02em;
}

.novo-logo-placeholder strong {
  color: #f5f7fa;

  font-size: 15px;

  font-weight: 900;
}

.novo-logo-placeholder span {
  color: var(--novo-gold);

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 0.05em;
}


/* =========================
   ECHTE CASINO LOGOS
========================= */

.novo-casino-logo img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: 110px;
  max-height: 110px;

  object-fit: contain;

  object-position: center;
}


/* =========================
   RATING
========================= */

.novo-rating {
  color: #f2c84b;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;
}


/* =========================
   BONUS
========================= */

.novo-bonus-label {
  color: var(--novo-gold);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.13em;

  margin-bottom: 8px;
}

.novo-bonus {
  color: var(--novo-text);

  font-size: 25px;

  line-height: 1.2;

  font-weight: 800;

  margin-bottom: 5px;
}

.novo-bonus span {
  color: var(--novo-gold);
}

.novo-bonus-extra {
  color: #e4e7ec;

  font-size: 15px;

  font-weight: 700;

  margin-bottom: 14px;
}

.novo-description {
  color: #adb4c0;

  font-size: 13px;

  line-height: 1.55;

  margin-bottom: 20px;

  max-width: 95%;
}


/* =========================
   FEATURES
========================= */

.novo-features {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px 15px;

  margin-bottom: 25px;
}

.novo-features p {
  color: #b7bec9;

  font-size: 12px;

  line-height: 1.4;

  margin: 0;
}

.novo-features p::first-letter {
  color: var(--novo-green);
}


/* =========================
   CARD BUTTON
========================= */

.novo-card-button-wrap {
  margin-top: auto;
}

.novo-card-button {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 14px 15px;

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      var(--novo-gold),
      var(--novo-gold-light)
    );

  color: #090b0f;

  text-decoration: none;

  font-size: 13px;

  font-weight: 900;

  transition: all 0.2s ease;
}

.novo-card-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 25px
    rgba(216, 177, 90, 0.2);
}

.novo-card-button span {
  font-size: 17px;
}

.novo-terms {
  text-align: center;

  color: #697180;

  font-size: 10px;

  margin:
    10px 0 0;
}


/* =========================
   TRUST
========================= */

.novo-trust-section {
  max-width: 1180px;

  margin:
    0 auto
    70px;

  padding: 35px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;

  background: #0d121a;

  border:
    1px solid
    var(--novo-border);

  border-radius: 14px;
}

.novo-trust-item {
  min-height: 100px;

  padding-left: 20px;

  border-left:
    1px solid
    var(--novo-border);

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.novo-trust-icon {
  color: var(--novo-gold);

  font-size: 22px;

  font-weight: 800;

  margin-bottom: 10px;
}

.novo-trust-item strong {
  color: #e8ebef;

  font-size: 13px;

  margin-bottom: 5px;
}

.novo-trust-item span {
  color: #7d8694;

  font-size: 11px;

  line-height: 1.4;
}


/* =========================
   NOTICE
========================= */

.novo-footer-notice {
  max-width: 1180px;

  margin: 0 auto;

  padding:
    25px 30px;

  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 40px;

  background: #0d1118;

  border:
    1px solid
    var(--novo-border);

  border-radius: 12px;
}

.novo-footer-notice strong {
  color: var(--novo-gold);

  font-size: 12px;
}

.novo-footer-notice p {
  max-width: 700px;

  color: #777f8d;

  font-size: 11px;

  line-height: 1.6;

  margin:
    6px 0 0;
}

.novo-age {
  display: flex;

  align-items: center;

  gap: 14px;

  color: #8e96a4;

  font-size: 11px;
}

.novo-age strong {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    2px solid
    #8b3434;

  border-radius: 50%;

  color: #e27c7c;
}


/* =========================
   FOOTER
========================= */

.novo-footer {
  max-width: 1180px;

  margin: 0 auto;

  padding:
    45px 30px
    55px;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 25px;
}

.novo-footer-brand strong {
  font-size: 21px;
}

.novo-footer-brand strong span {
  color: var(--novo-gold);
}

.novo-footer-links {
  display: flex;

  gap: 22px;
}

.novo-footer-links a {
  color: #7c8492;

  font-size: 11px;

  text-decoration: none;
}

.novo-footer-links a:hover {
  color: var(--novo-gold);
}

.novo-footer-copy {
  text-align: right;

  color: #555d69;

  font-size: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

  .novo-hero-inner {
    grid-template-columns: 1fr;
  }

  .novo-hero-visual {
    margin: 0 auto;
  }

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

  .novo-trust-section {
    grid-template-columns:
      1fr 1fr;

    margin-left: 20px;
    margin-right: 20px;
  }

  .novo-footer-notice {
    margin-left: 20px;
    margin-right: 20px;
  }

  .novo-footer {
    grid-template-columns:
      1fr 1fr;
  }

  .novo-footer-copy {
    grid-column: 1 / -1;

    text-align: left;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .novo-hero {
    min-height: auto;
  }

  .novo-hero-inner {
    min-height: auto;

    padding:
      55px 20px;
  }

  .novo-hero-title {
    font-size: 43px;
  }

  .novo-hero-text {
    font-size: 16px;
  }

  .novo-hero-visual {
    height: 280px;

    border-radius: 20px;
  }

  .novo-visual-chip {
    width: 75px;
    height: 75px;

    font-size: 28px;
  }

  .novo-visual-card {
    width: 90px;
    height: 125px;

    font-size: 18px;
  }

  .novo-casino-section {
    padding:
      65px 20px;
  }

  .novo-casino-grid {
    grid-template-columns: 1fr;
  }

  .novo-casino-card {
    min-height: 0;

    padding: 23px;
  }

  .novo-card-top {
    grid-template-columns:
      38px 1fr auto;

    gap: 10px;
  }

  .novo-casino-logo {
    width: 130px;
    height: 130px;

    padding: 10px;
  }

  .novo-rating {
    font-size: 12px;
  }

  .novo-bonus {
    font-size: 23px;
  }

  .novo-features {
    grid-template-columns:
      1fr 1fr;
  }

  .novo-trust-section {
    grid-template-columns: 1fr;

    padding: 25px;
  }

  .novo-trust-item {
    border-left: 0;

    border-top:
      1px solid
      var(--novo-border);

    padding:
      20px 0 0;
  }

  .novo-trust-item:first-child {
    border-top: 0;

    padding-top: 0;
  }

  .novo-footer-notice {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 25px;
  }

  .novo-footer {
    margin:
      0 20px;

    padding-left: 0;
    padding-right: 0;

    grid-template-columns: 1fr;
  }

  .novo-footer-links {
    flex-wrap: wrap;
  }

  .novo-footer-copy {
    grid-column: auto;

    text-align: left;
  }
}