:root {
  --bg-main: #0b0f19;
  --bg-card: #131c2e;
  --text-white: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #64748b;
  --accent-neon: #3b82f6;
  --accent-green: #10b981;
  --danger-red: #ef4444;
  --border-color: #1e293b;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

#age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 10, 19, 0.99);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: var(--bg-card);
  border: 2px solid var(--danger-red);
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.modal-18 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--danger-red);
  border: 4px solid var(--danger-red);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.modal-btn {
  background: var(--accent-neon);
  color: var(--text-white);
  border: none;
  padding: 16px;
  width: 100%;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 25px;
}

.modal-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

header {
  border-bottom: 1px solid var(--border-color);
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-white);
  text-decoration: none;
}

.logo span {
  color: var(--accent-neon);
}

.badge-18 {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger-red);
  border: 1px solid var(--danger-red);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-link {
  display: block;
  background: var(--accent-neon);
  color: var(--text-white);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-link:hover {
  background: #2563eb;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.aggregator-disclaimer {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.65;
}

.aggregator-disclaimer strong {
  color: var(--text-white);
}

.page-disclaimer {
  border-top: 1px solid var(--border-color);
  padding: 28px 0;
  background: rgba(19, 28, 46, 0.5);
}

.page-disclaimer p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 900px;
}

.page-disclaimer strong {
  color: var(--text-white);
}

.warning-box p {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.6;
}

footer {
  background: #05070f;
  border-top: 3px solid var(--danger-red);
  padding: 50px 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.warning-box {
  background: rgba(239, 68, 68, 0.05);
  border-left: 4px solid var(--danger-red);
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

.warning-box h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.warning-box p {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-legal {
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}

.footer-nav {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}

.footer-nav h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-nav-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--accent-neon);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-neon);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}
