* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  background: #1B5E20 url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&q=60&w=2000') no-repeat center center fixed;
  background-size: cover;
  background-position: bottom;
  color: #FFFFFF;
  min-height: 100vh;
  padding: 2rem;
  line-height: 1.6;
}
.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(13,27,15,0.85) 50%, rgba(27,94,32,0.95) 100%);
  pointer-events: none;
  z-index: 0;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
h1 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
}
.last-updated { color: #ccc; margin-bottom: 2rem; font-size: 0.9rem; }
.intro { color: #ccc; margin-bottom: 2rem; font-size: 1rem; }
.card {
  background: linear-gradient(135deg, rgba(27,94,32,0.95), rgba(21,101,52,0.95));
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.card h2 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FFD700;
}
.card h3 {
  color: #FFD700;
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}
.card p, .card li {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.card ul, .card ol {
  margin-left: 1.5rem;
  color: #ddd;
}
.card li { margin-bottom: 0.5rem; }
a { color: #FFD700; }
a:hover, a:focus { color: #fff; text-decoration: underline; }
.back-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid #FFD700;
  border-radius: 8px;
  transition: background 0.2s;
}
.back-link:hover, .back-link:focus {
  color: #1B5E20;
  background: #FFD700;
  text-decoration: none;
}
.highlight-box {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}
.highlight-box p { margin-bottom: 0.5rem; }
.highlight-box p:last-child { margin-bottom: 0; }
.cta-box {
  background: rgba(255, 215, 0, 0.12);
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1rem 0;
  text-align: center;
}
.cta-box p { margin-bottom: 0.75rem; }
.cta-box a.cta-btn {
  display: inline-block;
  background: #FFD700;
  color: #1B5E20;
  font-weight: bold;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  margin: 0.25rem;
}
.cta-box a.cta-btn:hover, .cta-box a.cta-btn:focus {
  background: #fff;
  color: #1B5E20;
  text-decoration: none;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #FFD700;
  color: #1B5E20;
  padding: 8px 16px;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}
th, td {
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: top;
  color: #ddd;
}
th {
  background: rgba(0, 0, 0, 0.25);
  color: #FFD700;
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-weight: normal;
  font-size: 0.95rem;
}
tr:nth-child(even) td { background: rgba(0, 0, 0, 0.15); }
.faq details {
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.75rem;
}
.faq summary {
  cursor: pointer;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.faq details p { margin-top: 0.5rem; }
.sources a { word-break: break-all; }
.guide-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.guide-link:hover h2, .guide-link:focus h2 {
  color: #fff;
  text-decoration: underline;
}
.meta { color: #bbb; font-size: 0.9rem; margin-bottom: 0; }
@media (max-width: 600px) {
  body { padding: 1rem; }
  h1 { font-size: 1.8rem; }
  .card { padding: 1rem; }
}
