html,
body {
  margin: 0;
  padding: 0;
  background: #1b3a1f;
}

@font-face {
  font-family: 'KolbiSans';
  src: url('/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Regular.woff2') format('woff2'),
       url('/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'KolbiSans';
  src: url('/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-SemiBold.woff2') format('woff2'),
       url('/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'KolbiSans';
  src: url('/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Bold.woff2') format('woff2'),
       url('/digitalDynamics/responsiveRoulette/styles/fonts/KolbiSans-Bold.woff') format('woff');
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --green-dark:   #163b16;
  --green-header: #1b3a1f;
  --green-accent: #32C332;
  --green-hover:  #28aa28;
  --green-border: #2a5a2a;
  --green-text:   #214021;
  --green-cta:    #1e7020;
}

#rr-landing-screen {
  background: var(--green-header);
}

.rr-landing,
.rr-landing * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rr-landing {
  font-family: 'KolbiSans', Arial, Helvetica, sans-serif;
  background: #fff;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: hidden;
}

.rr-landing .header {
  background: var(--green-header);
  text-align: center;
  padding:
    calc(40px + var(--rr-safe-area-top, 0px))
    calc(20px + var(--rr-safe-area-right, 0px))
    40px
    calc(20px + var(--rr-safe-area-left, 0px));
  line-height: 0;
}

.rr-landing .header img { display: block; height: 32px; margin: 0 auto; }

.rr-landing .hero {
  position: relative;
  background: url('/digitalDynamics/responsiveRoulette/images/background.png') center/cover;
  display: flex;
  align-items: center;
  min-height: 678.72px;
  overflow: hidden;
}

.rr-landing .hero-left {
  position: relative;
  z-index: 2;
  flex: 0 0 44%;
  padding: 44px 16px 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rr-landing .hero-left h1 {
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}

.rr-landing .hero-left h1 .gira { display: block; font-size: 4.8rem; line-height: 1.05; }
.rr-landing .hero-left h1 .gana { display: block; font-size: 8.5rem; line-height: 0.9; }

.rr-landing .hero-banner { display: block; width: 100%; max-width: 420px; height: auto; margin-bottom: 28px; }

.rr-landing .hero-left .sub {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
}

.rr-landing .hero-left .sub .white { color: #fff; }
.rr-landing .hero-left .sub .green { color: var(--green-text); }

.rr-landing .tribu-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  margin-top: 24px;
}

.rr-landing .tribu-badge img.tribu-icon { height: 72px; }
.rr-landing .tribu-badge img.tribu-text { height: 48px; }

.rr-landing .hero-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
}

.rr-landing .hero-right img {
  display: block;
  width: 100%;
  height: auto;
}

.rr-landing .cta-section {
  position: relative;
  background: var(--green-cta);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 120px;
  min-height: 500px;
}

.rr-landing .cta-wifi {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  max-height: 560px;
  pointer-events: none;
  opacity: 0.55;
}

.rr-landing .cta-wifi-left  { left: 0;  transform: translateY(-43%); }
.rr-landing .cta-wifi-right { right: 0; transform: translateY(-43%); }

.rr-landing .cta-body {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
}

.rr-landing .cta-body strong { font-weight: 500; }

.rr-landing .cta-hint {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-top: 28px;
  margin-bottom: 12px;
}

.rr-landing .btn-ruleta {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #7B3FA0;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  width: 260px;
  text-align: center;
  padding: 12px 0;
  border-radius: 32px;
  border: 1px solid #fff;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.18s;
  cursor: pointer;
  margin-top: 20px;
}

.rr-landing .btn-ruleta:hover { background: #6a3490; }

.rr-landing .info-section {
  background: #fff;
  text-align: center;
}

.rr-landing .info-text {
  padding: 64px 24px 48px;
  max-width: 860px;
  margin: 0 auto;
}

.rr-landing .info-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 32px;
}

.rr-landing .info-body {
  font-size: 20px;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.7;
}

.rr-landing .info-body p { margin-bottom: 20px; }
.rr-landing .info-body p:last-child { margin-bottom: 0; }
.rr-landing .info-body strong { font-weight: 700; }

.rr-landing .info-band {
  line-height: 0;
}

.rr-landing .info-band-bg {
  background: var(--green-accent) url('/digitalDynamics/responsiveRoulette/images/cancha_fut.png') top center / 100% auto no-repeat;
  padding: 200px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.rr-landing .info-band-title {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 28px;
}

.rr-landing .info-band-sub {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}

.rr-landing .play-cards {
  max-width: 1060px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 60px;
}

.rr-landing .play-card {
  background: var(--green-header);
  border-radius: 60px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0 0 0 48px;
  gap: 24px;
}

.rr-landing .play-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0;
}

.rr-landing .play-card-right {
  flex: 0 0 44%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.rr-landing .play-card-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-landing .play-card-right .play-btns {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 0;
}

.rr-landing .play-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rr-landing .play-number {
  font-size: 4.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.rr-landing .play-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1.15;
  text-align: left;
}

.rr-landing .play-body {
  flex: 1;
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
  text-align: justify;
}

.rr-landing .play-body p { margin-bottom: 14px; }
.rr-landing .play-body p:last-child { margin-bottom: 0; }
.rr-landing .play-body strong { font-weight: 700; }

.rr-landing .play-btns {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.rr-landing .play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #7B3FA0;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.18s;
  border: 1px solid #fff;
  white-space: nowrap;
}

.rr-landing .play-btn:hover { background: #6a3490; color: #fff; }
.rr-landing .play-btn svg { width: 14px; height: 14px; flex-shrink: 0; }


.rr-landing .promo-section {
  background: var(--green-header);
  position: relative;
  overflow-x: clip;
}

.rr-landing .promo-inner {
  display: flex;
  align-items: flex-end;
  padding: 0 52px 0;
  gap: 32px;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.rr-landing .promo-left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  padding: 48px 0;
  position: relative;
  z-index: 200;
}

.rr-landing .promo-heading {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.rr-landing .promo-heading-white {
  font-size: 4.6rem;
  color: #fff;
}

.rr-landing .promo-heading-green {
  font-size: 6.2rem;
  color: var(--green-accent);
}

.rr-landing .promo-text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 8px;
}

.rr-landing .promo-right {
  flex: 1;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 700px;
}

.rr-landing .promo-glow-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.rr-landing .promo-glow {
  position: absolute;
  width: 80%;
  height: 60%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #003E00, #1E8D1E);
  border-radius: 24px;
  filter: blur(60px);
}

.rr-landing .promo-right img {
  position: absolute;
  bottom: 0;
  right: -52px;
  z-index: 1;
  width: 150%;
  max-width: none;
  height: auto;
}

.rr-landing .promo-bottom {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 200;
  pointer-events: none;
}

.rr-landing .promo-bottom img {
  display: block;
  width: 100%;
  height: auto;
}

.rr-landing .footer-social {
  background: #fff;
  text-align: center;
  padding: 56px 20px;
}

.rr-landing .btn-reglamento {
  display: inline-block;
  background: #7B3FA0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 32px;
  text-decoration: none;
  margin-bottom: 32px;
  transition: background 0.18s;
}

.rr-landing .btn-reglamento:hover { background: #6a3490; color: #fff; }

.rr-landing .footer-social .connect {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.rr-landing .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rr-landing .social-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: #222;
}

.rr-landing .social-icon svg { width: 22px; height: 22px; }

.rr-landing .footer-legal {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}

.rr-landing .footer-legal a { color: #7B3FA0; text-decoration: underline; }

.rr-landing .footer-brand {
  background: var(--green-dark);
  border-top: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
}

.rr-landing .footer-brand img { height: 30px; }

/* ===== TABLET (≤1100px) ===== */
@media (max-width: 1100px) {
  .rr-landing .hero                        { min-height: 520px; }
  .rr-landing .hero-left                   { flex: 0 0 50%; padding: 32px 16px 32px 36px; }
  .rr-landing .hero-left h1 .gira          { font-size: 3.2rem; }
  .rr-landing .hero-left h1 .gana          { font-size: 5.6rem; }
  .rr-landing .hero-banner                 { max-width: 300px; margin-bottom: 20px; }
  .rr-landing .hero-right                  { width: 50%; }
  .rr-landing .tribu-badge img.tribu-icon  { height: 52px; }
  .rr-landing .tribu-badge img.tribu-text  { height: 30px; }

  .rr-landing .cta-section                 { padding: 60px; }
  .rr-landing .cta-wifi                    { max-height: 480px; opacity: 0.5; }
  .rr-landing .cta-wifi-left               { transform: translateY(-43%); }
  .rr-landing .cta-wifi-right              { transform: translateY(-43%); }
  .rr-landing .cta-body                    { font-size: 24px; }

  .rr-landing .play-card                   { border-radius: 44px; }
  .rr-landing .play-number                 { font-size: 3.4rem; }
  .rr-landing .play-title                  { font-size: 2rem; }
  .rr-landing .play-body                   { font-size: 15px; }

  .rr-landing .promo-heading-white         { font-size: 3.6rem; }
  .rr-landing .promo-heading-green         { font-size: 4.8rem; }
  .rr-landing .promo-section               { overflow: visible; }
  .rr-landing .promo-inner                 { flex-direction: column; padding: 48px 36px 0; gap: 0; min-height: auto; }
  .rr-landing .promo-left                  { flex: none; width: 100%; padding: 0 0 32px; }
  .rr-landing .promo-right                 { flex: none; width: 100%; min-height: 0; overflow: visible; }
  .rr-landing .promo-right img             { position: relative; bottom: auto; right: auto; width: 120%; max-width: none; display: block; margin-left: auto; margin-right: -36px; }
  .rr-landing .promo-bottom                { bottom: 0; z-index: 1000; }
}

/* ===== SMALL TABLET (≤900px) ===== */
@media (max-width: 900px) {
  .rr-landing .hero                        { min-height: 420px; }
  .rr-landing .hero-left                   { flex: 0 0 52%; padding: 28px 12px 28px 28px; }
  .rr-landing .hero-left h1 .gira          { font-size: 2.8rem; }
  .rr-landing .hero-left h1 .gana          { font-size: 4.8rem; }
  .rr-landing .hero-banner                 { max-width: 240px; margin-bottom: 16px; }
  .rr-landing .hero-right                  { width: 48%; }

  .rr-landing .cta-wifi                    { max-height: 340px; opacity: 0.45; }
  .rr-landing .cta-wifi-left               { transform: translateY(-43%); }
  .rr-landing .cta-wifi-right              { transform: translateY(-43%); }
  .rr-landing .cta-body                    { font-size: 22px; }

  .rr-landing .promo-section               { overflow: visible; }
  .rr-landing .promo-inner                 { flex-direction: column; padding: 48px 24px 0; gap: 0; min-height: auto; }
  .rr-landing .promo-left                  { flex: none; width: 100%; padding: 0 0 32px; }
  .rr-landing .promo-right                 { flex: none; width: 100%; min-height: 0; overflow: visible; }
  .rr-landing .promo-right img             { position: relative; bottom: auto; right: auto; width: 120%; max-width: none; display: block; margin-left: auto; margin-right: -20px; }
  .rr-landing .promo-bottom                { bottom: 0; z-index: 1000; }
}

/* ===== MOBILE (≤767px) ===== */
@media (max-width: 767px) {
  /* Header */
  .rr-landing .header                      { padding: calc(24px + var(--rr-safe-area-top, 0px)) calc(20px + var(--rr-safe-area-right, 0px)) 24px calc(20px + var(--rr-safe-area-left, 0px)); }

  /* Hero */
  .rr-landing .hero                        { min-height: 260px; }
  .rr-landing .hero-left                   { flex: 0 0 52%; padding: 24px 12px 24px 20px; }
  .rr-landing .hero-left h1 .gira          { font-size: 1.9rem; }
  .rr-landing .hero-left h1 .gana          { font-size: 3.4rem; }
  .rr-landing .hero-banner                 { max-width: 180px; margin-bottom: 12px; }
  .rr-landing .hero-right                  { width: 52%; }
  .rr-landing .tribu-badge                 { gap: 8px; margin-top: 12px; }
  .rr-landing .tribu-badge img.tribu-icon  { height: 36px; }
  .rr-landing .tribu-badge img.tribu-text  { height: 22px; }

  /* CTA */
  .rr-landing .cta-section                 { padding: 48px 20px; min-height: auto; }
  .rr-landing .cta-body                    { font-size: 18px; line-height: 1.5; max-width: 100%; }
  .rr-landing .cta-hint                    { font-size: 13px; }
  .rr-landing .cta-wifi                    { max-height: 180px; opacity: 0.5; }
  .rr-landing .cta-wifi-left               { transform: translateY(-43%); }
  .rr-landing .cta-wifi-right              { transform: translateY(-43%); }
  .rr-landing .btn-ruleta                  { width: 75%; max-width: 280px; font-size: 20px; padding: 14px 0; }

  /* Info */
  .rr-landing .info-text                   { padding: 48px 24px 36px; }
  .rr-landing .info-title                  { font-size: 2.2rem; }
  .rr-landing .info-body                   { font-size: 16px; }
  .rr-landing .info-body br                { display: none; }
  .rr-landing .info-band-bg                { padding: 60px 16px 40px; }
  .rr-landing .info-band-title             { font-size: 2.4rem; margin-bottom: 16px; }
  .rr-landing .info-band-sub               { font-size: 1.3rem; }

  /* Play cards */
  .rr-landing .play-cards                  { margin-top: 24px; gap: 20px; padding-bottom: 40px; }
  .rr-landing .play-card                   { flex-direction: column; padding: 0; border-radius: 28px; gap: 0; }
  .rr-landing .play-card-left              { padding: 48px 24px 40px; }
  .rr-landing .play-card-right             { flex: none; height: 320px; }
  .rr-landing .play-card-right img         { width: 100%; height: 100%; object-fit: cover; }
  .rr-landing .play-card-right .play-btns  { flex-wrap: nowrap; bottom: 12px; gap: 14px; z-index: 3; }
  .rr-landing .play-card-right::before,
  .rr-landing .play-card-right::after      { content: ''; position: absolute; left: 0; right: 0; height: 64px; z-index: 2; pointer-events: none; }
  .rr-landing .play-card-right::before     { top: 0; background: linear-gradient(to bottom, var(--green-header), transparent); }
  .rr-landing .play-card-right::after      { bottom: 0; background: linear-gradient(to top, var(--green-header), transparent); }
  .rr-landing .play-number                 { font-size: 2.4rem; }
  .rr-landing .play-title                  { font-size: 1.6rem; }
  .rr-landing .play-body                   { font-size: 14px; }
  .rr-landing .play-btns                   { margin-top: 16px; flex-wrap: wrap; }

  /* Promo */
  .rr-landing .promo-section               { overflow: visible; }
  .rr-landing .promo-inner                 { flex-direction: column; padding: 48px 24px 0; gap: 0; min-height: auto; }
  .rr-landing .promo-left                  { flex: none; width: 100%; padding: 0 0 32px; }
  .rr-landing .promo-right                 { flex: none; width: 100%; min-height: 0; overflow: visible; }
  .rr-landing .promo-right img             { position: relative; bottom: auto; right: auto; width: 120%; max-width: none; display: block; margin-left: auto; margin-right: -20px; }
  .rr-landing .promo-bottom                { bottom: 0; z-index: 1000; }
  .rr-landing .promo-heading-white         { font-size: 2.6rem; }
  .rr-landing .promo-heading-green         { font-size: 3.4rem; }
  .rr-landing .promo-text                  { font-size: 15px; }

  /* Footer */
  .rr-landing .footer-social               { padding: 40px 20px; }
  .rr-landing .footer-social .connect      { font-size: 1.3rem; }
  .rr-landing .social-icons                { flex-wrap: wrap; max-width: 240px; margin: 0 auto 20px; }
  .rr-landing .footer-legal                { font-size: 0.85rem; }
}

/* ===== SMALL PHONE (≤480px) ===== */
@media (max-width: 480px) {
  .rr-landing .cta-body                    { font-size: 16px; line-height: 1.5; }
  .rr-landing .cta-hint                    { font-size: 12px; }
  .rr-landing .btn-ruleta                  { font-size: 18px; width: 80%; }
}

/* ===== SMALL PHONE (≤360px) ===== */
@media (max-width: 360px) {
  .rr-landing .hero-left h1 .gira          { font-size: 2.2rem; }
  .rr-landing .hero-left h1 .gana          { font-size: 3.8rem; }
  .rr-landing .hero-banner                 { max-width: 210px; }
  .rr-landing .hero-right                  { width: 82%; }
  .rr-landing .cta-body                    { font-size: 15px; }
  .rr-landing .info-band-bg                { padding: 40px 12px 32px; }
  .rr-landing .play-btn                    { font-size: 9px; padding: 6px 8px; white-space: nowrap; }
  .rr-landing .promo-heading-white         { font-size: 2.2rem; }
  .rr-landing .promo-heading-green         { font-size: 2.8rem; }
}
