/* Shared Styles for All Pages - ANKAPARK Website */

:root {
  --primary: #dc2626;
  --primary-dark: #991b1b;
  --primary-light: #fee2e2;
  --accent: #f59e0b;
  --success: #10b981;
  --info: #3b82f6;
  --dark: #1f2937;
  --light: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

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

/* Header */
.site-header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 20px 0;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.brand {
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  margin-right: auto;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  white-space: nowrap;
  font-size: 14px;
}

.menu a:hover,
.menu a.active {
  color: var(--primary);
}

.menu-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Section Base */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 60px;
  color: var(--dark);
}

.alt {
  background: white;
}

/* Page Header (for sub-pages) */
.page-header {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 20px;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.65) 0%,
    rgba(15, 23, 42, 0.85) 45%,
    rgba(15, 23, 42, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.slide-content {
  max-width: 720px;
  text-align: center;
  color: white;
  animation: slideReveal 1s ease forwards;
}

.slide-eyebrow {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.slide-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 24px;
}

.slide-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: #dc2626;
  color: white;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.6);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(220, 38, 38, 0.9);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

@keyframes slideReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-slider {
    min-height: 75vh;
    height: 75vh;
  }

  .slider-arrow {
    width: 48px;
    height: 48px;
  }
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.badge {
  background: white;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
}

.title {
  font-size: 56px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.accent {
  color: var(--primary);
  display: block;
  margin-top: 10px;
}

/* Stat Cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 40px auto;
}

.stat-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
  border-top: 5px solid var(--primary);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 15px;
}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.lead {
  font-size: 22px;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: var(--dark);
}

.lead strong {
  color: var(--primary);
  font-weight: 800;
}

/* Daily Cost Section */
.daily-cost {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  padding: 80px 0;
  text-align: center;
}

.cost-box {
  background: white;
  border-radius: 30px;
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  border: 5px solid var(--primary);
}

.cost-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--primary-dark);
  font-weight: 900;
}

.cost-amount {
  font-size: 110px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.cost-currency {
  font-size: 54px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.cost-description {
  font-size: 22px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 30px;
}

.cost-formula {
  font-size: 16px;
  color: #6b7280;
  padding-top: 25px;
  border-top: 3px solid var(--border);
  font-weight: 600;
}

.cost-note {
  background: rgba(79, 70, 229, 0.1);
  border-left: 4px solid #4f46e5;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.cost-note strong {
  color: #1f2937;
  font-weight: 700;
}

/* Big Counter */
.big-counter-section {
  background: radial-gradient(circle at top, rgba(220, 38, 38, 0.35), transparent 45%),
    #0b1220;
  color: #f8fafc;
  padding: clamp(40px, 8vh, 96px) 0;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-counter-section .container {
  max-width: none;
  width: 100%;
  padding: 0 clamp(16px, 5vw, 96px);
}

.big-counter-wrapper {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9));
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.big-counter-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f87171;
  font-weight: 700;
  margin-bottom: 12px;
}

.big-counter-display {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(8px, 2vw, 18px);
  margin-bottom: 16px;
}

.big-counter-number {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 700;
  color: #fef3c7;
  letter-spacing: 1px;
}

.big-counter-currency {
  font-size: clamp(24px, 3vw, 56px);
  font-weight: 700;
  color: #fb7185;
}

.big-counter-subtext {
  font-size: 18px;
  color: rgba(226, 232, 240, 0.85);
  margin: 0 auto 20px;
  max-width: 920px;
}

.counter-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 18px;
}

.counter-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #f87171, #fecaca);
  transition: width 0.3s ease;
}

@keyframes counterGlow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(248, 113, 113, 0.8);
  }
  50% {
    text-shadow: 0 0 50px rgba(248, 113, 113, 1),
      0 0 80px rgba(254, 202, 202, 0.7);
  }
}

.big-counter-number.animating {
  animation: counterGlow 2s ease-in-out infinite;
}

.big-counter-number.completed {
  text-shadow: 0 0 40px rgba(248, 113, 113, 0.9),
    0 0 70px rgba(254, 202, 202, 0.7);
}

@media (max-width: 768px) {
  .big-counter-wrapper {
    padding: 32px 24px;
  }

  .big-counter-subtext {
    font-size: 16px;
  }

  .big-counter-number {
    font-size: clamp(42px, 12vw, 64px);
  }

  .big-counter-currency {
    font-size: clamp(20px, 3vw, 32px);
  }

  .big-counter-display {
    flex-wrap: wrap;
  }
}

/* Shock Stats */
.shock-box {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 5px solid var(--primary);
  border-radius: 30px;
  padding: 50px;
  margin: 60px 0;
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.25);
  position: relative;
}

.shock-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-dark);
  font-weight: 900;
}

.shock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@media (min-width: 1024px) {
  .shock-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.shock-stat {
  background: white;
  border-radius: 20px;
  padding: 35px;
  border-left: 6px solid var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.shock-stat:hover {
  transform: translateX(10px);
}

.shock-stat-number {
  font-weight: 900;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}

.shock-stat-number .value {
  font-size: 64px;
}

.shock-stat-number .unit {
  font-size: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.shock-stat-number .currency {
  font-size: 34px;
}

.shock-stat-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.shock-stat-detail {
  font-size: 16px;
  color: #6b7280;
  font-weight: 600;
}

/* Timeline */
.timeline-enhanced {
  position: relative;
  padding: 60px 0;
}

.timeline-enhanced::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: translateX(-50%);
}

.timeline-event {
  position: relative;
  padding: 30px;
  margin: 30px 0;
  background: white;
  border-radius: 20px;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-lg);
  width: calc(50% - 50px);
  transition: all 0.3s;
}

.timeline-event:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.timeline-event:nth-child(odd) {
  margin-left: 0;
}

.timeline-event:nth-child(even) {
  margin-left: auto;
}

.timeline-event::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border: 5px solid white;
  border-radius: 50%;
  top: 50%;
  box-shadow: 0 0 0 5px var(--primary);
}

.timeline-event:nth-child(odd)::after {
  right: -62px;
  transform: translateY(-50%);
}

.timeline-event:nth-child(even)::after {
  left: -62px;
  transform: translateY(-50%);
}

.timeline-event.critical {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.timeline-date {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.timeline-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 768px) {
  .timeline-enhanced::before {
    left: 30px;
  }
  .timeline-event {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  .timeline-event::after {
    left: -68px !important;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .title {
    font-size: 36px;
  }
  .cost-amount {
    font-size: 72px;
  }
}

/* Waste Cards */
.waste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.waste-card {
  background: white;
  border: 3px solid var(--border);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.waste-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.waste-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  border-color: var(--primary);
}

.waste-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.waste-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}

.waste-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
}

.waste-detail {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

@media (max-width: 900px) {
  .cards-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-head {
  padding: 25px;
  font-weight: 800;
  color: white;
  text-align: center;
  font-size: 20px;
}

.card-body {
  padding: 30px;
}

/* Comparison Section */
.comparison-mega {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  border-radius: 30px;
  padding: 70px 50px;
  margin: 70px 0;
  box-shadow: 0 25px 60px rgba(79, 70, 229, 0.35);
}

.comparison-mega h3 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}

.comparison-intro {
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 50px;
  opacity: 0.95;
}

.comparison-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.comparison-item-mega {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s;
}

.comparison-item-mega:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.comparison-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}

.comparison-label {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.comparison-footer {
  text-align: center;
  margin-top: 50px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.comparison-footer p {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 700;
}

@media (max-width: 768px) {
  .comparison-mega {
    padding: 40px 25px;
  }
  .comparison-mega h3 {
    font-size: 28px;
  }
}

/* Summary Grid */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.summary-box {
  background: white;
  border: 3px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.summary-box:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.summary-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.summary-text {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

.final-total {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  border: 5px solid var(--primary);
}

.final-amount {
  font-size: 64px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.final-description {
  font-size: 22px;
  font-weight: 700;
  color: #7f1d1d;
}

/* Status Items */
.current-status {
  max-width: 900px;
  margin: 0 auto;
}

.status-box {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.status-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 3px solid var(--border);
}

.status-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.status-icon {
  font-size: 38px;
  flex-shrink: 0;
}

.status-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.status-title.complete { color: var(--success); }
.status-title.ongoing { color: var(--info); }
.status-title.upcoming { color: var(--accent); }

.status-text {
  color: #6b7280;
  line-height: 1.6;
}

.participation-box {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
}

.participation-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.participation-subtitle {
  font-size: 15px;
  opacity: 0.9;
}

.participation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.participation-stat {
  text-align: center;
}

.participation-number {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.participation-label {
  font-size: 15px;
  opacity: 0.9;
}

/* Flood Risk Section */
.flood-risk-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
  color: white;
  padding: 80px 0;
}

.flood-warning {
  background: rgba(239, 68, 68, 0.2);
  border: 3px solid #ef4444;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}

.flood-warning h3 {
  color: #fca5a5;
  font-size: 28px;
  margin-bottom: 20px;
}

.river-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.river-badge {
  background: rgba(59, 130, 246, 0.3);
  border: 2px solid #60a5fa;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
}

/* Scandal Cards */
.scandal-section {
  background: linear-gradient(135deg, #7c2d12 0%, #431407 100%);
  color: white;
  padding: 80px 0;
}

.scandal-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.scandal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.scandal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.scandal-icon {
  font-size: 64px;
}

.scandal-title {
  font-size: 28px;
  font-weight: 900;
}

.scandal-subtitle {
  font-size: 16px;
  opacity: 0.8;
}

.scandal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.scandal-stat {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

.scandal-stat-value {
  font-size: 36px;
  font-weight: 900;
  color: #fbbf24;
}

.scandal-stat-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 8px;
}

.scandal-details {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 25px;
  margin-top: 20px;
}

.scandal-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scandal-detail-item:last-child {
  border-bottom: none;
}

.scandal-detail-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Monorail Section */
.monorail-section {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
  color: white;
  padding: 80px 0;
}

.absurd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.absurd-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}

.absurd-card:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.05);
}

.absurd-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.absurd-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fca5a5;
}

.absurd-text {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Chinese Products Section */
.china-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 80px 0;
}

.overprice-badge {
  background: #fbbf24;
  color: #1f2937;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 900;
  display: inline-block;
}

/* Dino comparison */
.dino-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.dino-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.dino-box.paid {
  border: 3px solid #ef4444;
}

.dino-box.actual {
  border: 3px solid #22c55e;
}

.dino-emoji {
  font-size: 80px;
  margin-bottom: 20px;
}

.dino-label {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.dino-amount {
  font-size: 42px;
  font-weight: 900;
}

.dino-box.paid .dino-amount {
  color: #fca5a5;
}

.dino-box.actual .dino-amount {
  color: #86efac;
}

@media (max-width: 768px) {
  .dino-compare {
    grid-template-columns: 1fr;
  }
  .scandal-stats {
    grid-template-columns: 1fr;
  }
}

/* Transformers Section */
.transformers-section {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
  color: white;
  padding: 80px 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.game-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s;
}

.game-item:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
}

.game-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Problems Section */
.problems-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 80px 0;
}

.problems-list {
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ef4444;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 0 16px 16px 0;
  transition: all 0.3s;
}

.problem-item:hover {
  background: rgba(239, 68, 68, 0.1);
  transform: translateX(10px);
}

.problem-number {
  background: #ef4444;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.problem-text {
  font-size: 16px;
  line-height: 1.7;
}

/* Lists */
.list {
  list-style: none;
  padding: 0;
}

.list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.list li:last-child {
  border-bottom: none;
}

.list a {
  color: var(--info);
  text-decoration: none;
  font-weight: 600;
}

.list a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
  text-align: center;
}

.footer-inner p {
  margin: 10px 0;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-inner a:hover {
  color: var(--primary);
}

/* Quick Links Grid for Homepage */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.quick-link-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.quick-link-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.quick-link-icon {
  font-size: 56px;
  margin-bottom: 15px;
}

.quick-link-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.quick-link-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
}

/* Loading screen overlay */
.loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.85), #030711 90%);
  z-index: 3000;
  padding: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

.loading-screen--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__panel {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
}

.loading-screen__video {
  width: min(720px, 100%);
  max-height: 70vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.loading-screen__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.loading-screen__close:hover {
  transform: scale(1.05);
  background: #ffffff;
}

.loading-screen__headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fef9f3;
  line-height: 1.4;
  letter-spacing: 0.02em;
  max-width: 820px;
}

.loading-screen__loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.loading-screen__dots {
  display: inline-flex;
  gap: 6px;
}

.loading-screen__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: loadingPulse 1s infinite ease-in-out;
}

.loading-screen__dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-screen__dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loading-screen--ready .loading-screen__loader {
  opacity: 0;
  transform: translateY(-6px);
}

.loading-screen__controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.loading-screen__button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.65);
  color: #fef9f3;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.loading-screen__button:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}

.loading-screen__hint {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.has-loading-screen {
  overflow: hidden;
}

@media (max-width: 768px) {
  .loading-screen__headline {
    font-size: 1.1rem;
  }

  .loading-screen__video {
    border-radius: 16px;
  }

  .loading-screen__close {
    top: -6px;
    right: -6px;
  }
}

@keyframes loadingPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
