/* Northern Community Lottery - Trustworthy Community Charity Lottery */

:root {
  /* Light Neutral Backgrounds */
  --off-white: #fefefe;
  --soft-beige: #f8f6f0;
  --pale-gray: #f5f5f5;
  --warm-gray: #e8e8e8;

  /* Subtle Accent Colors */
  --muted-teal: #4a9b8c;
  --calm-blue: #6b9bd1;
  --warm-brown: #8b7355;
  --soft-green: #7a9b6e;

  /* Text Colors */
  --text-dark: #2c2c2c;
  --text-medium: #666666;
  --text-light: #999999;

  /* Clean Design Elements */
  --line-weight: 1px;
  --shape-size: 60px;

  /* Typography Scale */
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-primary: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', monospace;

  /* Spacing & Layout */
  --container-max: 1200px;
  --section-spacing: 6rem;
  --border-radius: 12px; /* Soft, rounded corners */
  --border-radius-soft: 8px;

  /* Subtle Shadows & Effects */
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-text: 0 1px 2px rgba(0, 0, 0, 0.1);

  /* 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.5;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  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(135deg, rgba(74, 155, 140, 0.02) 0%, rgba(107, 155, 209, 0.02) 100%);
  pointer-events: none;
  z-index: -1;
}

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

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

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

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

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

.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;
}

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

/* Clean Community Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--off-white);
  border-bottom: 2px solid var(--warm-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.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;
}

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

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



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

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

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  position: relative;
  transition: color var(--transition-fast);
  z-index: 1;
}

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

/* HOVER / FOCUS */
.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--muted-teal);
}

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

/* ACTIVE STATE */
.nav-menu a.active {
  color: var(--muted-teal);
  font-weight: 700;
}

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

.mobile-menu-toggle {
  display: block;
  background: var(--soft-beige);
  border: 2px solid var(--warm-gray);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
  font-size: 1.5rem;
  pointer-events: auto;
  z-index: 50;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus,
.mobile-menu-toggle.active {
  background: var(--muted-teal);
  border-color: var(--muted-teal);
  color: var(--off-white);
}

/* Hero Section */
/* Community-Focused Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--soft-beige) 0%, var(--pale-gray) 100%);
  overflow: hidden;
}

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

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

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 246, 240, 0.6) 100%);
  z-index: 2;
}

/* Subtle Design Element */
.hero-number {
  position: absolute;
  top: 15%;
  right: 8%;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  color: rgba(74, 155, 140, 0.08);
  line-height: 0.8;
  z-index: 3;
  transform: rotate(-5deg);
}

.hero-line-1 {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(74, 155, 140, 0.2) 50%, transparent 100%);
  z-index: 3;
}

.hero-line-2 {
  position: absolute;
  bottom: 35%;
  right: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(107, 155, 209, 0.15) 100%);
  z-index: 3;
}

.hero-shape {
  position: absolute;
  bottom: 25%;
  left: 8%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(122, 155, 110, 0.3);
  background: rgba(122, 155, 110, 0.05);
  border-radius: 50%;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  padding: 6rem 2rem 4rem;
  color: var(--text-dark);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-content p {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 550px;
  position: relative;
}

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

.cta-button {
  display: inline-block;
  background: var(--muted-teal);
  color: white;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--border-radius);
  position: relative;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-soft);
  z-index: 5;
}

.cta-button:hover {
  background: var(--soft-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-medium);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
  position: relative;
}

.trust-item::before {
  content: '✓';
  color: var(--soft-green);
  font-weight: bold;
}

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

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

.info-card {
  background: var(--off-white);
  padding: 2.5rem;
  border: 1px solid var(--warm-gray);
  border-radius: var(--border-radius);
  position: relative;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-soft);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--muted-teal);
}

.info-card h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
  position: relative;
}

.info-card h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--muted-teal);
}

.info-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1rem;
}

.info-card strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Legal Notice */
.legal-notice {
  padding: 3rem 0;
  background: var(--pale-gray);
  border-top: 1px solid var(--warm-gray);
}

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

.notice-content h4 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 1.4rem;
  text-align: center;
  position: relative;
  font-weight: 600;
}

.notice-content h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--muted-teal);
  border-radius: 1px;
}

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

.notice-text p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--calm-blue);
}

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

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

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

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

.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);
}

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

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

.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;
}

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

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

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

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

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

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

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

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

.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;
}

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

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

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

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

.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;
}

.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;
}

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

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

.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;
}

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

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

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

.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);
}

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

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

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

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

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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;
}

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

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

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

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

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

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

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

.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;
}

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

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

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

.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);
}

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

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

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

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

.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;
}

.prize-content {
  padding: 2.5rem;
}

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

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

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

/* Results Table */
.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);
}

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

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

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

.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 */
.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);
}

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

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

.form-group input,
.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);
}

.form-group input:focus,
.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);
}

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

.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;
}

.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;
}

.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%);
}

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

/* Legal Disclaimer */
.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;
}

.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;
}

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

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

/* Footer */
.footer {
  background: var(--soft-beige);
  color: var(--text-dark);
  margin-top: 4rem;
  position: relative;
  border-top: 1px solid var(--warm-gray);
}

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

.footer-copyright {
  background: var(--pale-gray);
  padding: 1.5rem 0;
  border-top: 1px solid var(--warm-gray);
}

.footer-legal {
  background: var(--warm-gray);
  padding: 1.5rem 0;
  pointer-events: none;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--muted-teal);
  border-radius: 1px;
}

.footer-section p,
.footer-section a {
  color: var(--text-medium);
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.3s ease;
}

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

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-medium);
}

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

.legal-text {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 900px;
  color: var(--text-light);
  font-weight: 400;
}

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

.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;
}

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

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

.countdown-item .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) {
  .mobile-menu-toggle {
    display: none !important;
  }

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

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

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

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

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    background: var(--off-white) !important;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid var(--warm-gray);
    z-index: 999;
  }

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

  .nav-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--pale-gray);
    pointer-events: auto;
    z-index: 10;
    color: var(--text-dark) !important;
  }

  .nav-menu a.active {
    color: var(--muted-teal) !important;
    font-weight: 700;
  }

  .nav-menu a:hover,
  .nav-menu a:focus {
    transform: none;
    color: var(--muted-teal);
  }

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

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

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

  .header-content {
    padding: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .countdown {
    gap: 1rem;
  }

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

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

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

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

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

  .hero {
    padding: 2rem 0;
  }

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

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

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

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

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

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

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

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