/* Legends ProCrick Foundation - Bold Editorial Charity Lottery */

:root {
  /* Professional Healthcare Color Palette */
  --navy: #1a365d;
  --navy-light: #2d3748;
  --navy-dark: #0f1419;
  --sand: #f7fafc;
  --sand-light: #ffffff;
  --sand-dark: #edf2f7;

  /* Healthcare Accents */
  --teal: #319795;
  --teal-light: #4fd1c9;
  --teal-dark: #2c7a7b;
  --blue: #3182ce;
  --blue-light: #63b3ed;
  --blue-dark: #2c5282;
  --emerald: #38a169;
  --emerald-light: #68d391;
  --emerald-dark: #2f855a;

  /* Editorial Graphics */
  --line-weight: 2px;
  --shape-size: 80px;
  --text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

  /* Typography Scale */
  --font-display: 'Impact', 'Helvetica Neue Condensed Bold', system-ui, sans-serif;
  --font-primary: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', monospace;

  /* Spacing & Layout */
  --container-max: 1400px;
  --section-spacing: 8rem;
  --border-radius: 0px; /* Sharp, editorial edges */
  --border-radius-soft: 8px;

  /* Shadows & Effects */
  --shadow-hard: 8px 8px 0px rgba(255, 23, 68, 0.3);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.8);

  /* Animations */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --header-height: 88px;
  --header-height-mobile: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--navy);
  background: var(--sand);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding-top: var(--header-height);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, transparent 49%, var(--teal) 49%, var(--teal) 51%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, var(--blue) 49%, var(--blue) 51%, transparent 51%);
  background-size: 60px 60px;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.rgv-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}

/* Editorial Lines & Graphics */
.rgv-editorial-line {
  position: absolute;
  background: var(--teal);
  z-index: 1;
}

.rgv-editorial-line.vertical {
  width: var(--line-weight);
  height: 100vh;
  top: 0;
}

.rgv-editorial-line.horizontal {
  height: var(--line-weight);
  width: 100vw;
  left: 0;
}

.rgv-editorial-shape {
  position: absolute;
  border: var(--line-weight) solid var(--cyan);
  z-index: 1;
}

.rgv-editorial-number {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900;
  color: rgba(255, 23, 68, 0.1);
  line-height: 0.8;
  z-index: 0;
  pointer-events: none;
}

.rgv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Bold Editorial Header */
.rgv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 4px solid var(--teal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rgv-header-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.rgv-logo {
  display: block;
  position: relative;
  pointer-events: auto;
  z-index: 10;
}

.rgv-logo img {
  height: 60px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.rgv-logo:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(180deg) brightness(1.2);
}

.rgv-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  pointer-events: none;
}

.rgv-nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.rgv-nav-menu a {
  color: var(--sand);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color var(--transition-fast), transform var(--transition-fast);
  z-index: 1;
}

/* BACKGROUND BLOCK — BELOW TEXT */
.rgv-nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
  z-index: -1;
  pointer-events: none;
}

/* UNDERLINE */
.rgv-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition-fast);
  pointer-events: none;
}

/* HOVER / FOCUS */
.rgv-nav-menu a:hover,
.rgv-nav-menu a:focus {
  color: #ffffff;
  transform: translateY(-2px);
}

.rgv-nav-menu a:hover::before,
.rgv-nav-menu a:focus::before {
  transform: scaleX(1);
}

.rgv-nav-menu a:hover::after,
.rgv-nav-menu a:focus::after {
  width: 100%;
}

/* ACTIVE STATE */
.rgv-nav-menu a.active {
  color: #ffffff;
}

.rgv-nav-menu a.active::before {
  transform: scaleX(1);
}

.rgv-nav-menu a.active::after {
  width: 100%;
}

.rgv-mobile-menu-toggle {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--sand);
  border-radius: 4px;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--sand);
  font-size: 1.5rem;
  pointer-events: auto;
  z-index: 50;
  position: relative;
  transition: all 0.3s ease;
}

.rgv-mobile-menu-toggle:hover,
.rgv-mobile-menu-toggle:focus,
.rgv-mobile-menu-toggle.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* Hero Section */
/* Editorial Hero - Campaign Poster Style */
.rgv-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  clip-path: inset(0);
}

.rgv-hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.rgv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/images/help.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.9;
  z-index: 1;
}

.rgv-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(26, 54, 93, 0.4) 50%, rgba(26, 54, 93, 0.6) 100%),
    linear-gradient(45deg, rgba(49, 151, 149, 0.1) 0%, rgba(49, 130, 206, 0.1) 100%);
  z-index: 2;
}

/* Editorial Graphics Overlay */
.rgv-hero-number {
  position: absolute;
  top: 10%;
  right: 10%;
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 25rem);
  font-weight: 900;
  color: rgba(49, 151, 149, 0.1);
  line-height: 0.8;
  z-index: 3;
  transform: rotate(-15deg);
}

.rgv-hero-line-1 {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  height: var(--line-weight);
  background: var(--teal);
  z-index: 3;
  transform: rotate(-2deg);
  max-width: 120vw;
  margin-left: -10vw;
}

.rgv-hero-line-2 {
  position: absolute;
  bottom: 30%;
  right: 0;
  width: 60%;
  height: var(--line-weight);
  background: var(--blue);
  z-index: 3;
  transform: rotate(3deg);
  max-width: 80vw;
}

.rgv-hero-shape {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: var(--shape-size);
  height: var(--shape-size);
  border: var(--line-weight) solid var(--emerald);
  background: rgba(56, 161, 105, 0.1);
  transform: rotate(45deg);
  z-index: 3;
}

.rgv-hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  padding: 8rem 2rem 6rem;
  color: white;
}

.rgv-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: var(--text-shadow);
  position: relative;
}

.rgv-hero-content h1::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--teal);
  z-index: -1;
  transform: rotate(-1deg);
}

.rgv-hero-content p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 500px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}

.rgv-hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.rgv-cta-button {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 1.5rem 3rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--coral);
  position: relative;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-hard);
  z-index: 5;
}

.rgv-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
  z-index: -1;
}

.rgv-cta-button:hover {
  color: var(--teal);
  box-shadow: 12px 12px 0px rgba(49, 151, 149, 0.4);
  transform: translate(-4px, -4px);
}

.rgv-cta-button:hover::before {
  transform: scaleX(1);
}

.rgv-trust-indicators {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.rgv-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.rgv-trust-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
}

/* Campaign Info Section */
.rgv-campaign-info {
  padding: 4rem 0;
  background: white;
}

.rgv-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.rgv-info-card {
  background: var(--sand);
  padding: 3rem;
  border: 3px solid var(--navy);
  position: relative;
  transition: all var(--transition-fast);
}

.rgv-info-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--teal);
  z-index: -1;
  transition: all var(--transition-fast);
}

.rgv-info-card::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  border: 2px solid var(--cyan);
  background: var(--mint);
  transform: rotate(45deg);
}

.rgv-info-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--coral);
}

.rgv-info-card:hover::before {
  background: var(--blue);
}

.rgv-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
}

.rgv-info-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--mint);
}

.rgv-info-card p {
  color: var(--navy);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1rem;
}

.rgv-info-card strong {
  color: var(--coral);
  font-weight: 700;
}

/* Legal Notice */
.rgv-legal-notice {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--off-white) 100%);
  border-top: 3px solid var(--gradient-primary);
}

.rgv-notice-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rgv-notice-content h4 {
  color: var(--navy);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
}

.rgv-notice-content h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.rgv-notice-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rgv-notice-text p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--cyan);
}

.rgv-notice-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* Timeline */
.rgv-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rgv-timeline-item {
  padding: 2.5rem;
  background: var(--sand);
  border: 3px solid var(--navy);
  position: relative;
  transition: all var(--transition-fast);
}

.rgv-timeline-item::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--blue);
  z-index: -1;
  transition: all var(--transition-fast);
}

.rgv-timeline-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 12px;
  height: 12px;
  background: var(--mint);
  border: 2px solid var(--navy);
  transform: translateY(-50%) rotate(45deg);
}

.rgv-timeline-item:hover {
  transform: translate(4px, -4px);
  box-shadow: -4px 4px 0px var(--coral);
}

.rgv-timeline-item:hover::before {
  background: var(--mint);
}

.rgv-timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.rgv-timeline-item p {
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 500;
  padding-left: 2rem;
}

.rgv-timeline-item strong {
  color: var(--coral);
  font-weight: 700;
}

/* Rules */
.rgv-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rgv-rules-section {
  background: var(--sand);
  padding: 2.5rem;
  border: 3px solid var(--navy);
  position: relative;
  transition: all var(--transition-fast);
}

.rgv-rules-section::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--teal);
  z-index: -1;
  transition: all var(--transition-fast);
}

.rgv-rules-section::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 16px;
  height: 16px;
  border: 2px solid var(--mint);
  background: var(--blue);
  transform: rotate(45deg);
}

.rgv-rules-section:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px var(--cyan);
}

.rgv-rules-section:hover::before {
  background: var(--mint);
}

.rgv-rules-section h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.rgv-rules-section ul {
  padding-left: 2rem;
  list-style: none;
}

.rgv-rules-section li {
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
}

.rgv-rules-section li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

/* Allocation */
.rgv-allocation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rgv-allocation-item {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rgv-allocation-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-subtle);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rgv-allocation-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rgv-allocation-item:hover::before {
  opacity: 1;
}

.rgv-allocation-percentage {
  font-size: 3rem;
  font-weight: 800;
  color: var(--coral);
  filter: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.rgv-allocation-item h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.rgv-allocation-item p {
  color: var(--gray-600);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Impact */
.rgv-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.rgv-impact-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 4px solid var(--lime);
}

.rgv-impact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--lime-light);
}

.rgv-impact-item h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.rgv-impact-item p {
  color: var(--gray-600);
  line-height: 1.5;
}

/* Winners List */
.rgv-winners-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.rgv-winner-item {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
}

.rgv-winner-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.rgv-winner-info h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.rgv-winner-info p {
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.rgv-winner-info strong {
  color: var(--cyan);
  font-weight: 600;
}

/* Contact */
.rgv-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.rgv-contact-section {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.rgv-contact-section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rgv-contact-section h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.rgv-contact-details p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.rgv-contact-details strong {
  color: var(--cyan);
  font-weight: 600;
}

/* Campaign Summary */
.rgv-campaign-summary {
  padding: 5rem 0;
  background: var(--gray-50);
}

.rgv-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rgv-summary-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-align: left;
}

.rgv-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.rgv-summary-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.rgv-summary-card .rgv-highlight {
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.rgv-summary-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Content Sections */
.rgv-content-section {
  padding: 5rem 0;
}

.rgv-section-header {
  text-align: left;
  margin-bottom: 4rem;
  position: relative;
  padding-left: 2rem;
}

.rgv-section-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--line-weight);
  background: var(--teal);
}

.rgv-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
}

.rgv-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
}

.rgv-section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Prize Cards */
.rgv-prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.rgv-prize-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.rgv-prize-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}

.rgv-prize-card.main-prize {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.rgv-prize-image {
  height: 280px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rgv-prize-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rgv-prize-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.rgv-prize-content {
  padding: 2.5rem;
}

.rgv-prize-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.rgv-prize-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.rgv-prize-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--coral);
  filter: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

/* Results Table */
.rgv-results-table {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rgv-results-table table {
  width: 100%;
  border-collapse: collapse;
}

.rgv-results-table th,
.rgv-results-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.rgv-results-table th {
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rgv-results-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(0, 204, 102, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
  transform: scale(1.01);
}

/* Contact Form */
.rgv-contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rgv-form-group {
  margin-bottom: 1.5rem;
}

.rgv-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.rgv-form-group input,
.rgv-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.rgv-form-group input:focus,
.rgv-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  background: var(--white);
  transform: translateY(-2px);
}

.rgv-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.rgv-submit-button {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.rgv-submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.rgv-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.6);
  background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
}

.rgv-submit-button:hover::before {
  left: 100%;
}

/* Legal Disclaimer */
.rgv-legal-disclaimer {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.rgv-legal-disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.05) 0%, rgba(0, 204, 102, 0.05) 100%);
  pointer-events: none;
}

.rgv-legal-disclaimer h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.rgv-legal-disclaimer p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Footer */
.rgv-footer {
  background: var(--navy);
  color: var(--white);
  margin-top: 5rem;
  position: relative;
}

.rgv-footer-content {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.rgv-footer-copyright {
  background: var(--navy-light);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rgv-footer-legal {
  background: #000000;
  padding: 2rem 0;
  border-top: 2px solid var(--coral);
  pointer-events: none;
}

.rgv-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.rgv-footer-section h3 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  cursor: default;
  pointer-events: none;
}

.rgv-footer-section h3:hover {
  background: none;
  color: inherit;
  text-decoration: none;
}

.rgv-footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.rgv-footer-section p,
.rgv-footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.7;
  transition: all 0.3s ease;
}



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

.rgv-footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.rgv-footer-copyright:hover {
  background: none;
  color: inherit;
}

.rgv-footer-legal {
  text-align: center;
}

.rgv-legal-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 900px;
  color: #ffffff;
  font-weight: 400;
}

/* Countdown Timer */
.rgv-countdown {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.rgv-countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  min-width: 100px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.rgv-countdown-item:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.rgv-countdown-item .rgv-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  filter: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
  display: block;
}

.rgv-countdown-item .rgv-label {
  font-size: 0.9rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .rgv-mobile-menu-toggle {
    display: none !important;
  }

  .rgv-nav-menu {
    display: flex !important;
  }

  .rgv-header-content {
    justify-content: space-between;
  }
}

/* Mobile & Tablet Styles */
@media (max-width: 1023px) {
  .rgv-mobile-menu-toggle {
    display: block !important;
  }

  .rgv-header-content {
    justify-content: space-between;
  }

  .rgv-nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    background: #0b0b0b !important;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    z-index: 999;
  }

  .rgv-nav-menu.active {
    display: flex;
  }

  .rgv-nav-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.1);
    pointer-events: auto;
    z-index: 10;
    color: #f5f1e8 !important;
  }

  .rgv-nav-menu a.active {
    color: #ffffff !important;
    background: #ef3b4c !important;
  }

  .rgv-nav-menu a:hover,
  .rgv-nav-menu a:focus {
    transform: none;
    color: #ffffff;
  }

  .rgv-nav-menu a:active,
  .rgv-nav-menu a:focus-visible {
    background: rgba(239, 59, 76, 0.1);
    transform: none;
  }

  .rgv-nav-menu a:last-child {
    border-bottom: none;
  }
}

/* Legacy Mobile Styles */
@media (max-width: 768px) {
  body {
    padding-top: var(--header-height-mobile);
  }

  .rgv-header-content {
    padding: 1rem;
  }

  .rgv-logo img {
    height: 50px;
    max-width: 250px;
  }

  .rgv-hero-content {
    text-align: center;
  }

  .rgv-trust-indicators {
    justify-content: center;
  }

  .rgv-hero-actions {
    justify-content: center;
  }

  .rgv-hero-card {
    margin: 2rem auto 0;
    max-width: 100%;
  }

  .rgv-summary-grid,
  .rgv-prize-grid {
    grid-template-columns: 1fr;
  }

  .rgv-prize-card.main-prize {
    grid-template-columns: 1fr;
  }

  .rgv-legal-text {
    font-size: 0.75rem;
  }

  /* Fix mobile horizontal scroll - disable problematic transforms */
  .rgv-hero-number,
  .rgv-hero-line-1,
  .rgv-hero-line-2,
  .rgv-hero-shape {
    display: none;
  }

  .rgv-editorial-line.horizontal {
    width: 100%;
  }

  .rgv-mobile-menu-toggle {
    display: block;
  }

  .rgv-hero-content h1 {
    font-size: 2rem;
  }

  .rgv-hero-content p {
    font-size: 1rem;
  }

  .rgv-section-header h2 {
    font-size: 2rem;
  }

  .rgv-summary-grid,
  .rgv-prize-grid {
    grid-template-columns: 1fr;
  }

  .rgv-prize-card.main-prize {
    grid-column: 1;
  }

  .rgv-countdown {
    gap: 1rem;
  }

  .rgv-countdown-item {
    min-width: 60px;
  }

  .rgv-countdown-item .rgv-number {
    font-size: 1.5rem;
  }

  .rgv-footer-content {
    grid-template-columns: 1fr;
  }

  .rgv-contact-form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .rgv-container {
    padding: 0 15px;
  }

  .rgv-hero {
    padding: 2rem 0;
  }

  .rgv-hero-content h1 {
    font-size: 1.5rem;
  }

  .rgv-content-section {
    padding: 2rem 0;
  }

  .rgv-campaign-summary {
    margin: 1rem 0;
    padding: 2rem 0;
  }
}

/* Scroll Animations */
.rgv-info-card,
.rgv-prize-card,
.rgv-timeline-item,
.rgv-impact-item,
.rgv-winner-item,
.rgv-contact-section,
.rgv-rules-section,
.rgv-allocation-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rgv-info-card.animate-in,
.rgv-prize-card.animate-in,
.rgv-timeline-item.animate-in,
.rgv-impact-item.animate-in,
.rgv-winner-item.animate-in,
.rgv-contact-section.animate-in,
.rgv-rules-section.animate-in,
.rgv-allocation-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .rgv-info-card,
  .rgv-prize-card,
  .rgv-timeline-item,
  .rgv-impact-item,
  .rgv-winner-item,
  .rgv-contact-section,
  .rgv-rules-section,
  .rgv-allocation-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .rgv-info-card.animate-in,
  .rgv-prize-card.animate-in,
  .rgv-timeline-item.animate-in,
  .rgv-impact-item.animate-in,
  .rgv-winner-item.animate-in,
  .rgv-contact-section.animate-in,
  .rgv-rules-section.animate-in,
  .rgv-allocation-item.animate-in {
    opacity: 1;
    transform: none;
  }
}

/* Text clarity overrides */
.rgv-prize-value,
.rgv-allocation-percentage,
.rgv-countdown-item .rgv-number {
  filter: none !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
