@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Identity: Rating Pulse */
  --rp-primary: #0f172a;
  --rp-accent: #2dd4bf;    /* Neon Pulse Teal */
  --rp-secondary: #6366f1; /* Electric Indigo */
  --rp-success: #10b981;
  --rp-warning: #f59e0b;
  --rp-danger: #ef4444;
  
  /* Gradients */
  --rp-gradient-pulse: linear-gradient(135deg, var(--rp-accent) 0%, var(--rp-secondary) 100%);
  --rp-gradient-dark: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  
  /* Category Primary Colors */
  --rp-casino-light: #ec4899;
  --rp-casino-dark: #be185d;
  --rp-casino-glow: rgba(236, 72, 153, 0.3);
  
  --rp-sports-light: #06b6d4;
  --rp-sports-dark: #0e7490;
  --rp-sports-glow: rgba(6, 182, 212, 0.3);

  /* Neutrals Extra */
  --rp-bg: #f8fafc;
  --rp-surface: #ffffff;
  --rp-text-main: #1e293b;
  --rp-text-muted: #64748b;
  --rp-border: #e2e8f0;
  --rp-border-strong: #cbd5e1;
  
  /* Shadows */
  --rp-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --rp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --rp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --rp-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.15);
  
  /* Typography */
  --rp-font: 'Outfit', 'DM Sans', system-ui, sans-serif;
  
  /* Radius */
  --rp-radius-sm: 6px;
  --rp-radius-md: 10px;
  --rp-radius-lg: 16px;
  --rp-radius-full: 9999px;

  /* Spacing System */
  --rp-space-xs: 4px;
  --rp-space-sm: 8px;
  --rp-space-md: 16px;
  --rp-space-lg: 24px;
  --rp-space-xl: 32px;
  --rp-space-xxl: 64px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulseFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseRating {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(45, 212, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

@keyframes pulseShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pulsePulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ========================================
   HERO SECTION
   ======================================== */
body {
  font-family: var(--rp-font);
}

.rp-hero {
  position: relative;
  overflow: hidden;
  padding: 100px var(--rp-space-md) 80px;
  background: var(--rp-primary) url('hero-bg.png') no-repeat center center / cover;
  border-radius: var(--rp-radius-lg);
  margin-bottom: var(--rp-space-lg);
  text-align: center;
  font-family: var(--rp-font);
  animation: pulseFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: var(--rp-shadow-xl);
}

.rp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  pointer-events: none;
  z-index: 0;
}

.rp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rp-accent), var(--rp-warning), var(--rp-secondary));
  z-index: 1;
}

.rp-hero .rp-wrap {
  position: relative;
  z-index: 1;
}

.rp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.rp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: var(--rp-radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.rp-hero-badge--age {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.rp-hero-badge--geo {
  background: rgba(255, 193, 7, 0.12);
  color: var(--rp-warning);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.rp-hero-badge--reg {
  background: rgba(0, 188, 212, 0.12);
  color: var(--rp-sports-light);
  border: 1px solid rgba(0, 188, 212, 0.25);
}

.rp-hero-title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.rp-hero-accent {
  display: inline-flex;
  width: auto;
  background: linear-gradient(135deg, var(--rp-warning) 0%, #ffca28 50%, var(--rp-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rp-hero-tagline {
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2px;
}

.rp-hero-desc {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   BASE LAYOUT
   ======================================== */

.rp-section {
  padding: var(--rp-space-xxl) 0;
  font-family: var(--rp-font);
}

.rp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--rp-space-md);
}

/* ========================================
   DISCLAIMER BANNER
   ======================================== */

.rp-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: var(--rp-space-md);
  padding: var(--rp-space-md) var(--rp-space-lg);
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border: 1px solid #ffca28;
  border-left: 4px solid #ff9800;
  border-radius: var(--rp-radius-md);
  margin-bottom: var(--rp-space-lg);
  animation: pulseFadeUp 0.5s ease;
}

.rp-disclaimer-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 10px;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--rp-radius-sm);
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.rp-disclaimer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #5d4037;
}

.rp-disclaimer strong {
  color: #3e2723;
  font-weight: 700;
}

/* ========================================
   OPERATOR CARDS
   ======================================== */

.rp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rp-space-lg);
}

@media (max-width: 800px) {
  .rp-cards { grid-template-columns: 1fr; }
}

.rp-card {
  position: relative;
  border-radius: var(--rp-radius-lg);
  overflow: visible;
  animation: pulseFadeUp 0.6s ease both;
}

.rp-card:nth-child(2) { animation-delay: 0.15s; }

.rp-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--rp-radius-lg);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rp-card:hover .rp-card-glow { opacity: 1; }

.rp-card-glow--pink {
  background: linear-gradient(135deg, var(--rp-accent) 0%, var(--rp-secondary) 50%, var(--rp-accent) 100%);
  filter: blur(14px);
  opacity: 0.15 !important;
}

.rp-card-glow--blue {
  background: linear-gradient(135deg, var(--rp-secondary) 0%, var(--rp-accent) 50%, var(--rp-secondary) 100%);
  filter: blur(14px);
  opacity: 0.15 !important;
}

.rp-card:hover .rp-card-glow { opacity: 0.3 !important; }

.rp-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--rp-space-xl);;
  background: var(--rp-surface);
  border: 1px solid var(--rp-border-strong);
  border-radius: var(--rp-radius-lg);
  box-shadow: var(--rp-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rp-card--casino .rp-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
  border-color: var(--rp-casino-light);
}

.rp-card--sports .rp-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
  border-color: var(--rp-sports-light);
}

/* Card Top Section */
.rp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rp-space-md);
  margin-bottom: var(--rp-space-md);
}

.rp-logo-box {
  flex: 1;
  min-width: 0;
  padding: var(--rp-space-lg);
  background: #000000;
  border-radius: var(--rp-radius-md);
}

.rp-logo {
  display: block;
  width: 100%;
  height: 44px;
  object-fit: contain;
}

/* Chips */
.rp-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--rp-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rp-chip-icon { font-size: 15px; }

.rp-chip--casino {
  background: linear-gradient(135deg, var(--rp-casino-light) 0%, var(--rp-accent) 100%);
  color: white;
  box-shadow: 0 4px 12px var(--rp-casino-glow);
}

.rp-chip--sports {
  background: linear-gradient(135deg, var(--rp-sports-light) 0%, var(--rp-secondary) 100%);
  color: white;
  box-shadow: 0 4px 12px var(--rp-sports-glow);
}

/* Card Content */
.rp-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--rp-space-sm);
}

.rp-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--rp-primary);
}

/* Legal Info Box */
.rp-legal-info {
  display: flex;
  align-items: flex-start;
  gap: var(--rp-space-sm);
  padding: 10px var(--rp-space-md);
  background: var(--rp-bg);
  border-radius: var(--rp-radius-sm);
  border-left: 3px solid var(--rp-success);
  margin-top: var(--rp-space-xs);
}

.rp-legal-icon { flex-shrink: 0; font-size: 16px; }

.rp-legal-info p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--rp-text-main);
}

.rp-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.rp-score-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rp-text-muted);
}

.rp-score-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--rp-accent);
  padding: 2px 8px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: var(--rp-radius-sm);
  animation: pulseRating 2s infinite;
}

.rp-score-bar {
  height: 6px;
  background: var(--rp-border);
  border-radius: var(--rp-radius-full);
  margin-bottom: var(--rp-space-md);
  overflow: hidden;
}

.rp-score-fill {
  height: 100%;
  background: var(--rp-gradient-pulse);
  border-radius: var(--rp-radius-full);
  box-shadow: 0 0 10px var(--rp-accent);
}

/* Tip Text */
.rp-tip {
  margin: var(--rp-space-sm) 0 0;
  padding: 10px var(--rp-space-md);
  font-size: 12px;
  line-height: 1.6;
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: var(--rp-radius-sm);
  border-left: 3px solid var(--rp-success);
}

/* CTA Section */
.rp-cta {
  margin-top: auto;
  padding-top: var(--rp-space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--rp-space-sm);
}

/* ========================================
   BUTTONS
   ======================================== */

.rp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--rp-radius-md);
  font-family: var(--rp-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--rp-gradient-pulse);
}

.rp-btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.rp-btn:hover .rp-btn-arrow { transform: translateX(4px); }

.rp-btn--casino {
  background: linear-gradient(135deg, var(--rp-accent) 0%, var(--rp-casino-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px var(--rp-casino-glow);
}

.rp-btn--casino:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.4);
}

.rp-btn--sports {
  background: linear-gradient(135deg, var(--rp-secondary) 0%, var(--rp-sports-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px var(--rp-sports-glow);
}

.rp-btn--sports:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
}

.rp-btn:focus {
  outline: 3px solid rgba(26, 26, 46, 0.2);
  outline-offset: 2px;
}

/* Terms */
.rp-terms {
  font-size: 11px;
  color: var(--rp-text-muted);
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.rp-block {
  margin-top: var(--rp-space-xxl);
  padding: var(--rp-space-xxl) var(--rp-space-xl);
  background: var(--rp-surface);
  border: 1px solid var(--rp-border-strong);
  border-radius: var(--rp-radius-lg);
  box-shadow: var(--rp-shadow-md);
  animation: pulseFadeUp 0.6s ease both;
}

.rp-block--criteria {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-color: #e0e0e0;
}

.rp-block--help {
  background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #64b5f6;
}

/* ========================================
   ABOUT SECTION (Dark Theme)
   ======================================== */

.rp-block--about {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #16213e 100%);
  border-color: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.rp-block--about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.rp-h2--light {
  color: white;
}

.rp-h2--light::after {
  background: linear-gradient(90deg, var(--rp-warning), var(--rp-accent));
}

.rp-text--light {
  color: rgba(255, 255, 255, 0.55) !important;
}

.rp-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--rp-space-md);
  margin-top: var(--rp-space-lg);
  position: relative;
  z-index: 1;
}

.rp-about-card {
  padding: var(--rp-space-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rp-radius-lg);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.rp-about-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.rp-about-icon {
  font-size: 28px;
  margin-bottom: var(--rp-space-sm);
  display: block;
}

.rp-about-title {
  margin: 0 0 var(--rp-space-sm);
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.rp-about-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.rp-about-text a {
  color: var(--rp-sports-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 188, 212, 0.3);
  transition: border-color 0.2s ease;
}

.rp-about-text a:hover {
  border-bottom-color: var(--rp-sports-light);
}

.rp-about-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rp-space-md);
  justify-content: center;
  margin-top: var(--rp-space-lg);
  padding-top: var(--rp-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.rp-about-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rp-radius-full);
  transition: all 0.2s ease;
}

.rp-about-links a:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.rp-h2 {
  margin: 0 0 var(--rp-space-md);
  font-size: 26px;
  font-weight: 800;
  color: var(--rp-primary);
  text-align: center;
  position: relative;
}

.rp-h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rp-accent), var(--rp-secondary));
  margin: 12px auto 0;
  border-radius: var(--rp-radius-full);
}

.rp-h3 {
  margin: 0 0 var(--rp-space-sm);
  font-size: 16px;
  font-weight: 700;
  color: var(--rp-primary);
}

.rp-text {
  margin: var(--rp-space-sm) 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--rp-text-main);
}

.rp-text--intro {
  max-width: 760px;
  margin: 0 auto var(--rp-space-lg);
  text-align: center;
  color: var(--rp-text-muted);
}

.rp-text--tip {
  font-size: 12px;
  color: var(--rp-text-muted);
  font-style: italic;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.rp-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--rp-space-md);
  margin-top: var(--rp-space-lg);
}

.rp-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--rp-space-md);
  margin-top: var(--rp-space-lg);
}

/* ========================================
   MINI CARDS
   ======================================== */

.rp-mini-card {
  padding: var(--rp-space-lg);
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rp-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rp-shadow-lg);
  border-color: var(--rp-border-strong);
}

.rp-mini-card .rp-text { margin-top: var(--rp-space-sm); }

.rp-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--rp-space-sm);
  font-size: 24px;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-radius: var(--rp-radius-md);
}

/* ========================================
   CALLOUT
   ======================================== */

.rp-callout {
  margin-top: var(--rp-space-lg);
  padding: var(--rp-space-md) var(--rp-space-lg);
  background: linear-gradient(135deg, #1e293b 0%, #16213e 100%);
  border-radius: var(--rp-radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rp-space-md);
}

.rp-callout-badge {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--rp-warning);
  color: #1e293b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--rp-radius-full);
}

.rp-callout-text {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   HELP SECTION
   ======================================== */

.rp-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--rp-space-md);
  margin-top: var(--rp-space-lg);
}

.rp-help-item {
  display: flex;
  flex-direction: column;
  gap: var(--rp-space-md);
  padding: var(--rp-space-lg);
  background: white;
  border-radius: var(--rp-radius-lg);
  box-shadow: var(--rp-shadow-md);
  border: 1px solid var(--rp-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rp-help-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--rp-shadow-lg);
}

.rp-help-top {
  display: flex;
  align-items: center;
  gap: var(--rp-space-md);
}

.rp-help-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 26px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: var(--rp-radius-md);
}

.rp-help-content { flex: 1; min-width: 0; }

.rp-help-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--rp-primary);
}

.rp-help-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--rp-text-muted);
}

.rp-help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 16px;
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--rp-radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rp-help-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.rp-help-link--phone {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.rp-help-link--phone:hover {
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.rp-footer {
  background: var(--rp-primary);
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 64px 16px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--rp-font);
}

.rp-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.rp-accent {
  height: 4px;
  width: 100px;
  border-radius: var(--rp-radius-full);
  background: var(--rp-gradient-pulse);
  margin: 0 0 24px;
}

.rp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
}

.rp-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rp-radius-lg);
  padding: 16px;
  box-shadow: var(--rp-shadow-lg);
  flex: 1 1 260px;
  min-width: 220px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulseFadeUp 0.5s ease both;
}

.rp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rp-shadow-xl);
}

.rp-card--about { flex: 1 1 300px; min-width: 260px; }
.rp-card--links { flex: 1 1 300px; min-width: 260px; }
.rp-card--rg { flex: 1 1 340px; min-width: 280px; border-width: 2px; }
.rp-card--contact { flex: 1 1 220px; min-width: 200px; }

.rp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.rp-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--rp-accent);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
  flex: 0 0 auto;
}

.rp-title { font-size: 17px; font-weight: 800; }
.rp-head { font-size: 13px; font-weight: 800; margin: 0 0 10px; font-family: sans-serif; color: #fff;}
.rp-head--tight { margin-bottom: 0; }
.rp-text { margin: 0 0 10px; font-size: 13px; line-height: 1.7; }
.rp-text--tight { margin-bottom: 0; }
.rp-note { margin: 8px 0 0; font-size: 12px; line-height: 1.6; opacity: 0.9; }

.rp-highlight--gold { color: var(--rp-warning); font-weight: 800; }
.rp-highlight--blue { color: var(--rp-secondary); font-weight: 800; }
.rp-highlight--pink { color: var(--rp-accent); font-weight: 800; }

.rp-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.rp-links > li { list-style: none; margin: 0; padding: 0; }
.rp-links-sep { margin-top: 6px; }
.rp-links-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rp-links-label:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--rp-radius-full);
  background: var(--rp-accent);
  display: inline-block;
}

.rp-link {
  text-decoration: none;
  font-weight: 800;
  padding-bottom: 1px;
  border-bottom: 2px solid transparent;
  display: inline-block;
  transition: transform 0.15s ease;
}

.rp-link--blue { color: var(--rp-accent); border-bottom-color: rgba(45, 212, 191, 0.4); }
.rp-link--gold { color: #fbbf24; border-bottom-color: rgba(251, 191, 36, 0.4); }
.rp-link--pink { color: var(--rp-secondary); border-bottom-color: rgba(99, 102, 241, 0.4); }

.rp-link:hover { transform: translateY(-1px); }
.rp-link:focus { outline: 2px solid rgba(255, 255, 255, 0.6); outline-offset: 2px; border-radius: 4px; }

.rp-rg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
}

.rp-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: var(--rp-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--rp-warning);
  background: rgba(255, 193, 7, 0.1);
}

.rp-rg-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--rp-radius-md);
  padding: 12px;
}

.rp-bullets { list-style: none; margin: 8px 0 0; padding: 0; font-size: 13px; line-height: 1.7; }
.rp-bullets > li { list-style: none; margin: 6px 0; padding-left: 14px; position: relative; }
.rp-bullets > li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: var(--rp-radius-full);
  background: var(--rp-accent);
  position: absolute;
  left: 0;
  top: 0.6em;
  box-shadow: 0 0 8px var(--rp-accent);
}

.rp-mail {
  color: white;
  background: var(--rp-gradient-pulse);
  font-weight: 800;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: var(--rp-radius-md);
  display: inline-block;
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.25);
  transition: all 0.3s ease;
}

.rp-mail:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.35);
}

.rp-mail:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.rp-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.rp-bottom-item {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.85;
}

.rp-footer .rp-text {
  color: rgba(255, 255, 255, 0.9);
}

.rp-text-list {
  list-style: none;
  margin: var(--rp-space-md) 0;
  padding: 0;
}

.rp-text-list li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--rp-text-main);
}

.rp-text-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rp-accent);
  font-weight: 800;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 640px) {
  .rp-hero {
    padding: 64px var(--rp-space-lg);
  }
  
  .rp-hero-title {
    font-size: 32px;
  }
  
  .rp-hero-tagline {
    font-size: 15px;
  }
  
  .rp-hero-desc {
    font-size: 12px;
  }
  
  .rp-h2 { font-size: 22px; }
  .rp-block { padding: var(--rp-space-lg); }
  .rp-grid-3, .rp-grid-2 { grid-template-columns: 1fr; }
  .rp-disclaimer { flex-direction: column; gap: var(--rp-space-sm); }
  .rp-card-inner { padding: var(--rp-space-lg); }
  .rp-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .rp-btn { width: 100%; justify-content: center; }
  
  .rp-about-grid { grid-template-columns: 1fr; }
  .rp-about-links { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .rp-hero-title {
    font-size: 28px;
  }
  
  .rp-hero-badges {
    gap: 6px;
  }
  
  .rp-hero-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
}