:root {
  color-scheme: dark;
  --bg: #07080a;
  --panel: rgba(18, 20, 24, 0.75);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f4efe8;
  --muted: #aeb3b8;
  --red: #ff3b30;
  --amber: #f7b733;
  --orange: #ff8a1d;
  --font-title: 'Oswald', sans-serif;
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 8%, #22252a 0, var(--bg) 65%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}

.breadcrumb {
  font-family: var(--font-title);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }

.card {
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

h1 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 30%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.subtitle {
  font-family: var(--font-bebas);
  font-size: 1.2rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--amber);
  border-bottom: 1px solid rgba(247, 183, 51, 0.2);
  padding-bottom: 6px;
}
.section-title:first-of-type { margin-top: 0; }

p {
  margin-bottom: 18px;
  color: #e0d9cf;
  font-size: 1rem;
  text-align: justify;
}
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 18px 24px; color: #e0d9cf; }
li { margin-bottom: 8px; }

strong { color: #fff; }

.meta-info {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
  text-align: center;
  font-style: italic;
}

.disclaimer {
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: left;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 1px 1px 0 #000;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(255, 59, 48, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 59, 48, 0.55);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--panel-border);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }

.article-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.article-item {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.article-item:hover {
  border-color: rgba(247, 183, 51, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.article-item h2 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-item p { font-size: 0.9rem; color: var(--muted); margin: 0; text-align: left; }
.article-item .article-date { font-size: 0.78rem; color: var(--muted); font-style: italic; display: block; margin-top: 8px; }

footer {
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text); }
.footer-divider { color: rgba(255, 255, 255, 0.15); }

@media (max-width: 480px) {
  .card { padding: 24px 16px; }
  h1 { font-size: 1.8rem; }
}
