/*
 * Broooooo - Simple & Clean
 */

* {
  box-sizing: border-box;
}

body {
  background-color: #7DF9FF;
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0;
}

.container {
  max-width: 400px;
  margin: 0 auto;
  padding: 24px 16px;
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Bros List */
.bros-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bro-card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: visible;
  position: relative;
}

/* Bro card inner layout */
.bro-card-inner {
  display: flex;
  align-items: stretch;
  position: relative;
}

.bro-form {
  flex: 1;
}

.bro-btn {
  width: 100%;
  padding: 24px 20px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: center;
  color: #000;
  border-radius: 16px;
  transition: background-color 0.15s ease;
  /* Prevent text selection and touch behaviors on long press */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
}

.bro-btn:active {
  background: #f0f0f0;
}

/* Me button - full rounded corners (no menu) */
.me-btn-full {
  border-radius: 16px;
}

/* Menu wrapper - positioned absolutely to not affect text centering */
.menu-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  border-left: 1px solid #eee;
}

.menu-btn {
  width: 44px;
  height: 100%;
  border: none;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  padding: 0;
  border-radius: 0 16px 16px 0;
}

.menu-btn:active {
  background: #f5f5f5;
  color: #666;
}

/* Dropdown menu */
.bro-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.bro-menu .menu-action {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: left;
  color: #333;
}

.bro-menu .menu-action:active {
  background: #f5f5f5;
}

.bro-menu .menu-action.delete {
  color: #ff4444;
}

/* Silenced bro card */
.bro-card.silenced {
  opacity: 0.6;
}

.silenced-indicator {
  font-size: 14px;
  margin-left: 8px;
}

/* Flash animation when bro is sent */
.bro-card.sent {
  animation: flash 0.4s ease-out;
}

@keyframes flash {
  0% { background: #fff; }
  30% { background: #90EE90; }
  100% { background: #fff; }
}

.bro-card.sent .bro-btn {
  animation: flash 0.4s ease-out;
}

/* Press-and-hold animation */
.bro-card.pressing .bro-btn {
  transition: none;
}

.bro-card.max-intensity {
  animation: pulse 0.3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.bro-card.max-intensity .bro-btn {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Pending bro card (invite sent, not accepted) */
.bro-card.pending {
  opacity: 0.7;
}

.pending-btn {
  flex: 1;
  width: 100%;
  padding: 24px 20px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: center;
  color: #666;
  border-radius: 16px 0 0 16px;
}

.pending-btn-full {
  width: 100%;
  padding: 24px 20px;
  font-size: 20px;
  font-weight: 600;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: center;
  color: #666;
  border-radius: 16px;
}

.bro-card.pending .pending-label {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.bro-card.pending .tap-hint {
  display: block;
  font-size: 11px;
  color: #666;
  font-weight: 400;
  font-style: italic;
  margin-top: 4px;
}

/* Copy popover inside pending card */
.copy-popover {
  padding: 16px 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.copy-popover p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #666;
}

.copy-popover code {
  display: block;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  font-size: 11px;
  word-break: break-all;
  margin-bottom: 12px;
}

.popover-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.copy-popover .copy-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.copy-popover .cancel-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ff4444;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  color: #ff4444;
}

.copy-popover .cancel-link {
  margin-top: 0;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #333;
  list-style: none;
}

.empty-state p {
  font-size: 18px;
  margin: 0 0 8px 0;
}

.empty-state .hint {
  font-size: 14px;
  opacity: 0.7;
}

/* Not linked state */
.not-linked {
  text-align: center;
  padding: 48px 24px;
  color: #333;
}

.not-linked p {
  font-size: 16px;
  margin: 0 0 8px 0;
}

/* Setting up state (first user) */
.setting-up {
  text-align: center;
  padding: 48px 24px;
  color: #333;
}

.setting-up p {
  font-size: 16px;
  margin: 0;
}

/* Invite section */
.invite-section {
  margin-top: 24px;
}

.action-buttons {
  display: flex;
  gap: 12px;
}

.me-btn {
  flex: 1;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  border: 2px dashed #000;
  background: transparent;
  border-radius: 16px;
  cursor: pointer;
  color: #000;
  transition: background-color 0.15s ease;
}

.me-btn:active {
  background: rgba(0,0,0,0.05);
}

.invite-btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  border: 2px dashed #000;
  background: transparent;
  border-radius: 16px;
  cursor: pointer;
  color: #000;
  transition: background-color 0.15s ease;
}

.invite-btn:active {
  background: rgba(0,0,0,0.05);
}

/* Invite form (inline) */
.invite-form {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.invite-form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
}

.invite-form input[type="text"]:focus {
  outline: none;
  border-color: #000;
}

.invite-form button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.invite-form button[type="submit"]:active {
  background: #333;
}

/* Invite link display */
.invite-link {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.invite-link p {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #666;
}

.invite-link code {
  display: block;
  background: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  font-size: 12px;
  word-break: break-all;
  margin-bottom: 12px;
}

.invite-link .copy-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* Cancel link */
.cancel-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

/* Flash messages */
.flash {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
}

.flash__message {
  background: #000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

/* Invite accept page */
.invite-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.invite-message {
  font-size: 18px;
  margin: 0 0 24px 0;
}

.name-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.name-fields input {
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}

.name-fields input:focus {
  outline: none;
  border-color: #000;
}

.open-app-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  background: #000;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
}

.install-hint {
  margin: 16px 0 0 0;
  font-size: 14px;
  color: #666;
}

.install-hint--muted {
  color: #aaa;
  margin-top: 8px;
}

/* Edit form in bro card */
.edit-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
}

.edit-form form {
  flex: 1;
  display: flex;
  gap: 8px;
}

.edit-name-input {
  flex: 1;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.edit-name-input:focus {
  outline: none;
  border-color: #000;
}

.edit-save-btn {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.edit-save-btn:active {
  background: #333;
}

.edit-form .cancel-link {
  margin: 0;
  padding: 10px;
  white-space: nowrap;
}

/* Static pages (Privacy, Support) */
.page-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-card h1 {
  font-size: 24px;
  margin: 0 0 8px 0;
  color: #000;
}

.page-card .updated {
  font-size: 12px;
  color: #666;
  margin: 0 0 24px 0;
}

.page-card h2 {
  font-size: 18px;
  margin: 24px 0 12px 0;
  color: #000;
}

.page-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 12px 0;
}

.page-card ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
}

.page-card li {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 4px;
}

.page-card a {
  color: #000;
  text-decoration: underline;
}

/* Support form */
.support-form {
  margin-top: 24px;
}

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

.support-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.support-form input[type="email"],
.support-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

.support-form input[type="email"]:focus,
.support-form textarea:focus {
  outline: none;
  border-color: #000;
}

.support-form textarea {
  resize: vertical;
  min-height: 120px;
}

.support-form .submit-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.support-form .submit-btn:active {
  background: #333;
}

.form-errors {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.form-errors p {
  color: #c00;
  margin: 0;
  font-size: 14px;
}

/* Success card */
.success-card {
  text-align: center;
  padding: 48px 24px;
}

.success-card h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.success-card p {
  font-size: 16px;
  margin-bottom: 24px;
}

.back-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.back-link:active {
  background: #333;
}


/* =====================
   Landing page
   ===================== */

.landing-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.landing-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.ascii-art {
  font-family: monospace;
  font-size: 9px;
  line-height: 1.25;
  color: #000;
  margin: 0;
  white-space: pre;
  overflow-x: auto;
  letter-spacing: 0;
}

@media (min-width: 420px) {
  .ascii-art { font-size: 13px; }
}

.ascii-art--small {
  font-size: 7px;
}

@media (min-width: 420px) {
  .ascii-art--small { font-size: 10px; }
}

.tagline {
  font-size: 17px;
  color: #222;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.invite-only-badge {
  display: inline-block;
  background: rgba(0,0,0,0.08);
  color: #333;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.flash-success {
  background: rgba(0,0,0,0.07);
  color: #111;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  width: 100%;
}

/* Primary CTA button */
.landing-cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: inherit;
}

.landing-cta-btn:active {
  color: #000;
}

/* App Store badges */
.app-store-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.store-badge-ios {
  display: block;
  width: 100%;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #000;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid #000;
  transition: background 0.15s ease, color 0.15s ease;
}

.store-badge-ios:active {
  background: #000;
  color: #fff;
}

.store-badge-android {
  display: block;
  width: 100%;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.12);
}

/* Landing footer links */
.landing-links {
  font-size: 13px;
  color: #555;
}

.landing-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.landing-links a:hover {
  text-decoration: underline;
}

.landing-links .separator {
  margin: 0 10px;
  color: #bbb;
}

/* =====================
   Invite request page
   ===================== */

.request-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  text-align: left;
  width: 100%;
}

.request-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #000;
  letter-spacing: -0.4px;
}

.request-card__intro {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.invite-request-form .form-group {
  margin-bottom: 12px;
}

.invite-request-form input[type="email"],
.invite-request-form input[type="text"] {
  width: 100%;
  padding: 13px 14px;
  font-size: 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.invite-request-form input[type="email"]:focus,
.invite-request-form input[type="text"]:focus {
  outline: none;
  border-color: #000;
  background: #fff;
}

.request-card .back-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #888;
  font-size: 14px;
  text-decoration: none;
}

.request-card .back-link:hover {
  color: #333;
}

/* Login page (demo mode) */
.login-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.login-card .ascii-art {
  margin-bottom: 32px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: inherit;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  outline: none;
  border-color: #000;
}

.login-form button[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.login-form button[type="submit"]:active {
  background: #333;
}

.login-error {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #c00;
  font-size: 14px;
}

.skip-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: 8px;
  font-family: inherit;
}

.skip-link:active {
  color: #333;
}

.demo-explanation {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.preview-button {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
}

.preview-button:active {
  background: #333;
}

.demo-separator {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #ccc;
  font-size: 13px;
}

.demo-separator::before,
.demo-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #eee;
}

.demo-separator span {
  padding: 0 12px;
}

.demo-link-button {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
}

.demo-link-button:active {
  background: #f5f5f5;
}

/* Message selector (predefined messages feature) */
.message-selector {
  padding: 12px;
  border-top: 1px solid #eee;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message-option {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  color: #333;
  transition: all 0.15s ease;
}

.message-option:first-child {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #2e7d32;
}

.message-option:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.message-option:first-child:hover {
  background: #c8e6c9;
}

.message-option:active {
  transform: scale(0.98);
}

.bro-card.selecting-message {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.bro-card.selecting-message .bro-btn {
  background: #f5f5f5;
}

/* Stats Link Section - Footer style */
.stats-link-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: transparent;
  text-align: center;
}

.stats-link-btn {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #666;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: opacity 0.15s ease;
}

.stats-link-btn:active {
  opacity: 0.7;
}

/* Inline Streak Badge */
.streak-badge-inline {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #fff;
  border-radius: 12px;
  vertical-align: middle;
}

/* Stats Page Header */
.stats-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.stats-header .back-arrow {
  font-size: 24px;
  text-decoration: none;
  color: #000;
  padding: 8px;
}

.stats-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stat {
  flex: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.hero-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Stats Cards */
.stats-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stats-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #333;
}

.stats-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 16px 0 12px 0;
  color: #666;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row.highlight {
  background: #f8f9fa;
  margin: 0 -20px;
  padding: 12px 20px;
  border-bottom: none;
}

.stat-row.highlight:first-of-type {
  border-radius: 8px 8px 0 0;
}

.stat-row.highlight:last-of-type {
  border-radius: 0 0 8px 8px;
}

.stat-label {
  font-size: 15px;
  color: #666;
}

.stat-value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.empty-stat {
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
  margin: 0;
}

/* Activity Chart */
.activity-chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 120px;
  padding: 10px 0;
}

.chart-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.chart-bar-container {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 4px;
}

.chart-bar {
  width: 100%;
  max-width: 32px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  position: relative;
  transition: height 0.3s ease;
}

.chart-count {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #667eea;
}

.chart-label {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Streak List */
.streak-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.streak-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.streak-item:last-child {
  border-bottom: none;
}

.streak-name {
  font-size: 15px;
  color: #333;
}

.streak-badge {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #fff;
  border-radius: 12px;
}
