:root {
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;
  --bg: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-input: #262626;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --border: #2e2e2e;
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn:hover {
  background: var(--bg-input);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-success {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.btn-warning {
  background: var(--warning);
  border-color: var(--warning);
  color: #000;
}

.btn-danger {
  background: var(--danger);
  border-color: var(--danger);
  color: white;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 8px;
}

.btn-group-sm {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

/* Forms */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.form-section {
  margin-bottom: 24px;
}

.form-section h3 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text);
}

.form-group {
  margin-bottom: 16px;
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.form-group small {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Page Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-info {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
}

.alert-trial {
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.alert-secondary {
  background: rgba(161, 161, 170, 0.12);
  border: 1px solid rgba(161, 161, 170, 0.3);
  color: #d4d4d8;
}

.alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.alert-warning {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fde047;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.badge-warning {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.badge-secondary {
  background: rgba(161, 161, 170, 0.2);
  color: #a1a1aa;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.15s;
}

.event-card:hover {
  border-color: var(--primary);
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.event-card-header h3 {
  font-size: 1.1rem;
}

.event-card-body {
  margin-bottom: 16px;
}

.event-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.event-card-stats {
  display: flex;
  gap: 24px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.event-card-footer {
  display: flex;
  justify-content: flex-end;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.stat-icon {
  font-size: 2rem;
}

.stat-info .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-info .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Share Link */
.share-link-card {
  background: var(--bg-card);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.share-link-card h3 {
  margin-bottom: 8px;
}

.link-box {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.link-box input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.85rem;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

th {
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.row-confirmed {
  background: rgba(34, 197, 94, 0.05);
}

.row-pending {
  background: rgba(234, 179, 8, 0.05);
}

.row-awaiting {
  background: rgba(245, 158, 11, 0.12);
}

.badge-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.inline {
  display: inline;
}

/* Section Card */
.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h3 {
  font-size: 1.1rem;
}

/* Danger Zone */
.danger-zone {
  border-color: rgba(239, 68, 68, 0.3);
}

.danger-zone h3 {
  color: var(--danger);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.empty-state h2 {
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.empty-state-sm {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

/* Auth Pages */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.auth-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
}

/* Client Pages */
.client-page {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.client-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

.client-header {
  text-align: center;
  padding: 40px 0;
}

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

.event-info {
  color: var(--text-muted);
  margin-bottom: 4px;
}

.event-description {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 0.95rem;
}

.event-price {
  margin-top: 16px;
  font-size: 1.2rem;
}

.event-price.free {
  color: var(--success);
}

/* Entry Form */
.entry-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.entry-form-card h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.client-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 20px 0;
}

/* Payment Card */
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.qr-state {
  text-align: center;
}

.qr-state h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.qr-container {
  background: white;
  padding: 16px;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 20px;
}

.qr-container img {
  width: 200px;
  height: 200px;
  display: block;
}

.payment-details {
  margin-bottom: 20px;
}

.payment-details p {
  margin-bottom: 4px;
}

.copy-paste-section {
  margin-bottom: 24px;
}

.copy-box {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.copy-box input {
  flex: 1;
  padding: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.8rem;
}

.payment-instructions {
  text-align: left;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.payment-instructions h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.payment-instructions ol {
  padding-left: 20px;
}

.payment-instructions li {
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.check-status {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Success Card */
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.success-card h1 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--success);
}

.success-details {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.success-details h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.success-entry {
  text-align: left;
  margin-bottom: 24px;
}

.names-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.names-list li {
  padding: 8px 12px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.success-message {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Error Card */
.error-card {
  background: var(--bg-card);
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
}

.error-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.error-card h1 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--danger);
}

/* Error Page */
.error-page {
  text-align: center;
  padding: 100px 20px;
}

.error-page h1 {
  font-size: 3rem;
  color: var(--danger);
  margin-bottom: 16px;
}

/* Master Panel */
.navbar-master {
  background: linear-gradient(90deg, #3b0764 0%, #581c87 100%);
  border-bottom: 1px solid #6d28d9;
}

.navbar-master .nav-brand a {
  color: #f59e0b;
}

.revenue-card {
  border-color: #7c3aed;
}

.revenue-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #22c55e;
  margin: 8px 0;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.filter-bar input:focus,
.filter-bar select:focus {
  outline: none;
  border-color: var(--primary);
}

.inline-action {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--bg-input);
  padding: 14px;
  border-radius: var(--radius-sm);
  flex: 1;
}

.inline-action label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.inline-action select,
.inline-action input {
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
}

/* Subscription page */
.sub-status {
  text-align: center;
  padding: 20px;
}

.sub-status h3 {
  font-size: 1.8rem;
  margin: 12px 0;
}

.qr-title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.sub-info {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.center {
  text-align: center;
}

/* Readonly */
.readonly-card {
  text-align: center;
  padding: 60px 24px;
  border-color: var(--warning);
}

.readonly-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.readonly-card h1 {
  margin-bottom: 12px;
}

.readonly-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.center-actions {
  justify-content: center;
}

/* ============================================
   Landing Page (vendas)
   ============================================ */
.landing-page {
  background: #0a0a0a;
}

.navbar-landing {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
}

.navbar-landing .nav-brand a {
  color: #fafafa;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.brand-dot {
  color: var(--primary);
}

.hero {
  text-align: center;
  padding: 90px 20px 70px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.25), transparent),
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(124, 58, 237, 0.12), transparent);
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-badge-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-title {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: var(--primary);
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  margin-bottom: 48px;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--success);
}

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

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.audience-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s, transform 0.15s;
}

.section-alt .feature-card {
  background: #131313;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.plan-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 40px;
}

.plan-left {
  flex: 1;
}

.plan-left h2 {
  font-size: 2.6rem;
  margin: 12px 0;
}

.plan-left p {
  font-size: 0.95rem;
}

.plan-right {
  flex: 1;
}

.plan-list {
  list-style: none;
  margin-bottom: 24px;
}

.plan-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.plan-list li:last-child {
  border-bottom: none;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  padding: 16px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-item p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent),
    var(--bg);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 28px;
}

.landing-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom p {
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .hero-metrics {
    gap: 24px;
  }

  .plan-card {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 16px;
  }
}

/* Utilities */
.text-muted {
  color: var(--text-muted);
}

.text-sm {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .page-header {
    flex-direction: column;
    gap: 12px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  th, td {
    padding: 8px;
    font-size: 0.75rem;
  }
}
