/* === SVG ICONS === */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  overflow: visible;
  flex-shrink: 0
}

/* === CASINO HERO === */
.casino-hero {
  background: radial-gradient(ellipse at 70% 50%, #7a2a2a 0%, #532429 45%, #3d1515 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.casino-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casino-hero-left {
  flex: 0 0 50%;
  padding: 48px 0;
  z-index: 2;
}

.hero-welcome {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
  letter-spacing: -1px;
  white-space: pre-line;
}

@keyframes heroBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(var(--gold-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0);
  }
}

.hero-cta-btn {
  animation: heroBtnPulse 2s ease-out infinite;
}

.kpi-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.casino-hero-right {
  flex: 0 0 50%;
  position: relative;
  height: 380px;
  overflow: visible;
}

.hero-media-wrap {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  height: 420px;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-composite: intersect;
}

.hero-bg-img,
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg-img {
  z-index: 0;
}

.hero-bg-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-bg-video.visible {
  opacity: 1;
}


/* ══════════════════════
   MOBILE < 780px
══════════════════════ */
@media (max-width: 780px) {

  .casino-hero {
    min-height: auto;
    align-items: flex-end;
  }

  .casino-hero .container {
    padding: 0 !important;
  }

  .casino-hero-inner {
    flex-direction: column;
    position: relative;
    min-height: auto;
  }

  .casino-hero-left {
    flex: 0 0 auto;
    width: 100%;
    padding: 24px 0 32px;
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 40%;
    background: linear-gradient(to top, rgba(45, 15, 15, 0.98) 0%, rgba(45, 15, 15, 0.85) 55%, transparent 100%);
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
  }

  .casino-hero-right {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Lățimea video-ului 16:9 cât ecranul */
    width: 100vw;
    height: auto;
    flex: none;
    z-index: 1;
  }

  .hero-media-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    -webkit-mask-image:
      linear-gradient(to bottom, black 0%, black 50%, transparent 95%),
      linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to bottom, black 0%, black 50%, transparent 95%),
      linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
  }

  .hero-media-wrap .hero-bg-img,
  .hero-media-wrap .hero-bg-video {
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(22px, 8vw, 30px);
  }

  .hero-cta-btn {
    font-size: 13px;
    padding: 13px 26px;
  }
}

/* ===== GAMES CAROUSELS ===== */
.games {
  width: 100%;
  max-width: var(--container);
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.games-block {
  display: flex;
  flex-direction: column
}

.games-block--promo {
  background-color: var(--color--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 20px;
}

.games-block--promo .games-list {
  --cols: 3
}

.games-block--providers {
  margin-bottom: 35px
}

.games-block--providers .games-list {
  --cols: 8
}

.games-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px
}

.games-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px
}

.games-title-icon {
  display: inline-block;
  margin-left: 8px;
  opacity: .95;
}

.games-title__icon {
  width: 18px;
  height: 18px;
  color: #fff;
  fill: currentColor;
  flex-shrink: 0
}

.games-title__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 153, 0, .4)
}

.games-actions {
  display: flex;
  align-items: center;
  gap: 8px
}

.games-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, border-color .2s, background .2s
}

.games-see-all:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: var(--surface2)
}

.games-actions .games-nav {
  display: flex;
  align-items: center;
  gap: 4px
}

.games-actions .games-prev,
.games-actions .games-next {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s
}

.games-actions .games-prev:hover,
.games-actions .games-next:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: var(--surface2)
}

.games-actions .games-icon {
  width: 16px;
  height: 16px;
  fill: currentColor
}

.games-slider {
  position: relative;
  width: 100%
}

.games-list {
  --gap: 18px;
  display: flex;
  gap: var(--gap);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  --cols: 6
}

.games-list::-webkit-scrollbar {
  display: none
}

.game-card {
  flex: 0 0 calc((100% - ((var(--cols) - 1) * var(--gap))) / var(--cols));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.23, 1.2, .32, 1)
}

.game-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1.25;
  background: #1a1a28;
  cursor: pointer;
  border: 4px solid var(--color--white);
  box-shadow: var(--card-shadow);
  transition: border-color .3s ease, box-shadow .3s ease
}

.game-card:hover .game-thumb {}

.game-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4
}

.badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800
}

.badge--lightning {
  background: rgba(20, 20, 35, .75);
  backdrop-filter: blur(6px);
  color: #ffe066;
  border: 1px solid rgba(255, 220, 50, .25)
}

.badge--coins {
  background: rgba(20, 20, 35, .75);
  backdrop-filter: blur(6px);
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, .25);
  font-size: 7px
}

.game-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .5s cubic-bezier(.2, .9, .2, 1), filter .3s ease
}

.game-thumb img[src$=".svg"] {
  object-fit: cover;
  object-position: top;
}

.game-card:hover .game-thumb img {
  transform: scale(1.06);
  filter: blur(3px) brightness(.75)
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 3
}

.game-card:hover .game-overlay {
  opacity: 1;
  pointer-events: auto
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--gradient--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 6px rgba(245, 166, 35, .18), 0 8px 28px rgba(0, 0, 0, .6);
  transition: transform .2s cubic-bezier(.23, 1.2, .32, 1), box-shadow .2s ease;
  transform: scale(.85)
}

.play-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 0 10px rgba(245, 166, 35, .22), 0 10px 32px rgba(0, 0, 0, .7)
}

.play-btn:active {
  transform: scale(.96) !important
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
  margin-left: 3px
}

.demo-link {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--t), opacity var(--t), background var(--t);
  text-decoration: none
}

.game-card:hover .demo-link {
  transform: translateY(0);
  opacity: 1
}

.demo-link:hover {
  color: #fff;
  background: rgba(0, 0, 0, .70)
}

.demo-link.is-disabled {
  opacity: .3 !important;
  pointer-events: none !important;
}

.game-info {
  padding: 10px 2px 0
}

.game-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s
}

.game-card:hover .game-name {
  color: var(--accent)
}

.game-provider {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.game-card--provider {
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: var(--radius)
}

.provider-card {
  display: flex;
  align-items: center;
  justify-content: center
}

.provider-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
  transition: filter .18s ease, opacity .18s ease
}

.provider-card:hover img {
  filter: none;
  opacity: 1
}

.games-prev:focus,
.games-next:focus {
  outline: none;
  box-shadow: var(--focus)
}

.game-card--promo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface3);
  border: 4px solid var(--color--white);
}

.game-card--promo>a {
  position: relative;
  display: block;
  min-height: 220px;
  height: 100%;
  padding: 24px;
  text-decoration: none;
  color: var(--white)
}

.game-card--promo .game-media {
  position: absolute;
  margin: 0;
  inset: 0;
  z-index: 0
}

.game-card--promo .game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1);
  transition: transform .45s ease, filter .45s ease
}

.game-card--promo>a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1
}

.game-card--promo .promo-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  height: 100%;
  padding: 0
}

.game-card--promo .promo-body h3 {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 0 rgb(var(--black-rgb)/.45)
}

.game-card--promo .promo-body p {
  margin: 0 0 18px;
  font-weight: 900;
  line-height: 1.15;
  font-size: 30px;
  color: var(--white);
  text-shadow: 0 2px 10px rgb(var(--black-rgb)/.5);
  white-space: pre-line
}

.game-card--promo:hover .game-media img,
.game-card--promo:focus-within .game-media img {
  transform: scale(1.06);
  filter: saturate(1.05)
}

.game-card--promo>a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--radius)
}

@media (max-width:1300px) {}

@media (max-width:1024px) {
  .games-list {
    --cols: 4 !important
  }

  .games-block--promo .games-list {
    --cols: 1;
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none
  }

  .games-block--promo .game-card {
    flex: 100%
  }
}

@media (max-width:768px) {
  .games-list {
    --cols: 3 !important
  }

  .game-card--promo>a {
    min-height: 180px;
    padding: 18px
  }

  .game-card--promo .promo-body p {
    font-size: 22px
  }

  .games-title {
    font-size: 14px
  }

  .games-see-all span {
    display: none
  }
}

@media (max-width:480px) {
  .games-list {
    --cols: 2 !important
  }

  .games-header {
    gap: 10px
  }
}

.provider-card img {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.9);
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
}

.provider-card img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* === FAQ SECTION === */
.faq-section {
  margin: 0 auto;
  order: 3;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  border-radius: 2px;
  transition: width .4s ease;
}

.faq-list {
  columns: 2;
  column-gap: var(--gap);
}

.faq-item {
  break-inside: avoid;
  break-inside: avoid;
  margin-bottom: var(--gap);
  background: var(--color--white);
  border-radius: var(--radius);
  border: 1px solid var(--color--neutral-2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all .25s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 32px rgba(var(--sunrise-dark-1-rgb), .12);
  transform: translateY(-2px);
  border-color: rgba(var(--sunrise-primary-1-rgb), .25);
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 25px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--color--neutral-12);
  transition: color .2s ease;
}

.faq-question:hover {
  color: var(--accent-3);
}

.faq-icon {
  font-size: 14px;
  color: rgba(var(--sunrise-dark-1-rgb), .45);
  transition: transform .25s ease, color .25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color--neutral-11);
  background: var(--color--sunrise-light-1);
  transition: max-height .3s ease, padding .3s ease;
}

.faq-question[aria-expanded="true"]+.faq-answer {
  height: auto !important;
  max-height: 500px;
  padding: 12px 26px 22px;
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-list {
    columns: 1;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 20px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 20px;
  }

  .faq-question[aria-expanded="true"]+.faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    font-size: 13px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 13px;
    padding: 0 16px;
  }

  .faq-question[aria-expanded="true"]+.faq-answer {
    padding: 10px 16px 20px;
  }
}

/* ===== HTML Sitemap ===== */
.html-sitemap {
  margin: 40px auto;
  max-width: 1100px;
  line-height: 1.6;
  color: var(--color--neutral-12);
}

.html-sitemap h2 {
  font-size: 1.75rem;
  margin: 0 0 14px;
  color: var(--color--neutral-12);
  padding-bottom: 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-image: var(--gradient--very-light-gray-to-cyan-bluish-gray) 1;
}

.html-sitemap .sitemap-block {
  margin: 28px 0;
}

.html-sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.html-sitemap .sitemap-pages-list {
  column-gap: 48px;
}

@media (min-width:900px) {
  .html-sitemap .sitemap-pages-list {
    columns: 2;
  }
}

@media (min-width:1200px) {
  .html-sitemap .sitemap-pages-list {
    columns: 3;
  }
}

.html-sitemap .sitemap-pages-list li {
  break-inside: avoid;
}

.html-sitemap ul,
.html-sitemap ol,
.html-sitemap li {
  list-style: none;
}

.html-sitemap li {
  position: relative;
  padding-left: 18px;
  margin: 6px 0;
}

.html-sitemap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color--neutral-11);
  opacity: .7;
  transform: translateY(-50%);
  transition: background .2s ease, opacity .2s ease;
}

.html-sitemap a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  transition: color .15s ease, text-decoration-color .15s ease;
  text-decoration-color: rgba(var(--sunrise-dark-1-rgb), .3);
}

.html-sitemap a:hover {
  color: var(--color--green-4);
  text-decoration-color: var(--color--green-4);
}

.html-sitemap li:hover::before {
  background: var(--color--green-4);
  opacity: 1;
}

.html-sitemap .sitemap-category-title {
  display: block;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--color--neutral-12);
}

.html-sitemap .sitemap-posts {
  margin-top: 6px;
  padding-left: 18px;
  border-left: 2px solid rgba(var(--sunrise-dark-1-rgb), .12);
}

/* ===== Contact Form ===== */
.contact-form {
  display: grid;
  gap: 14px;
  margin: 20px auto;
}

.contact-form .cf-row {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
  color: var(--color--neutral-12);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .16);
  background: var(--color--white);
  color: var(--color--neutral-12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .cf-note {
  font-size: .95rem;
  color: rgba(var(--sunrise-dark-1-rgb), .7);
  border-left: 2px solid rgba(var(--sunrise-dark-1-rgb), .15);
  padding-left: 12px;
}

.cf-alert {
  padding: 12px 14px;
  border-radius: 10px;
}

.cf-success {
  background: rgba(var(--sunrise-light-1-rgb), .55);
  border: 1px solid rgba(var(--sunrise-primary-1-rgb), .18);
  color: var(--color--green-5);
}

.cf-error {
  background: rgba(var(--sunrise-light-1-rgb), .55);
  border: 1px solid rgba(var(--sunrise-primary-1-rgb), .35);
  color: var(--color--sunrise-primary-1);
}


/* ===== Featured media on single ===== */
.post-featured {
  position: relative;
  margin: 12px 0 16px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color--neutral-2);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
}

.post-featured__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-featured__overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(var(--sunrise-dark-1-rgb), 0) 24%, rgba(var(--sunrise-dark-1-rgb), .45) 92%);
  opacity: 1;
  transition: opacity .25s ease;
}

.post-featured__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 46%, rgba(var(--sunrise-dark-1-rgb), .38) 0%, rgba(var(--sunrise-dark-1-rgb), .32) 30%, rgba(var(--sunrise-dark-1-rgb), .18) 52%, rgba(var(--sunrise-dark-1-rgb), 0) 72%);
  pointer-events: none;
  z-index: 1;
}

.post-featured__cta-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}

.post-featured__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  width: min(82vw, 340px);
  border-radius: 9999px;
  color: var(--color--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .04em;
  pointer-events: auto;
  border: 0;
  box-shadow: 0 10px 24px rgba(var(--sunrise-dark-1-rgb), .16);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  overflow: hidden;
  will-change: transform, filter, box-shadow;
  animation: none;
  text-transform: uppercase;
}

.post-featured__play {
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  box-shadow: 0 10px 24px rgba(var(--sunrise-dark-1-rgb), .18), 0 0 22px rgba(var(--sunrise-primary-1-rgb), .22);
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.post-featured__play .pf-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.post-featured__play .pf-main {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.post-featured__play .pf-sub {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--color--white);
  opacity: .95;
}

.post-featured__real {
  background: var(--gradient--light-green-cyan-to-vivid-green-cyan);
  box-shadow: 0 10px 24px rgba(var(--sunrise-dark-1-rgb), .18);
}

@keyframes post-featured-shine {
  0% {
    left: -70%;
  }

  40% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.post-featured__cta i,
.post-featured__cta .icon {
  font-size: 16px;
  width: 1em;
  height: 1em
}

.post-featured__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, .6), transparent 60%);
  transform: skewX(-20deg);
  animation: post-featured-shine 3.6s infinite;
}

.post-featured__play::after {
  animation: post-featured-shine 3.1s infinite .2s;
}

.post-featured__real::after {
  animation: post-featured-shine 4.8s infinite 1.1s;
}

.post-featured__cta:hover {
  transform: scale(1.04);
  filter: saturate(1.08);
  box-shadow: 0 12px 28px rgba(var(--sunrise-dark-1-rgb), .2);
}

.post-featured__cta:focus-visible {
  outline: 2px solid var(--color--white);
  outline-offset: 3px;
}

@media (max-width:560px) {
  .post-featured__cta-group {
    top: 45%;
    gap: 10px;
  }

  .post-featured__cta {
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
    width: min(90vw, 340px);
  }

  .post-featured__cta i,
  .post-featured__cta .icon {
    font-size: 15px;
    width: 1em;
    height: 1em
  }
}

@media (max-width:380px) {
  .post-featured__cta-group {
    top: 42%;
  }
}

/* === BREADCRUMBS === */
.breadcrumbs {
  margin: 20px auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--color--neutral-11);
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumbs .crumb-item a {
  color: var(--color--neutral-12);
  text-decoration: none;
  transition: color .25s ease;
}

.breadcrumbs .crumb-item a:hover {
  color: var(--color--sunrise-primary-1);
}

.breadcrumbs .sep {
  font-size: 12px;
  color: rgba(var(--sunrise-dark-1-rgb), .45);
}

.breadcrumbs .sep::before {
  content: "›";
  font-weight: 900;
  font-size: 14px;
  color: rgba(var(--sunrise-dark-1-rgb), .55);
  display: inline-block;
}

.breadcrumbs .current {
  color: var(--color--sunrise-primary-1);
  font-weight: 700;
}

/* =========================================================
   POSTS ARCHIVE: GRID + CARD + PAGINATION
   ========================================================= */
.posts-archive {
  background-color: transparent;
}

.posts-archive .archive-title {
  margin: 10px 0 18px;
  font-weight: 900;
  color: var(--color--neutral-12);
}

/* Grid */
.posts-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width:1199px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Post Card */
.post-card {
  position: relative;
  background: var(--color--white);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--sunrise-dark-1-rgb), .14);
  filter: saturate(1.02);
}

.post-card__thumb {
  position: relative;
  display: block;
  background: var(--color--neutral-2);
}

.post-card__thumb .post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.post-card.no-thumb .post-card__thumb {
  display: grid;
  place-items: center;
}

.post-card__placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-bottom: 1px solid rgba(var(--sunrise-dark-1-rgb), .08);
  background: radial-gradient(circle at 30% 30%, rgba(var(--sunrise-primary-1-rgb), .08), transparent 40%), linear-gradient(180deg, rgba(var(--sunrise-dark-1-rgb), .04), rgba(var(--sunrise-dark-1-rgb), .02));
  position: relative;
}

.post-card__placeholder::after {
  content: "ðŸ“°";
  font-size: 42px;
  opacity: .7;
}

.post-card__body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.post-card__meta {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 13px;
  color: var(--color--neutral-11);
}

.post-card__cat {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 9999px;
  background: var(--color--neutral-2);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .16);
  color: var(--color--neutral-12);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.post-card__cat:hover {
  background: rgba(var(--sunrise-dark-1-rgb), .06);
  border-color: rgba(var(--sunrise-dark-1-rgb), .22);
  transform: translateY(-1px);
}

.post-card__date {
  opacity: .85;
  color: var(--color--neutral-11);
}

.post-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.post-card__title a {
  color: var(--color--neutral-12);
  text-decoration: none;
}

.post-card__title a:hover {
  color: var(--color--green-4);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-card__excerpt {
  margin: 0;
  color: var(--color--neutral-11);
}

.post-card__actions {
  margin-top: 4px;
}

.post-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 9999px;
  background: rgba(var(--sunrise-dark-1-rgb), .05);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .14);
  color: var(--color--neutral-12);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.post-card__more:hover {
  background: rgba(var(--sunrise-dark-1-rgb), .08);
  border-color: rgba(var(--sunrise-dark-1-rgb), .22);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(var(--sunrise-dark-1-rgb), .18);
}

/* Pagination */
.pagination,
.navigation.pagination {
  margin: 16px 0 0;
  display: flex;
  justify-content: center;
}

.navigation .nav-links,
.pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(var(--sunrise-dark-1-rgb), .06);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .14);
  color: var(--color--neutral-12);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.page-numbers:hover {
  background: rgba(var(--sunrise-dark-1-rgb), .1);
  border-color: rgba(var(--sunrise-dark-1-rgb), .22);
}

.page-numbers.current {
  background: var(--gradient--luminous-vivid-amber-to-luminous-vivid-orange);
  border-color: transparent;
  color: var(--color--neutral-12);
}

.page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: var(--color--neutral-11);
}

.posts-archive .no-posts {
  color: var(--color--neutral-11);
}

/* ===== AUTHOR BLOCK (archive) ===== */
.author-block {
  margin: 18px auto 22px;
}

.author-card {
  display: grid;
  gap: 16px;
  align-items: flex-start;
  grid-template-columns: 72px 1fr;
  background: var(--color--white);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
  border-radius: 14px;
  padding: 14px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--color--neutral-2);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .16);
}

.author-info {
  display: grid;
  gap: 8px;
}

.author-name {
  margin: 0;
  padding: 0;
  font-weight: 900;
  line-height: 1.15;
  font-size: 20px;
  color: var(--color--neutral-12);
}

.author-bio {
  color: var(--color--neutral-11);
}

.author-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(var(--sunrise-dark-1-rgb), .06);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .14);
  color: var(--color--neutral-12);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.author-socials a:hover {
  transform: translateY(-1px);
  background: rgba(var(--sunrise-dark-1-rgb), .1);
  border-color: rgba(var(--sunrise-dark-1-rgb), .22);
}

@media (min-width:720px) {
  .author-card {
    grid-template-columns: 96px 1fr;
    padding: 16px;
  }

  .author-avatar {
    width: 96px;
    height: 96px;
  }
}

/* ===== AUTHOR MINI (single post) ===== */
.author-mini {
  margin: 18px 0 0;
  border-top: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
  padding-top: 14px;
}

.author-mini__inner {
  display: grid;
  gap: 12px;
  align-items: center;
  grid-template-columns: 56px 1fr;
  background: var(--color--white);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
  border-radius: 12px;
  padding: 10px 12px;
}

.author-mini__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color--neutral-2);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .16);
}

.author-mini__body {
  display: grid;
  gap: 6px;
}

.author-mini__name {
  margin: 0;
  padding: 0;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color--neutral-12);
}

.author-mini__bio {
  margin: 0;
  color: var(--color--neutral-11);
}

.author-mini__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-mini__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  background: rgba(var(--sunrise-dark-1-rgb), .06);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
  color: var(--color--neutral-12);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.author-mini__socials a:hover {
  transform: translateY(-1px);
  background: rgba(var(--sunrise-dark-1-rgb), .1);
  border-color: rgba(var(--sunrise-dark-1-rgb), .2);
}

.author-mini__socials a:hover::after {
  content: none;
}

@media (max-width:560px) {
  .author-card {
    grid-template-columns: 60px 1fr;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
  }

  .author-name {
    font-size: 18px;
  }
}

/* MOBILE MENU â€” chevron toggle */
@media (max-width:1024px) {
  #site-navigation .menu li.menu-item-has-children {
    position: relative;
  }

  #site-navigation .menu li.menu-item-has-children>a {
    position: relative;
    padding-right: 44px;
  }

  #site-navigation .menu li.menu-item-has-children>a>.submenu-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    border: 0;
    background: transparent;
    color: var(--color--white);
    cursor: pointer;
    transition: color .15s ease, transform .15s ease;
  }

  #site-navigation .menu li.menu-item-has-children>a>.submenu-toggle:hover {
    background: transparent;
    color: var(--color--green-4);
  }

  #site-navigation .menu li.menu-item-has-children>a>.submenu-toggle:focus {
    outline: 2px solid var(--color--green-4);
    outline-offset: 2px;
  }

  #site-navigation .menu li.menu-item-has-children>a>.submenu-toggle i,
  #site-navigation .menu li.menu-item-has-children>a>.submenu-toggle .icon {
    font-size: 12px;
    width: .75em;
    height: .75em;
    transition: transform .2s ease, color .2s ease;
  }

  #site-navigation .menu li.menu-item-has-children.submenu-open>a>.submenu-toggle i,
  #site-navigation .menu li.menu-item-has-children.submenu-open>a>.submenu-toggle .icon {
    transform: rotate(180deg);
    color: var(--color--green-4);
  }

  #site-navigation .menu li.menu-item-has-children>.sub-menu {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease;
  }
}

@media (min-width:1025px) {
  #site-navigation .menu li.menu-item-has-children>a>.submenu-toggle {
    display: none !important;
  }
}

/* PARENT label align (mobile) */
@media (max-width:1024px) {
  .site-header .menu>.menu-item-has-children>a {
    justify-content: flex-start !important;
    text-align: left;
    min-height: 44px;
    padding-right: 44px;
  }

  .site-header .menu>.menu-item-has-children>a::after {
    display: none !important;
  }
}

/* ===== SIDEBAR ===== */
@media (max-width:1024px) {
  .site-sidebar {
    display: none !important;
  }
}

@media (min-width:1025px) {
  .site-sidebar {
    position: sticky;
    top: 16px;
    width: auto;
    z-index: auto;
    pointer-events: auto;
  }

  .site-sidebar .sidebar-inner {
    display: grid;
    gap: 12px;
  }

  .sidebar-card {
    background-color: var(--color--white);
    box-shadow: var(--card-shadow);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .sidebar-card--winners,
  .sidebar-card--custom {
    padding: 12px;
  }

  .sidebar-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 4px 8px 4px;
  }

  .sidebar-card__title {
    margin: 0;
    padding: 0;
    font-weight: 800;
    font-size: 15px;
    color: var(--color--neutral-12);
    letter-spacing: .02em;
  }

  .sidebar-card__head .dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: var(--color--green-4);
    box-shadow: 0 0 10px rgba(60, 176, 100, .4);
  }

  .winners-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .winners-list .winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(var(--sunrise-dark-1-rgb), .05);
    border: 1px solid rgba(var(--sunrise-dark-1-rgb), .1);
    transition: background .2s ease, border-color .2s ease, opacity .25s ease, transform .25s ease;
    opacity: 0;
    transform: translateY(6px);
    cursor: pointer;
  }

  .winners-list .winner-item.is-in {
    opacity: 1;
    transform: translateY(0);
  }

  .winners-list .winner-item:hover {
    background: rgba(var(--sunrise-dark-1-rgb), .08);
    border-color: rgba(var(--sunrise-dark-1-rgb), .18);
    transform: translateY(-2px);
  }

  .winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color--neutral-2);
    border: 1px solid rgba(var(--sunrise-dark-1-rgb), .14);
    flex: 0 0 40px;
  }

  .winner-meta {
    display: grid;
    gap: 2px;
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .winner-name {
    grid-column: 1/2;
    font-weight: 800;
    color: var(--color--neutral-11);
    font-size: 13px;
  }

  .winner-amount {
    grid-column: 2/3;
    font-weight: 900;
    color: var(--color--neutral-12);
    font-size: 14px;
  }

  .sidebar-card--custom .sidebar-card__body {
    font-size: 14px;
  }
}

/* Customizer preview show sidebar */
@media (max-width:1024px) {
  body.customize-preview .site-sidebar {
    display: block !important;
    position: static;
    width: auto;
    z-index: auto;
    pointer-events: auto;
  }

  body.customize-preview .site-sidebar .sidebar-inner {
    pointer-events: auto;
  }
}

/* Desktop CTA size */
@media (min-width:1025px) {
  .post-featured__cta {
    height: 56px;
    padding: 0 26px;
    font-size: 16px;
    gap: 12px;
  }

  .post-featured__cta i,
  .post-featured__cta .icon {
    font-size: 18px;
    width: 1em;
    height: 1em
  }
}

/* Entry title */
.entry-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--color--neutral-12);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px !important;
}

.entry-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  border-radius: 2px;
  transition: width .4s ease;
}

.entry-title:hover::after {
  width: 100%;
}

@media (max-width:768px) {
  .entry-title {
    font-size: 27px;
  }

  .entry-title::after {
    width: 50px;
    height: 2px;
    right: 0;
    margin: 0 auto;
  }
}

/* Entry content */
.entry-content p {
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color--neutral-12);
  font-weight: 400;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;
}

.entry-content a {
  position: relative;
  color: #d52b1e;
  text-decoration: none;
  transition: color .25s ease;
}

.entry-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--gradient--electric-grass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
  border-radius: 1px;
}

.entry-content a:hover {
  color: #f90;
}

.entry-content a:hover::after {
  background: #f90;
  transform: scaleX(1);
  transform-origin: left;
}

.entry-content ul {
  margin: 0 0 1.6em 0;
  padding: 0;
  list-style: none;
  line-height: 1.6;
  color: var(--color--neutral-12);
}

.entry-content ul li {
  position: relative;
  margin: 0;
  padding-left: calc(8px + .8em);
  line-height: 1.4;
}

.entry-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc((1.6em - 8px)/2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient--luminous-vivid-orange-to-vivid-red);
  box-shadow: 0 0 8px rgba(60, 176, 100, .45);
}

.entry-content ul ul {
  margin-top: .4em;
}

.entry-content ul ul li {
  padding-left: calc(6px + .8em);
}

.entry-content ul ul li::before {
  top: calc((1.6em - 6px)/2);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 6px rgba(60, 176, 100, .35);
}

.entry-content ol {
  margin: 0 0 1.6em 1.2em;
  padding: 0;
  list-style: decimal outside;
  line-height: 1.6;
  color: var(--color--neutral-12);
}

.entry-content ol li {
  margin: 0 0 .7em;
  font-variant-numeric: tabular-nums;
}

.entry-content ol li::marker {
  color: var(--gradient--luminous-vivid-orange-to-vivid-red);
  font-weight: 800;
}

.entry-content li>ul,
.entry-content li>ol {
  margin-top: .4em;
}

@media (prefers-reduced-motion:reduce) {
  .entry-content a::after {
    transition: none;
  }
}

/* Article images */
.article-image-wrap {
  display: block;
  max-width: 100%;
  overflow: hidden;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  max-height: 90vh;
  object-fit: contain;
}



/* ===== Latest guides ===== */
.latest-guides {
  margin-bottom: 30px;
  padding: 0;
}

.latest-guides .lg-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 12px;
  padding-bottom: 6px;
  position: relative;
  border-bottom: 2px solid transparent;
  border-image: var(--gradient--very-light-gray-to-cyan-bluish-gray) 1;
}

.latest-guides .lg-title {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--color--neutral-12);
}

.latest-guides .lg-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(var(--sunrise-dark-1-rgb), .06);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .14);
  color: var(--color--neutral-12);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.latest-guides .lg-more:hover {
  transform: translateY(-1px);
  background: rgba(var(--sunrise-dark-1-rgb), .1);
  border-color: rgba(var(--sunrise-dark-1-rgb), .22);
  color: var(--color--neutral-12);
}

.latest-guides .guides-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.latest-guides .post-card {
  background: var(--color--white);
  border: 1px solid rgba(var(--sunrise-dark-1-rgb), .12);
  border-radius: 12px;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-guides .post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(var(--sunrise-dark-1-rgb), .16);
  filter: saturate(1.02);
}

.latest-guides .post-card__thumb {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(var(--sunrise-dark-1-rgb), .1);
  background: var(--color--neutral-2);
}

.latest-guides .post-card__body {
  padding: 12px 12px 14px;
}

.latest-guides .post-card__title {
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-guides .post-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
  color: var(--color--neutral-11);
}

.latest-guides .post-card__more {
  display: none !important;
}

@media (max-width:1199px) {
  .latest-guides .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:900px) {
  .latest-guides .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  .latest-guides .guides-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width:1025px) {
  .latest-guides {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
  }

  .latest-guides .guides-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .latest-guides .post-card {
    max-width: 100%;
  }

  .latest-guides .lg-head {
    justify-content: space-between;
  }

  .latest-guides .lg-title {
    font-size: 22px;
  }

  .latest-guides .lg-more {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* === Footer === */
.site-footer {
  background-color: var(--color--sunrise-primary-1);
  color: rgba(var(--sunrise-light-1-rgb), .75);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(var(--sunrise-light-1-rgb), .08);
  margin-top: 20px;
}

.site-footer .footer-heading {
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--color--white);
}

.site-footer .footer-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
  padding: 30px 0;
}

.site-footer .footer-contact {
  text-align: left;
}

.site-footer .footer-contact a {
  font-weight: bold;
  color: rgba(var(--sunrise-light-1-rgb), .9);
}

.site-footer .footer-links-list,
.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer .footer-links-list a {
  color: rgba(var(--sunrise-light-1-rgb), .9);
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer .footer-links-list a:hover {
  color: var(--accent-3);
}

.site-footer .footer-bottom {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(var(--sunrise-light-1-rgb), .08);
  padding-top: 14px;
}

.site-footer .footer-disclaimer {
  margin: 0;
  color: rgba(var(--sunrise-light-1-rgb), .8);
}

.site-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.site-footer .footer-socials .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(var(--sunrise-light-1-rgb), .08);
  border: 1px solid rgba(var(--sunrise-light-1-rgb), .16);
  color: var(--color--white);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.site-footer .footer-socials .footer-social:hover {
  transform: translateY(-1px);
  background: rgba(var(--sunrise-light-1-rgb), .14);
  border-color: rgba(var(--sunrise-light-1-rgb), .26);
}

.footer-dark {
  background: var(--color--sunrise-dark-2);
  padding: 30px 0;
  color: var(--color--white);
}

.footer-dark a {
  color: var(--color--white);
  text-decoration: none;
}

.footer-dark a:hover {
  text-decoration: underline;
}

.footer-brands {
  margin: 30px 0;
  text-align: center;
}

.footer-brands__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--color--white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.footer-brands__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.provider-card--footer,
.footer-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-card__img,
.footer-brands__img {
  max-height: 48px;
  object-fit: contain;
  transition: transform .25s ease, opacity .25s ease;
  filter: grayscale(100%) opacity(.9);
}

.provider-card__img:hover,
.footer-brands__img:hover {
  transform: scale(1.05);
  filter: none;
  opacity: 1;
}

@media(max-width:900px) {
  .site-footer .footer-grid--auto {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .site-footer .footer-grid--auto {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-footer .footer-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

@media(max-width:770px) {
  .site-footer .footer-grid--auto {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .site-footer .footer-col {
    position: relative;
    padding: 14px 0;
  }

  .site-footer .footer-col+.footer-col {
    border-top: 1px solid rgba(var(--sunrise-light-1-rgb), .1);
  }

  .site-footer .footer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 8px 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
  }

  .site-footer .footer-heading::after {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(var(--sunrise-light-1-rgb), .85);
    border-bottom: 2px solid rgba(var(--sunrise-light-1-rgb), .85);
    transform: rotate(-45deg);
    transition: transform .2s ease;
    margin-left: 10px;
  }

  .site-footer .footer-col.is-open .footer-heading::after {
    transform: rotate(45deg);
  }

  .site-footer .footer-links-list,
  .site-footer .footer-contact-list {
    overflow: hidden;
    max-height: 0;
    display: block;
    padding: 0 4px;
    margin: 0;
    transition: max-height .25s ease;
    text-align: left;
  }

  .site-footer .footer-links-list>li,
  .site-footer .footer-contact-list>li {
    padding: 8px 0;
  }

  .site-footer .footer-bottom {
    border-top: 1px solid rgba(var(--sunrise-light-1-rgb), .1);
    margin-top: 0;
    padding-top: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === Promo banner === */
.promo-banner {
  --banner-bg: #f6f6f6;
  --accent: #d52b1e;
  --accent-2: #ff8a00;
  --text: #121212;
  --text-soft: #121212bf;
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  box-shadow: 0 6px 20px #00000014 inset 0 1px 0 #ffffffb3;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #d52b1eb3, #ff8a0099, #ff147a80);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: promoBorder 6s linear infinite;
  opacity: .45;
  pointer-events: none
}

@keyframes promoBorder {
  0% {
    filter: hue-rotate(0deg)
  }

  100% {
    filter: hue-rotate(360deg)
  }
}

.promo-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent-2), #d52b1e);
  opacity: .8;
  box-shadow: 0 0 24px #d52b1e40
}

.promo-banner__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px
}

.promo-banner__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, #f90, #ff147a);
  border-radius: 999px;
  box-shadow: 0 2px 8px #ff147a4d
}

.promo-banner__headline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text)
}

.promo-banner__headline strong {
  background: linear-gradient(90deg, #111 0%, #333 50%, #111 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5s linear infinite
}

@keyframes sheen {
  0% {
    background-position: -120% 0
  }

  100% {
    background-position: 240% 0
  }
}

.promo-banner__icon {
  font-size: 24px;
  filter: drop-shadow(0 0 6px #f909)
}

.promo-banner__sub {
  margin-top: 6px;
  color: var(--text-soft);
  font-weight: 500
}

.promo-banner__cta {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(135deg, #d52b1e, #b92116 45%, #a01a10 100%);
  box-shadow: 0 8px 22px #d52b1e40 inset 0 1px 0 #ffffff80;
  transition: transform .18s ease, box-shadow .18s ease
}

.promo-banner__cta::after {
  content: none !important;
}

.promo-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px #d52b1e66 inset 0 1px 0 #ffffffb3
}

@media (max-width:640px) {
  .promo-banner__body {
    flex-direction: column;
    align-items: flex-start
  }

  .promo-banner__cta {
    width: 100%;
    text-align: center
  }
}

/* === Welcome Bonus === */
.get-bonus {
  position: fixed;
  z-index: 9999
}

.gb-trigger {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.gb-trigger.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ── Spin wheel button ── */
.spin-btn-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: floatUpDown 2.8s ease-in-out infinite;
  user-select: none;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.wheel-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: -4px;
}

.wheel-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #e83030, #c01818, #a01010);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .5), inset 0 2px 3px rgba(255, 255, 255, .15);
}

.wheel-disc {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  overflow: hidden;
  animation: spinWheel 3s linear infinite;
}

@keyframes spinWheel {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wheel-disc svg {
  width: 100%;
  height: 100%;
}

.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(212, 32, 32, .3), 0 2px 6px rgba(0, 0, 0, .3);
  z-index: 10;
  overflow: hidden;
}

.wheel-hub-leaf {
  width: 100%;
  height: 100%;
  fill: #d42020;
  padding: 2px;
}

.wheel-pointer {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid #ff4444;
  filter: drop-shadow(0 2px 3px rgba(255, 0, 0, .6));
  z-index: 20;
}

.spin-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  z-index: 25;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, .3)) drop-shadow(0 0 12px rgba(255, 170, 0, .15));
  }

  50% {
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, .6)) drop-shadow(0 0 28px rgba(255, 170, 0, .3));
  }
}

.spin-line {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #ffd700 40%, #ffaa00 70%, #cc8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .6)) drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
}

.spin-line.big {
  font-size: 14px;
  background: linear-gradient(180deg, #ffe066 0%, #ffd700 30%, #ff8c00 70%, #cc6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .7)) drop-shadow(0 3px 6px rgba(0, 0, 0, .5));
}


/* Confetti */
.confetti-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  opacity: 0;
  animation: confettiFall 2.4s ease-in infinite;
}

.confetti-piece:nth-child(1) {
  background: #FFD700;
  left: 14px;
  top: -8px;
  animation-delay: 0s;
  transform: rotate(20deg);
}

.confetti-piece:nth-child(2) {
  background: #FF6B6B;
  left: 28px;
  top: -4px;
  animation-delay: .3s;
  width: 5px;
  height: 8px;
}

.confetti-piece:nth-child(3) {
  background: #4ECDC4;
  left: -20px;
  top: -6px;
  animation-delay: .6s;
  border-radius: 50%;
}

.confetti-piece:nth-child(4) {
  background: #FFD700;
  left: 36px;
  top: -8px;
  animation-delay: .15s;
  transform: rotate(45deg);
}

.confetti-piece:nth-child(5) {
  background: #fff;
  left: -8px;
  top: -4px;
  animation-delay: .45s;
  width: 4px;
  height: 9px;
}

.confetti-piece:nth-child(6) {
  background: #f90;
  left: 46px;
  top: -2px;
  animation-delay: .9s;
  border-radius: 50%;
}

.confetti-piece:nth-child(7) {
  background: #FFD700;
  left: -32px;
  top: -8px;
  animation-delay: .2s;
}

.confetti-piece:nth-child(8) {
  background: #a29bfe;
  left: 20px;
  top: -10px;
  animation-delay: .7s;
  width: 4px;
  height: 7px;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(60px) rotate(360deg);
    opacity: 0;
  }
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparklePop 2s ease-in-out infinite;
  opacity: 0;
}

.sparkle:nth-child(1) {
  top: 6px;
  right: -10px;
  animation-delay: 0s;
  width: 8px;
  height: 8px;
}

.sparkle:nth-child(2) {
  top: 28px;
  right: -14px;
  animation-delay: .7s;
  background: #d42020;
}

.sparkle:nth-child(3) {
  top: 14px;
  left: -14px;
  animation-delay: .35s;
  background: #d42020;
  width: 6px;
  height: 6px;
}

.sparkle:nth-child(4) {
  bottom: 28px;
  right: -12px;
  animation-delay: 1.1s;
}

@keyframes sparklePop {

  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0);
  }

  40%,
  60% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

.gb-trigger:hover .spin-btn-wrapper {
  animation: none;
  transform: scale(1.08);
  transition: transform .2s;
}

.gb-trigger:hover .wheel-disc {
  animation-duration: 0.6s;
}

.gb-trigger::after {
  display: none;
}

.gb-trigger.is-visible:hover {
  transform: scale(1.1);
}

@keyframes gb-ring {
  0% {
    transform: scale(1);
    opacity: .5
  }

  70% {
    transform: scale(1.5);
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

@keyframes gb-spin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.gb-overlay {
  position: fixed;
  inset: 0;
  background: #000c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px
}

.gb-overlay[hidden] {
  display: none !important
}

.gb-modal {
  position: relative;
  max-width: 450px;
  width: 100%;
  outline: 0
}

.gb-card {
  background: linear-gradient(145deg, #1a0000 0%, #310000 100%);
  color: #fff;
  border-radius: 16px;
  border: 1px solid #ffd70066;
  padding: 32px 24px 26px;
  box-shadow: 0 0 40px #f003 0 0 40px #ff00000d;
  text-align: center
}

.gb-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #ffffff1f;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease
}

.gb-close:hover {
  background: #ffffff40;
  transform: rotate(90deg)
}

.gb-flag-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, red 0%, #7a0000 100%);
  box-shadow: 0 0 25px #f00c;
  margin: 0 auto 12px;
  animation: flagGlow 2.5s ease-in-out infinite
}

.gb-flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%
}

@keyframes flagGlow {
  0% {
    box-shadow: 0 0 15px #f006
  }

  50% {
    box-shadow: 0 0 35px #ff0000e6
  }

  100% {
    box-shadow: 0 0 15px #f006
  }
}

.gb-heading {
  font-size: 26px;
  font-weight: 900;
  margin: 12px 0 8px;
  text-transform: uppercase;
  letter-spacing: .6px
}

.gb-sub {
  font-weight: 600;
  color: #fcc;
  margin-bottom: 18px
}

.gb-amount {
  margin-bottom: 18px;
}

.gb-amount__l1 {
  font-size: 30px;
  font-weight: 900;
  color: #fff
}

.gb-amount__l2 {
  font-size: 18px;
  color: #ff4a4a;
  margin-top: 4px;
  font-weight: 700
}

.gb-cta {
  display: block;
  margin: 0 auto;
  max-width: 260px;
  text-align: center;
  padding: 14px 18px;
  border-radius: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(90deg, red 0%, #f90 100%);
  background-size: 300% 100%;
  transition: background-position .4s ease, transform .2s ease;
  box-shadow: 0 0 20px #f006
}

.gb-cta:hover {
  background-position: 100% 0;
  transform: scale(1.05)
}

@media (max-width: 1024px) {
  .gb-trigger {
    left: 25px;
    bottom: 90px;
    transition-delay: .15s;
  }
}

@media (max-width:560px) {
  .gb-card {
    padding: 22px 16px
  }

  .gb-heading {
    font-size: 22px
  }

  .gb-amount__l1 {
    font-size: 24px
  }
}

/* ===========================
   Random Games Strip
   =========================== */

/* Entrance animation keyframes */
@keyframes randomGamesSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes randomCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Shimmer glow on the border */
@keyframes randomGamesGlow {

  0%,
  100% {
    border-color: var(--border);
  }

  50% {
    border-color: var(--accent-25);
  }
}

.random-games {
  margin: var(--gap) 0;
  margin-bottom: calc(var(--gap) + 8px);
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: visible;
  /* Start hidden, animate on appear */
  opacity: 0;
  transform: translateY(24px);
  animation: randomGamesSlideUp .5s ease forwards, randomGamesGlow 3s ease-in-out 1s infinite;
}

/* Refresh button */
@keyframes randomRefreshSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.random-games__refresh {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb) / .35), 0 0 0 4px rgba(var(--accent-rgb) / .1);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.random-games__refresh:hover {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 6px 24px rgba(var(--accent-rgb) / .5), 0 0 0 6px rgba(var(--accent-rgb) / .15);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.random-games__refresh:active {
  transform: translateX(-50%) scale(.9);
}

.random-games__refresh.is-spinning svg {
  animation: randomRefreshSpin .5s ease;
}

.random-games__refresh svg {
  pointer-events: none;
  width: 22px;
  height: 22px;
}

.random-games__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.random-games__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform var(--t);
  /* Staggered card entrance */
  opacity: 0;
  animation: randomCardFadeIn .45s ease forwards;
}

.random-games__card:nth-child(1) {
  animation-delay: .1s;
}

.random-games__card:nth-child(2) {
  animation-delay: .2s;
}

.random-games__card:nth-child(3) {
  animation-delay: .3s;
}

.random-games__card:nth-child(4) {
  animation-delay: .4s;
}

.random-games__card:hover {
  transform: translateY(-4px);
}

.random-games__card .game-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1.25;
  background: var(--bg2);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--t), box-shadow var(--t);
}

.random-games__card:hover .game-thumb {
  border-color: var(--accent-60);
  box-shadow: var(--shadow);
}

.random-games__card .game-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--t);
}

.random-games__card:hover .game-thumb img {
  transform: scale(1.06);
  filter: blur(3px) brightness(.75);
}

.random-games__card .game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(var(--black-rgb) / .55);
  opacity: 0;
  transition: opacity var(--t);
  border-radius: var(--radius);
}

.random-games__card:hover .game-overlay {
  opacity: 1;
  pointer-events: auto;
}

.random-games__card .play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(0);
  transition: transform var(--t), background var(--t);
}

.random-games__card:hover .play-btn {
  transform: scale(1);
}

.random-games__card .demo-link {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--t), opacity var(--t), background var(--t);
  text-decoration: none;
}

.random-games__card:hover .demo-link {
  transform: translateY(0);
  opacity: 1;
}

.random-games__card .demo-link:hover {
  background: rgba(0, 0, 0, .70);
}

.random-games__card .game-info {
  padding: 6px 2px 0;
}

.random-games__card .game-name {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--t);
}

.random-games__card:hover .game-name {
  color: var(--accent);
}

.random-games__card .game-provider {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Responsive: tablet */
@media (max-width: 768px) {
  .random-games {
    padding: 14px;
    margin-bottom: calc(var(--gap) + 10px);
  }

  .random-games__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .random-games__refresh {
    width: 36px;
    height: 36px;
    bottom: -18px;
  }
}

/* Responsive: small mobile */
@media (max-width: 420px) {
  .random-games {
    margin: 12px 0;
    margin-bottom: 28px;
    padding: 10px;
  }

  .random-games__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .random-games__card .game-name {
    font-size: 12px;
  }

  .random-games__refresh {
    width: 34px;
    height: 34px;
    bottom: -17px;
  }

  .random-games__refresh svg {
    width: 18px;
    height: 18px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .random-games,
  .random-games__card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* === EXIT POPUP (Spin Wheel) === */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 199, 0, .4);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 199, 0, .8);
  }
}

.popup button,
button.popup {
  width: 220px;
  max-width: 90%;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 9px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .popup button {
    width: 350px;
    max-width: 90%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Modal styles */
#exit-modal {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#exit-modal.is-open {
  opacity: 1;
}

#exit-modal-content {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid #ffc700;
  z-index: 1000000;
  opacity: 0;
  transform: scale(0.88) translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#exit-modal.is-open #exit-modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease;
  z-index: 10002;
}

#close-modal:hover {
  transform: scale(1.2);
}

#modal-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}

.offer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.5em;
  animation: glow 3s ease-in-out infinite;
}

.offer-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  animation: glow 3s ease-in-out infinite;
}

.offer-subheading s {
  color: rgba(255, 199, 0, 0.6);
  text-decoration-color: rgba(255, 199, 0, 0.6);
  margin-right: 0.3em;
}

/* Win popup styles */
#win-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.89);
  color: #fff;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 10001;
}

/* Countdown timer styles */
.countdown-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.countdown-container-desktop {
  text-align: center;
  color: #FFC700;
  font-family: 'Inter', sans-serif;
  padding: 0.8rem;
  margin: 0 auto;
  max-width: 80%;
  transform: scale(0.75);
  transform-origin: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.time-box {
  background: rgba(255, 199, 0, .07);
  border: 1px solid rgba(255, 199, 0, .3);
  box-shadow: 0 0 10px rgba(255, 199, 0, .2);
  border-radius: 8px;
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-digits {
  font-size: 1.6rem;
  font-weight: 700;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===========================
   GOLD BUTTON — clasa reutilizabila
   Foloseste: <a class="btn-gold"> sau <button class="btn-gold">
   =========================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  background-image: var(--gradient--gold);
  color: var(--text);
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  padding: 12px 20px;
  border-radius: 9px;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), .35);
  transition: filter .2s ease, transform .15s ease, box-shadow .2s ease;
}

.btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(var(--gold-rgb), .55);
  color: #000;
  text-decoration: none;
}

.btn-gold:active {
  transform: translateY(0);
  filter: brightness(.96);
  box-shadow: 0 2px 8px rgba(var(--gold-rgb), .3);
}

.btn-gold:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .55);
}

/* size modifiers */
.btn-gold--sm {
  font-size: .875rem;
  padding: 8px 14px;
  border-radius: 7px;
}

.btn-gold--lg {
  font-size: 1.125rem;
  padding: 15px 28px;
  border-radius: 11px;
}

/* ===========================
   CRYPTO INFO BANNER
   =========================== */
.crypto-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--color--sunrise-dark-1) 0%, var(--color--sunrise-primary-1) 55%, var(--color--sunrise-dark-3) 100%);
  border-radius: var(--radius);
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(var(--gold-rgb), .12);
  margin-bottom: 4px;
}

.crypto-info-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(var(--gold-rgb), .09) 0%, transparent 65%);
  pointer-events: none;
}

.crypto-info-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--gold-rgb), .6) 40%, rgba(var(--gold-rgb), .6) 60%, transparent 100%);
}

.crypto-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
  position: relative;
}

.crypto-info__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.crypto-info__desc {
  margin: 0;
  font-size: .9rem;
  color: rgba(var(--white-rgb), .6);
  line-height: 1.55;
  max-width: 400px;
}

.crypto-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: var(--gradient--gold);
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  padding: 12px 20px;
  border-radius: 9px;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  margin-top: 12px;
  align-self: flex-start;
  box-shadow: var(--card-shadow);
  transition: filter var(--t), transform .15s ease, box-shadow var(--t);
  position: relative;
}

.crypto-info__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(var(--gold-rgb), .55);
  color: var(--text);
  text-decoration: none;
}

.crypto-info__btn:active {
  transform: translateY(0);
  filter: brightness(.96);
}

.crypto-info__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}

.crypto-info__coin {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .55));
  transition: transform .2s ease, filter .2s ease;
}

.crypto-info__coin:hover {
  transform: translateY(-4px) scale(1.12);
  filter: drop-shadow(0 6px 14px rgba(var(--gold-rgb), .45));
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .crypto-info__logos {
    gap: 8px;
  }

  .crypto-info__coin {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 700px) {
  .crypto-info-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 20px;
  }

  .crypto-info__logos {
    flex-wrap: wrap;
    gap: 8px;
  }

  .crypto-info__coin {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .crypto-info__title {
    font-size: 1.05rem;
  }

  .crypto-info__coin {
    width: 28px;
    height: 28px;
  }
}

/* === AUTH BOTTOM MOBILE === */
.auth-bottom-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .auth-bottom-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    background: #171717;
    border-top: 1px solid rgba(255, 255, 255, .1);
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
  }

  .auth-bottom-mobile.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .auth-bottom-mobile .auth-buttons {
    display: flex;
    gap: 10px;
  }

  .auth-bottom-mobile .header-button {
    flex: 1;
    text-align: center;
    justify-content: center;
    box-shadow: 0 4px 14px transparent !important;
  }

  .auth-bottom-mobile .header-button.login {
    background: none;
    color: var(--gold);
    border: 1px solid var(--gold);
  }

  .auth-bottom-mobile .header-button.login:hover {
    background: rgba(var(--gold-rgb), .1);
  }

  .auth-bottom-mobile .header-button.signup {
    background-image: var(--gradient--gold);
    color: var(--text);
  }

  .site-footer {
    padding-bottom: 50px;
  }
}