/* ==========================================================================
   LION HOOKAH - MINIMALIST THEME (BLACK, WHITE & YELLOW CROWN)
   Direct, clean, no gradients, modern typography.
   ========================================================================== */

:root {
  --bg-color: #161616;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --border-color: #2E2E32;
  --yellow-crown: #FACC15;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html, body {
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  background-color: #1c1c1f;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--yellow-crown);
  border-radius: 50%;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0;
}

.brand-symbol {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.brand-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.divider {
  width: 48px;
  height: 1px;
  background-color: var(--border-color);
  margin: 36px 0;
}

.message-block {
  max-width: 520px;
  margin-bottom: 36px;
}

.headline {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.subtext {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Actions */
.actions {
  margin-bottom: 36px;
  width: 100%;
  max-width: 320px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.1s ease;
  border: 1px solid #FFFFFF;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.wa-icon {
  width: 20px;
  height: 20px;
}

/* Categories List */
.categories-list {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.age-warning {
  color: #71717A;
  font-weight: 500;
}

.copyright {
  color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 600px) {
  .page-wrapper {
    padding: 24px 16px;
  }

  .brand-name {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .headline {
    font-size: 1.3rem;
  }

  .footer-info {
    flex-direction: column;
    text-align: center;
  }
}
