/* PokerDrill Policy Site — v1.0.136 */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, sans-serif;
  background: #0B1120;
  color: #E5E7EB;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 48px;
}
.logo {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #F59E0B 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.tagline {
  margin-top: 8px;
  color: #9CA3AF;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Intro */
.intro {
  text-align: center;
  margin-bottom: 40px;
}
.intro h1 {
  font-size: 28px;
  color: #F9FAFB;
  margin-bottom: 12px;
}
.intro p {
  color: #9CA3AF;
  font-size: 16px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
}
.card {
  background: #111827;
  border: 1px solid #1F2937;
  border-radius: 12px;
  padding: 24px;
}
.card h2 {
  font-size: 20px;
  color: #F59E0B;
  margin-bottom: 16px;
}
.card ul {
  list-style: none;
}
.card li {
  margin: 12px 0;
}
.card a {
  color: #00D4FF;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.card a:hover {
  border-bottom-color: #00D4FF;
}

/* Contact */
.contact {
  text-align: center;
  background: #111827;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.contact h3 {
  color: #F59E0B;
  margin-bottom: 12px;
  font-size: 18px;
}
.contact a {
  color: #00D4FF;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  color: #4B5563;
  font-size: 13px;
  padding-top: 24px;
  border-top: 1px solid #1F2937;
}

/* Article (for policy pages) */
.article {
  background: #111827;
  border: 1px solid #1F2937;
  border-radius: 12px;
  padding: 40px;
}
.article h1 {
  font-size: 32px;
  color: #F9FAFB;
  margin-bottom: 8px;
  border-bottom: 2px solid #F59E0B;
  padding-bottom: 16px;
}
.article .meta {
  color: #6B7280;
  font-size: 13px;
  margin-bottom: 24px;
}
.article h2 {
  color: #F59E0B;
  font-size: 22px;
  margin: 32px 0 12px;
  padding-top: 16px;
  border-top: 1px solid #1F2937;
}
.article h3 {
  color: #00D4FF;
  font-size: 17px;
  margin: 20px 0 8px;
}
.article p {
  color: #D1D5DB;
  margin-bottom: 12px;
}
.article ul, .article ol {
  margin: 12px 0 16px 24px;
  color: #D1D5DB;
}
.article li {
  margin: 6px 0;
}
.article strong {
  color: #F9FAFB;
}
.article a {
  color: #00D4FF;
  text-decoration: underline;
}
.article code {
  background: #1F2937;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: #F59E0B;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.article th, .article td {
  padding: 10px 12px;
  border: 1px solid #1F2937;
  text-align: left;
  font-size: 14px;
}
.article th {
  background: #1F2937;
  color: #F59E0B;
}
.back {
  display: inline-block;
  margin-bottom: 20px;
  color: #00D4FF;
  text-decoration: none;
  font-size: 14px;
}
.back:hover { text-decoration: underline; }

/* Delete account form */
.delete-form {
  background: #1F2937;
  padding: 24px;
  border-radius: 8px;
  margin: 20px 0;
}
.delete-form .btn {
  display: inline-block;
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
}
.delete-form .btn:hover { opacity: 0.9; }
