:root {
  --rb-green: #006847;
  --rb-dark-green: #005236;
  --rb-emerald: #26a269;
  --rb-gold: #c9a23f;
  --rb-text: #0f1f17;
  --rb-muted: #53645b;
  --rb-bg: #f2f6f3;
  --rb-card: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--rb-text);
  background: var(--rb-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  letter-spacing: -0.01em;
}

.betis-theme,
.rb-theme {
  background: radial-gradient(
      1200px 820px at 60% -20%,
      rgba(0, 104, 71, 0.12),
      transparent 58%
    ),
    var(--rb-bg);
}

.landing {
  background: radial-gradient(
        1400px 900px at 60% -25%,
        rgba(0, 104, 71, 0.15),
        transparent 60%
      )
      no-repeat,
    var(--rb-bg);
}

.landing-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 64px;
}

.landing-card {
  background: linear-gradient(
        150deg,
        rgba(255, 255, 255, 0.92),
        rgba(224, 246, 237, 0.95)
      )
      padding-box,
    linear-gradient(140deg, rgba(201, 162, 63, 0.45), rgba(0, 104, 71, 0))
      border-box;
  border: 1px solid transparent;
  max-width: 640px;
  width: 100%;
  padding: 48px 52px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 56, 32, 0.28);
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.landing-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rb-dark-green);
}

.landing-logo img {
  width: 48px;
  height: 48px;
}

.landing-card h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  color: var(--rb-dark-green);
  text-wrap: balance;
}

.landing-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--rb-muted);
}

.landing-photo {
  border-radius: 26px;
  overflow: hidden;
  border: 3px solid rgba(0, 104, 71, 0.2);
  box-shadow: 0 20px 60px rgba(0, 56, 32, 0.25);
}

.landing-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.landing-cta {
  align-self: center;
  padding: 18px 42px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--rb-gold), #f4d27a);
  color: var(--rb-dark-green);
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(201, 162, 63, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.landing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(201, 162, 63, 0.45);
}

.landing-cta:active {
  transform: translateY(0) scale(0.97);
}

.footer {
  margin-top: auto;
  padding: 36px 24px 28px;
  background: #0f1d17;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  text-align: center;
}

.footer-inner a {
  color: var(--rb-gold);
  text-decoration: none;
  font-weight: 600;
}

.container {
  flex: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 720px) {
  .landing-main {
    padding: 32px 16px 48px;
  }

  .landing-card {
    padding: 36px 28px;
    gap: 22px;
  }

  .landing-card h1 {
    font-size: 32px;
  }

  .landing-card p {
    font-size: 16px;
  }

  .landing-cta {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .landing-card {
    padding: 32px 22px;
  }

  .landing-card h1 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
