/* ===== CSS Variables & Reset ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --giddy-blue: #00baff;
  --deep-navy: #161e27;
  --dark-blue: #1d8be2;
  --white: #ffffff;
  --gray-1: #73787d;
  --gray-2: #2d353d;
  --gray-3: #222932;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --cta-yellow: #ffb800;
  --cta-yellow-hover: #ffc933;
  --cascade-scale: 1;
}

body {
  font-family: "Paralucent", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--deep-navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Header ===== */
.marketing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(22, 30, 39, 0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 186, 255, 0);
  transition: background 0.2s ease, backdrop-filter 0.2s ease,
    border-bottom-color 0.2s ease;
}

.marketing-header .logo {
  height: 40px;
  width: auto;
}

.marketing-header .header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-buttons .btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cta-yellow) 0%, #ff9500 100%);
  color: var(--deep-navy);
  border: none;
  outline: 1px solid #ff9500;
  font-family: "Passion One", Impact, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0 1.25rem;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(255, 184, 0, 0.3);
}

.header-buttons .btn-reserve:hover {
  background: linear-gradient(135deg, #ffcc33 0%, var(--cta-yellow) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
  text-decoration: none;
}

/* ===== Carousel ===== */
.carousel-outer {
  position: relative;
  margin: 0;
  padding: 0;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

/* Carousel Navigation */
.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  pointer-events: none;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-3);
  border: 2px solid var(--gray-2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: all;
}

.carousel-arrow:hover {
  background: var(--giddy-blue);
  border-color: var(--giddy-blue);
  transform: scale(1.1);
  opacity: 1;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  z-index: 200;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--gray-1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--giddy-blue);
  border-color: var(--giddy-blue);
  transform: scale(1.2);
  box-shadow: 0 0 10px var(--giddy-blue);
}

.carousel-pause-btn {
  padding: 0;
  background: none;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.carousel-pause-btn svg {
  width: 18px;
  height: 18px;
}

/* ===== Slide 1: Hero ===== */
.slide-hero {
  background: radial-gradient(
      ellipse at top left,
      rgba(0, 186, 255, 0.2) 0%,
      rgba(29, 139, 226, 0.1) 30%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      #0a0e14 0%,
      #0f1419 30%,
      #1a0a0a 60%,
      #4a0f0f 85%,
      #6b1515 100%
    );
  padding: 0;
}

.slide-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  padding: 2rem 4rem;
  gap: 3rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  z-index: 1;
}

.hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0, 186, 255, 0.3));
}

.hero-attention-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #ff6b00 0%,
    #ff9500 50%,
    var(--cta-yellow) 100%
  );
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: "Passion One", Impact, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 184, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulseAttention 2s ease-in-out infinite;
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
}

.hero-attention-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shine 3s infinite;
  z-index: 0;
  pointer-events: none;
}

/* Powered by Live Horse Racing - inside real-money-badge */
.rmb-powered {
  display: block;
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--giddy-blue);
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 186, 255, 0.5);
  margin-top: 0.5rem;
  transform: skewX(-8deg);
}

/* Real Money Games Badge */
.real-money-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 1.5rem 0 1rem;
}

.rmb-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--giddy-blue);
  padding: 0.25em 0.8em;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}

.rmb-main {
  display: inline-block;
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(0, 186, 255, 0.15) 0%,
    rgba(0, 80, 150, 0.25) 100%
  );
  border: 3px solid var(--giddy-blue);
  border-radius: 10px;
  padding: 0.15em 0.4em 0.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 25px rgba(0, 186, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: skewX(-8deg);
  position: relative;
  overflow: hidden;
  padding-top: 0.25em;
}

.rmb-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 150%;
  }
}

.rmb-banner {
  position: absolute;
  top: 21px;
  right: -43px;
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(0.45rem, 0.8vw, 0.55rem);
  color: var(--white);
  background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
  padding: 0.3em 40px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  z-index: 3;
  text-align: center;
}

.hero-headline-emphasis {
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--giddy-blue);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 rgba(22, 30, 39, 0.6);
  filter: drop-shadow(0 0 8px rgba(0, 186, 255, 0.4));
}

.hero-subtext {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-disclaimer {
  font-size: 0.7rem;
  color: var(--gray-1);
  margin-top: 1.5rem;
  max-width: 450px;
  line-height: 1.4;
}

.hero-disclaimer strong {
  color: var(--white);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  perspective: 1000px;
}

/* ===== Games Cascade ===== */
.games-cascade {
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 50%;
  margin-left: -350px;
  margin-top: -350px;
  transform-style: preserve-3d;
  transform: rotateY(-21deg) rotateX(19deg) scale(var(--cascade-scale));
  transform-origin: center center;
  animation: floatCascade 4s ease-in-out infinite;
}

.game-tile {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.game-tile img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.game-tile:hover {
  transform: translateZ(80px) scale(1.15);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6), 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

/* Game tile positions */
.game-tile-1 {
  width: 260px;
  top: 30px;
  right: 80px;
  z-index: 60;
  transform: translateZ(60px);
}
.game-tile-2 {
  width: 220px;
  top: 93px;
  right: 452px;
  z-index: 50;
  transform: translateZ(50px);
}
.game-tile-3 {
  width: 290px;
  top: 200px;
  right: 140px;
  z-index: 80;
  transform: translateZ(80px);
}
.game-tile-4 {
  width: 200px;
  top: 220px;
  right: 460px;
  z-index: 40;
  transform: translateZ(40px);
}
.game-tile-5 {
  width: 240px;
  top: 355px;
  right: 2px;
  z-index: 70;
  transform: translateZ(70px);
}
.game-tile-6 {
  width: 230px;
  top: 370px;
  right: 250px;
  z-index: 90;
  transform: translateZ(90px);
}
.game-tile-7 {
  width: 190px;
  top: 390px;
  right: 526px;
  z-index: 30;
  transform: translateZ(30px);
}
.game-tile-8 {
  width: 270px;
  top: 500px;
  right: 100px;
  z-index: 65;
  transform: translateZ(65px);
}
.game-tile-9 {
  width: 210px;
  top: 518px;
  right: 384px;
  z-index: 55;
  transform: translateZ(55px);
}

/* ===== Slide 2: Rewards ===== */
.slide-rewards {
  background: linear-gradient(
      to right,
      rgba(10, 14, 20, 0.95) 0%,
      rgba(10, 14, 20, 0.85) 25%,
      rgba(10, 14, 20, 0.6) 45%,
      rgba(10, 14, 20, 0.2) 60%,
      transparent 75%
    ),
    url("images/slide2_bg.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.rewards-wrapper {
  position: relative;
  z-index: 2;
  width: 85%;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  padding: 2rem 4rem;
}

.rewards-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  max-width: 600px;
}

.rewards-content .hero-disclaimer {
  margin-top: 1rem;
  max-width: 100%;
  text-align: left;
  width: 50%;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.rewards-slot-image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 85%;
  max-height: 93vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transform: translateY(5%);
}

.rewards-headline {
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.rewards-subheadline {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.rewards-subheadline-accent {
  display: inline;
  color: var(--giddy-blue);
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 186, 255, 0.5);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rewards-logo-inline {
  display: inline-block;
  height: 1.2em;
  width: auto;
  vertical-align: middle;
  margin-left: 0.25rem;
  filter: drop-shadow(0 0 20px rgba(0, 186, 255, 0.5))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rewards-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease;
  list-style: none;
}

.reward-item::before {
  content: "✓";
  color: var(--giddy-blue);
  font-size: 1.25em;
  font-weight: bold;
  flex-shrink: 0;
  text-align: center;
  filter: drop-shadow(0 0 8px rgba(0, 186, 255, 0.6));
}

.reward-item:hover {
  transform: translateX(5px);
}

.reward-title {
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--white);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
  paint-order: stroke fill;
  letter-spacing: 0.03em;
}

/* Floating Money */
.floating-money {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.money-1 {
  --rotate: -15deg;
  width: 180px;
  top: 5%;
  left: 3%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite;
}
.money-2 {
  --rotate: 20deg;
  width: 220px;
  top: 2%;
  right: 12%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite 1s;
}
.money-3 {
  --rotate: 10deg;
  width: 160px;
  bottom: 15%;
  left: 5%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite 2s;
}
.money-4 {
  --rotate: -25deg;
  width: 200px;
  bottom: 5%;
  right: 8%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite 0.5s;
}
.money-5 {
  --rotate: 30deg;
  width: 150px;
  top: 25%;
  right: 3%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite 1.5s;
}
.money-6 {
  --rotate: -10deg;
  width: 170px;
  bottom: 25%;
  left: 1%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite 2.5s;
}
.money-7 {
  --rotate: 15deg;
  width: 190px;
  top: 10%;
  left: 42%;
  transform: translateY(0) rotate(var(--rotate));
  animation: floatMoney 6s ease-in-out infinite 3s;
}

/* ===== Slide 3: Action/Trust ===== */
.slide-action {
  background: linear-gradient(rgba(15, 20, 28, 0.85), rgba(15, 20, 28, 0.9)),
    url("images/bg_marketing.png") center/cover no-repeat;
}

.action-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 4rem;
  gap: 1.5rem;
  text-align: center;
}

.action-from-team {
  font-size: 0.85rem;
  color: var(--gray-1);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0;
}

.clubs-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}

.clubs-logo {
  height: 70px;
  width: auto;
}

.clubs-poker-logo {
  height: 70px;
}

.action-headline {
  font-family: "Passion One", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta {
  background: linear-gradient(135deg, var(--cta-yellow) 0%, #ff9500 100%);
  color: var(--deep-navy);
  font-family: "Passion One", Impact, sans-serif;
  font-size: 1.4rem;
  padding: 1.25rem 3rem;
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 184, 0, 0.6);
  background: linear-gradient(135deg, var(--cta-yellow-hover) 0%, #ffaa00 100%);
}

.btn-secondary {
  background: var(--giddy-blue);
  color: white;
  font-family: "Passion One", Impact, sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: #1a57f7;
}

.btn-secondary:active {
  background: #1649cf;
}

/* ===== Footer ===== */
.footer {
  background: var(--deep-navy);
  padding: 2.5rem;
  padding-bottom: 8rem;
}

.footer hr {
  border: none;
  border-top: 1px solid var(--gray-600);
  margin: 1.5rem 0;
}

.footer-responsible-gameplay {
  margin-bottom: 2rem;
  background-color: rgba(22, 23, 34, 0.6);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}

.footer-responsible-gameplay h5 {
  margin-bottom: 8px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-responsible-gameplay p {
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--gray-500);
}

.footer-rg-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-eighteen-plus {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
}

.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-middle nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.footer-title {
  flex-basis: 100%;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.footer-middle a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-middle a:hover {
  color: var(--giddy-blue);
}

.footer-terms-text {
  color: var(--gray-500);
}

.footer-terms-text p {
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.footer-terms-text a {
  text-decoration: underline;
  color: var(--white);
}

.footer-copyright {
  text-align: center;
  color: var(--gray-500);
}

.footer-copyright p {
  font-size: 11px;
  line-height: 1.4;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--deep-navy);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10001;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  z-index: 10002;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0, 186, 255, 0.3));
}

.modal-tagline {
  font-size: 0.9rem;
  color: var(--gray-1);
  margin: 0;
  line-height: 1.4;
}

.modal-iframe-container {
  width: 100%;
  min-height: 253px;
}

.modal-iframe-container iframe {
  border-radius: 8px;
}

/* ===== Animations ===== */
@keyframes pulseAttention {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6),
      0 0 30px rgba(255, 184, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.8),
      0 0 40px rgba(255, 184, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes floatCascade {
  0%,
  100% {
    transform: rotateY(-21deg) rotateX(19deg) scale(var(--cascade-scale))
      translateY(0);
  }
  50% {
    transform: rotateY(-21deg) rotateX(19deg) scale(var(--cascade-scale))
      translateY(-15px);
  }
}

@keyframes floatMoney {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rotate, 0deg));
  }
}

/* ===== Responsive - Tablet ===== */
@media (max-width: 1400px) {
  .games-cascade {
    --cascade-scale: 0.9;
  }
}

@media (max-width: 1200px) {
  .games-cascade {
    --cascade-scale: 0.8;
  }
}

@media (max-width: 968px) {
  .games-cascade {
    --cascade-scale: 0.65;
  }
  .rmb-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
}

/* ===== Responsive - Mobile ===== */
@media (max-width: 768px) {
  .marketing-header {
    padding: 1rem;
  }

  .marketing-header .logo {
    height: 32px;
  }

  .carousel-arrows {
    display: none;
  }

  .carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }

  .carousel-dot {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--white);
  }

  .carousel-slide {
    padding-top: 70px;
  }

  /* Hero slide mobile */
  .slide-hero-content {
    grid-template-columns: 1fr;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    min-height: auto;
    height: auto;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    order: 1;
    gap: 0.25rem;
  }

  .rmb-powered {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
  }

  .hero-right {
    order: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 280px;
  }

  .games-cascade {
    --cascade-scale: 0.4;
    left: 50%;
    top: 0;
    margin-left: -336px;
    margin-top: -192px;
  }

  .hero-logo {
    height: 50px;
    margin-bottom: 0.25rem;
  }

  .real-money-badge {
    margin: 1rem 0 0.5rem;
  }

  .rmb-label {
    font-size: 0.6rem;
    padding: 0.2em 0.6em;
    top: -10px;
  }

  .rmb-main {
    font-size: 2.2rem;
    padding: 0.12em 0.35em 0.08em;
    border-width: 2px;
    border-radius: 6px;
  }

  .rmb-banner {
    font-size: 0.28rem;
    padding: 0.25em 25px;
    top: 11px;
    right: -28px;
  }

  .hero-headline-emphasis {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtext {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .hero-disclaimer {
    font-size: 0.6rem;
    text-align: center;
  }

  .rewards-content .hero-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.55rem;
    text-align: center;
    width: 100%;
    padding: 0.5rem;
  }

  /* Rewards slide mobile */
  .slide-rewards {
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 20, 0.9) 0%,
        rgba(10, 14, 20, 0.7) 40%,
        rgba(10, 14, 20, 0.4) 70%,
        transparent 100%
      ),
      linear-gradient(
        to top,
        rgba(10, 14, 20, 0.95) 0%,
        rgba(10, 14, 20, 0.7) 30%,
        rgba(10, 14, 20, 0.3) 60%,
        transparent 100%
      ),
      url("images/slide2_bg.jpg") center/cover no-repeat;
  }

  .rewards-wrapper {
    transform: translateY(-65px);
    padding: 0.25rem 0.75rem 0.75rem;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    z-index: 3;
  }

  .rewards-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    gap: 0.5rem;
  }

  .rewards-headline {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    margin-bottom: 0.25rem;
  }

  .rewards-slot-image {
    right: -3%;
    max-width: 120%;
    max-height: 70vh;
    transform: translateY(3%);
  }

  .floating-money {
    width: 100px !important;
  }

  .rewards-subheadline {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .rewards-subheadline-accent {
    font-size: 1.2rem;
    margin-top: 0.25rem;
  }

  .rewards-logo-inline {
    height: 1em;
  }

  .rewards-checklist {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .reward-item {
    flex-direction: row;
    gap: 0.5rem;
  }

  .reward-item::before {
    font-size: 1em;
  }

  .reward-title {
    font-size: 1rem;
  }

  /* Action slide mobile */
  .action-content {
    padding: 1rem 0.75rem;
    gap: 1rem;
  }

  .action-from-team {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .clubs-logos {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .clubs-logo,
  .clubs-poker-logo {
    height: 32px;
  }

  .action-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
  }

  .btn-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  /* Footer mobile */
  .footer {
    padding: 1.5rem;
    padding-bottom: 6rem;
  }

  .footer-responsible-gameplay {
    padding: 1.5rem;
  }

  /* Modal mobile */
  .modal-content {
    padding: 1.5rem;
    max-width: 100%;
    border-radius: 12px;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .modal-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .modal-logo {
    height: 40px;
    margin-bottom: 0.5rem;
  }

  .modal-tagline {
    font-size: 0.8rem;
  }
}

@media (min-width: 640px) {
  .footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .footer-logo-social {
    justify-content: flex-start;
  }

  .footer-responsible-gameplay {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-middle {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-middle nav {
    flex-direction: column;
    gap: 12px;
    margin-right: 1rem;
  }

  .footer-title {
    flex-basis: auto;
    margin-bottom: 0;
  }

  .footer-terms-text {
    flex-basis: 50%;
  }
}
