:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  background: #0b0c10;
  color: #e5e7eb;
  line-height: 1.6;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

h1,
h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #f5f5f5;
  letter-spacing: 0.2px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

h2 {
  font-size: 1.35rem;
  margin-top: 28px;
  margin-bottom: 8px;
}

p {
  margin-top: 0;
  color: #cbd5e1;
}

a {
  color: #c9a227;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e2b93b;
}

hr {
  border: 0;
  height: 1px;
  background: #2a2a2a;
  margin: 24px 0;
}

ul {
  padding-left: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #111318;
  border: 1px solid #262626;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid #262626;
  text-align: left;
  font-size: 0.95rem;
}

th {
  color: #c9a227;
  font-weight: 600;
  background: #0f1116;
}

@media (max-width: 640px) {
  .container {
    padding: 36px 18px 56px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}

.weekly-lottery-block {
  padding: 30px 0;
}

.weekly-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 40px 0;
}

.back-to-top {
  font-size: 13px;
  opacity: 0.6;
  text-decoration: none;
}

.back-to-top:hover {
  opacity: 1;
}