/* TimeBucks web site — base theme */
:root {
  --bg: #0b0d12;
  --surface: #141820;
  --text: #eef0f6;
  --muted: #8b93a8;
  --border: #2a3144;
  --primary: #6366f1;
  --primary-hover: #818cf8;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  max-height: none !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.tb-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(99, 102, 241, 0.2), transparent),
    linear-gradient(180deg, #0b0d12 0%, #12151f 100%);
}

.tb-home-card {
  max-width: 440px;
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.tb-home-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.tb-home-card h1 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tb-home-card p {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 0.95rem;
}

.tb-home-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tb-home-actions a {
  display: block;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tb-home-actions a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.tb-home-actions a.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.tb-home-actions a.secondary:hover {
  border-color: var(--primary);
  box-shadow: none;
}

.tb-home-actions a.admin {
  border: 1px solid #f59e0b;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.08);
}

.tb-home-actions a.admin:hover {
  background: rgba(245, 158, 11, 0.15);
  box-shadow: none;
}
