/* ================================================================
   REISE-ROULETTE – Dart Game Styles
   ================================================================ */

.rr-page {
  background: #0B0F14;
  color: #F5F3EF;
  min-height: 100vh;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.rr-hero {
  text-align: center;
  padding: 130px 24px 60px;
  position: relative;
  overflow: hidden;
}

.rr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cellipse cx='500' cy='250' rx='450' ry='220' fill='none' stroke='%23C9A84C' stroke-width='0.5' opacity='0.06'/%3E%3Cellipse cx='500' cy='250' rx='350' ry='170' fill='none' stroke='%23C9A84C' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}

.rr-hero__emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
}

.rr-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0 0 16px;
  color: #fff;
}

.rr-hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(245, 243, 239, 0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.rr-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C9A84C;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

@keyframes rrBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.rr-hero__scroll svg {
  animation: rrBounce 1.5s ease-in-out infinite;
}

/* ── Game Section ─────────────────────────────────────────────── */
.rr-game {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px 40px;
  position: relative;
}

.rr-game__container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #080b10;
  cursor: crosshair;
  touch-action: none;
  aspect-ratio: 1000 / 520;
}

.rr-game__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.rr-game__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rr-game__hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(245, 243, 239, 0.4);
  background: rgba(11, 15, 20, 0.8);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.rr-game__power {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.82rem;
  color: #C9A84C;
  background: rgba(11, 15, 20, 0.85);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  opacity: 0;
  transition: opacity 0.2s;
}

.rr-game__power--visible {
  opacity: 1;
}

/* ── Result Card ──────────────────────────────────────────────── */
.rr-result {
  max-width: 460px;
  margin: 32px auto 0;
  background: rgba(10, 12, 16, 0.94);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  display: none;
}

.rr-result--visible {
  display: block;
  animation: rrSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes rrSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.rr-result__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
}

@keyframes rrPopBounce {
  0% { transform: scale(0) rotate(-5deg); opacity: 0; }
  60% { transform: scale(1.12) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.rr-result__headline--animate {
  animation: rrPopBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.rr-result__desc {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 243, 239, 0.6);
  margin: 0 0 24px;
  line-height: 1.6;
}

.rr-result__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.rr-result__stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: left;
}

.rr-result__stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(245, 243, 239, 0.4);
  display: block;
  margin-bottom: 3px;
}

.rr-result__stat-value {
  font-size: 0.85rem;
  color: #F5F3EF;
}

.rr-result__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.rr-result__btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: 'Inter', sans-serif;
}

.rr-result__btn--gold {
  background: linear-gradient(135deg, #C9A84C, #D4B96A);
  color: #0B0F14;
}

.rr-result__btn--gold:hover {
  filter: brightness(1.1);
}

.rr-result__btn--outline {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #C9A84C;
}

.rr-result__btn--outline:hover {
  background: rgba(201, 168, 76, 0.08);
}

/* Share */
.rr-share {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.rr-share__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.2s;
}

.rr-share__btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
}

.rr-share__btn--wa { color: #25D366; }
.rr-share__btn--fb { color: #1877F2; }
.rr-share__btn--copy { color: #C9A84C; }

/* History */
.rr-history {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(245, 243, 239, 0.4);
}

.rr-history span {
  margin: 0 4px;
}

/* ── How it works ─────────────────────────────────────────────── */
.rr-howto {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.rr-howto__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px;
  color: #fff;
}

.rr-howto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.rr-howto__step {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.rr-howto__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.rr-howto__step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
}

.rr-howto__step p {
  font-size: 0.85rem;
  color: rgba(245, 243, 239, 0.55);
  line-height: 1.5;
  margin: 0;
}

/* ── Destinations Grid ────────────────────────────────────────── */
.rr-destinations {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.rr-destinations__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 32px;
  color: #fff;
}

.rr-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rr-dest-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.25s;
}

.rr-dest-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.rr-dest-card__emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.rr-dest-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 2px;
}

.rr-dest-card__country {
  font-size: 0.72rem;
  color: rgba(245, 243, 239, 0.4);
  margin: 0 0 8px;
}

.rr-dest-card__meta {
  font-size: 0.7rem;
  color: rgba(245, 243, 239, 0.35);
  line-height: 1.5;
}

/* ── CTA Section ──────────────────────────────────────────────── */
.rr-cta {
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 600px;
  margin: 0 auto;
}

.rr-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px;
}

.rr-cta__sub {
  font-size: 0.92rem;
  color: rgba(245, 243, 239, 0.55);
  margin: 0 0 28px;
  line-height: 1.6;
}

.rr-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.rr-cta__buttons .rr-result__btn {
  flex: 0 1 auto;
  padding: 14px 28px;
}

.rr-cta__trust {
  font-size: 0.75rem;
  color: rgba(245, 243, 239, 0.35);
}

.rr-cta__trust span {
  margin: 0 6px;
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .rr-hero { padding: 110px 16px 40px; }
  .rr-howto__grid { grid-template-columns: 1fr; gap: 16px; }
  .rr-dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rr-result__grid { grid-template-columns: 1fr 1fr; }
  .rr-result__actions { flex-direction: column; }
  .rr-game__container { border-radius: 8px; }
  .rr-result { margin: 20px 0 0; padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rr-hero__scroll svg,
  .rr-result__headline--animate {
    animation: none;
  }
}
