:root {
  --bg-dark: #1a1612;
  --bg-card: #2a2420;
  --bg-elevated: #352f2a;
  --bg-cream: #fff8f3;
  --bg-cream-light: #fff5eb;
  --primary: #e85d4c;
  --primary-hover: #d14a3a;
  --primary-light: #ff8a7a;
  --primary-glow: rgba(232, 93, 76, 0.3);
  --secondary: #d4a574;
  --secondary-hover: #c49464;
  --text-primary: #2a2420;
  --text-secondary: #6b5f57;
  --text-light: #9a8a7e;
  --text-cream: #5a4f48;
  --border: #e8e0d8;
  --border-light: #f0e8e0;
  --gradient: linear-gradient(135deg, #e85d4c 0%, #f28b82 100%);
  --gradient-warm: linear-gradient(135deg, #e85d4c 0%, #f4a261 100%);
  --shadow-sm: 0 2px 8px rgba(42, 36, 32, 0.08);
  --shadow-md: 0 4px 16px rgba(42, 36, 32, 0.12);
  --shadow-lg: 0 8px 32px rgba(42, 36, 32, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

[data-theme="dark"] {
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --bg-elevated: #252525;
  --bg-cream: #141414;
  --bg-cream-light: #1e1e1e;
  --text-primary: #e8e8e8;
  --text-secondary: #a0a0a0;
  --text-light: #707070;
  --text-cream: #c8c8c8;
  --border: #333333;
  --border-light: #2a2a2a;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Dark mode overrides for hardcoded colors */
[data-theme="dark"] .features,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .card,
[data-theme="dark"] .show-card,
[data-theme="dark"] .announcement,
[data-theme="dark"] .file-item,
[data-theme="dark"] .link-item,
[data-theme="dark"] .member-card,
[data-theme="dark"] .event-card,
[data-theme="dark"] .chat-message,
[data-theme="dark"] .sidebar,
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: var(--bg-card);
  color: var(--text-primary);
}

[data-theme="dark"] .btn,
[data-theme="dark"] button,
[data-theme="dark"] .nav-btn {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-hover);
}

/* Dark mode base fixes */
[data-theme="dark"] {
  --text-on-dark: #e8e8e8;
}

/* Fix hardcoded white backgrounds in dark mode */
[data-theme="dark"] .landing,
[data-theme="dark"] .features,
[data-theme="dark"] .modal,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .card,
[data-theme="dark"] .show-card,
[data-theme="dark"] .announcement,
[data-theme="dark"] .file-item,
[data-theme="dark"] .link-item,
[data-theme="dark"] .member-card,
[data-theme="dark"] .event-card,
[data-theme="dark"] .chat-message,
[data-theme="dark"] .sidebar,
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .search-box,
[data-theme="dark"] .dropdown-content,
[data-theme="dark"] .toast {
  background: var(--bg-card);
  color: var(--text-primary);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: var(--bg-elevated) !important;
  color: var(--text-primary) !important;
  border-color: var(--border);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Landing Page */
.landing {
  min-height: 100vh;
  background: 
    radial-gradient(ellipse 100% 80% at 20% 0%, rgba(232, 93, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    var(--bg-cream);
}

[data-theme="dark"] .landing {
  background: 
    radial-gradient(ellipse 100% 80% at 20% 0%, rgba(232, 93, 76, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    var(--bg-dark);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 248, 243, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

[data-theme="dark"] .navbar {
  background: rgba(20, 20, 20, 0.9);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn.secondary {
  background: white;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.nav-btn.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-btn.primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.nav-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: rgba(232, 93, 76, 0.12);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(212, 165, 116, 0.15);
  bottom: -100px;
  left: -50px;
  animation-delay: 2s;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 138, 122, 0.1);
  top: 40%;
  left: 30%;
  animation-delay: 4s;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
  animation: slideUp 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero h1 .gradient-text {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-warm);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--primary-glow);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-danger {
  background: #dc2626;
  color: white;
}

/* Features */
.features {
  padding: 6rem 2rem;
  background: var(--bg-cream);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.features > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeIn 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.feature-icon.announce { background: linear-gradient(135deg, #e85d4c 0%, #f28b82 100%); }
.feature-icon.calendar { background: linear-gradient(135deg, #d4a574 0%, #e9c46a 100%); }
.feature-icon.media { background: linear-gradient(135deg, #9b5de5 0%, #c77dff 100%); }
.feature-icon.chat { background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%); }
.feature-icon.invite { background: linear-gradient(135deg, #00b4d8 0%, #48cae4 100%); }
.feature-icon.collaborate { background: linear-gradient(135deg, #06d6a0 0%, #4cc9f0 100%); }

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

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

/* How It Works */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--bg-cream);
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  animation: fadeIn 0.6s ease-out backwards;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.step-number {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 30px var(--primary-glow);
  color: white;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

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

.footer {
  padding: 3rem 2rem;
  background: var(--bg-dark);
  text-align: center;
}

.footer .logo {
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.footer p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

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

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

/* Professional Page */
.professional-page .navbar {
  position: relative;
}

.professional-page .nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
}

.professional-page .nav-link:hover {
  color: var(--primary);
}

.prof-hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: 
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(232, 93, 76, 0.12) 0%, transparent 60%),
    var(--bg-cream);
}

.prof-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.prof-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-section, .calculator-section, .cta-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section h2, .calculator-section h2, .cta-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.calculator-section p, .cta-section p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-card li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 0.5rem;
}

.calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.calc-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calc-input label {
  flex: 1;
  font-weight: 500;
}

.calc-input input[type="range"] {
  width: 150px;
  accent-color: var(--primary);
}

.calc-input span {
  font-weight: 600;
  color: var(--primary);
  min-width: 40px;
}

.calc-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.result-card {
  background: var(--bg-cream-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.result-card.free-tier {
  background: var(--bg-cream-light);
}

.result-card h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.result-card .result-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.result-card .result-price span {
  font-size: 0.9rem;
  font-weight: 400;
}

.savings {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.savings p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-section {
  background: 
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 93, 76, 0.08) 0%, transparent 50%),
    var(--bg-cream);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232, 93, 76, 0.08) 0%, transparent 50%),
    var(--bg-cream);
}

.auth-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s ease-out;
}

.auth-card h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus {
  background: var(--bg-elevated);
}

.password-strength {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.strength-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
}

.strength-text {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  text-align: right;
}

.password-requirements {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.req-item {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.req-item.met {
  color: #44ff44;
}

.req-icon {
  font-size: 0.7rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.group-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.group-access {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
}

.group-access label {
  font-weight: 600;
  font-size: 0.9rem;
}

.upload-section {
  margin-bottom: 1.5rem;
}

.media-access, .link-access {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Dashboard */
.dashboard {
  display: flex;
  min-height: 100vh;
  background: var(--bg-cream);
}

.sidebar {
  width: 280px;
  background: white;
  border-right: 2px solid var(--border-light);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
}

.sidebar-header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header .logo {
  font-size: 1.35rem;
}

.theme-toggle {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.theme-icon {
  display: block;
  line-height: 1;
}

.sidebar-nav {
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.nav-item:hover {
  background: var(--bg-cream-light);
  color: var(--text-primary);
}

.nav-item.active {
  background: var(--gradient-warm);
  color: white;
}

.nav-item .icon {
  font-size: 1.25rem;
}

.sidebar-footer {
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-light);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.user-info:hover {
  background: var(--bg-cream-light);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  overflow: hidden;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.user-email {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 2rem;
  background: var(--bg-cream);
  min-height: 100vh;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-header h1 {
  font-size: 1.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box input {
  padding: 0.6rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-cream-light);
  color: var(--text-primary);
  font-size: 0.95rem;
  width: 220px;
  transition: all 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  width: 280px;
}

.show-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.show-color-picker {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  background: transparent;
}

.show-color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.show-color-picker::-webkit-color-swatch {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
}

.show-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 2rem;
  background: white;
  padding: 0.35rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
}

.tab-btn {
  padding: 0.7rem 1.25rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--gradient-warm);
  color: white;
  box-shadow: var(--shadow-sm);
}

/* Shows Grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.show-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.show-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.show-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.show-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.show-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 36, 32, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 100px;
}

/* Announcements */
.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announcement-item {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.announcement-item:hover {
  border-color: var(--primary-light);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.announcement-author {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.announcement-time {
  font-size: 0.8rem;
  color: var(--text-light);
}

.announcement-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.announcement-reactions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reactions-display {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.reaction-badge {
  background: var(--bg-cream-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.25rem 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.reaction-badge:hover {
  background: var(--bg-elevated);
  border-color: var(--primary);
}

.reaction-badge.reacted {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.reaction-count {
  font-size: 0.8rem;
  opacity: 0.8;
}

.reaction-picker {
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.announcement-item:hover .reaction-picker {
  opacity: 1;
}

.reaction-picker-btn {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.reaction-picker-btn:hover {
  transform: scale(1.2);
  background: var(--bg-elevated);
}

.new-announcement {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.new-announcement textarea {
  width: 100%;
  padding: 0.9rem;
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  min-height: 90px;
  transition: all 0.2s ease;
}

.new-announcement textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

/* Calendar */
.calendar-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .calendar-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.calendar-container {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

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

.calendar-nav {
  display: flex;
  gap: 0.35rem;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  color: var(--text-primary);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.calendar-nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-header {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 700;
}

.calendar-day {
  aspect-ratio: 1;
  padding: 0.25rem;
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.5;
}

.calendar-day:hover {
  background: var(--primary-glow);
  color: var(--primary);
}

.calendar-day.other-month {
  opacity: 0.35;
}

.calendar-day.today {
  border: 2px solid var(--primary);
  font-weight: 700;
}

.calendar-day.has-events::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin: 2px auto 0;
}

.calendar-events h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.event-item {
  background: var(--bg-cream-light);
  border-left: 4px solid var(--primary);
  padding: 0.9rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.event-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.event-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.event-group {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-lg);
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.event-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.rsvp-count {
  font-size: 0.75rem;
  color: var(--text-light);
}

.rsvp-buttons {
  display: flex;
  gap: 0.25rem;
}

.rsvp-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: white;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.rsvp-btn:hover {
  border-color: var(--primary);
}

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

.delete-event {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.delete-event:hover {
  opacity: 1;
}

/* Media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.media-item {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.media-preview {
  aspect-ratio: 1;
  background: var(--bg-cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-info {
  padding: 0.75rem;
}

.media-name {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.upload-settings {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.donate-prompt {
  background: linear-gradient(135deg, #e85d4c 0%, #f4a261 100%);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  text-align: center;
}

.donate-prompt p {
  color: white;
  margin-bottom: 0.5rem;
}

.donate-prompt .donate-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.donate-prompt .btn {
  background: white;
  color: #e85d4c;
}

.upload-status {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
}

.toggle-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

.toggle-label-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.85rem;
}

.toggle-label-sm input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.upload-disabled-msg {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.upload-area {
  border: 3px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  margin-bottom: 2rem;
  background: var(--bg-cream-light);
  transition: all 0.3s ease;
}

.upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.upload-area .icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

/* Chat */
.chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 260px);
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-cream-light);
}

.chat-message {
  max-width: 75%;
  animation: fadeIn 0.3s ease-out;
}

.chat-message.own {
  align-self: flex-end;
}

.message-author {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.message-avatar {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.message-content {
  background: white;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-sm);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.chat-message.own .message-content {
  background: var(--gradient-warm);
  color: white;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-sm);
}

.message-time {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  text-align: right;
}

.chat-input {
  padding: 1rem;
  background: white;
  border-top: 2px solid var(--border-light);
  display: flex;
  gap: 0.75rem;
}

.chat-input input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

/* Members */
.members-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.member-item {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  transition: all 0.2s ease;
}

.member-item:hover {
  border-color: var(--primary-light);
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  overflow: hidden;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  flex: 1;
  min-width: 150px;
}

.member-name {
  font-weight: 700;
  font-size: 1rem;
}

.member-email {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.member-groups {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.member-role {
  padding: 0.35rem 0.85rem;
  background: var(--secondary);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 700;
}

.member-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.group-select {
  padding: 0.5rem 0.75rem;
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* Groups */
.groups-section {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.groups-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.groups-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.group-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
}

.group-color {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.group-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
}

.group-count {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Invite */
.invite-section {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.invite-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.invite-link {
  display: flex;
  gap: 0.5rem;
}

.invite-link input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: var(--bg-cream-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: monospace;
  font-size: 0.85rem;
}

/* Links */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-item {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s ease;
}

.link-item:hover {
  border-color: var(--primary-light);
}

.link-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.link-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.link-url {
  font-size: 0.85rem;
  color: var(--text-secondary);
  word-break: break-all;
}

.link-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.35rem;
}

.link-actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state .icon {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

.empty-state h3 {
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
}

.empty-state p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.empty-state-sm {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Loading */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

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

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  font-weight: 600;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: var(--secondary);
  background: linear-gradient(135deg, white 0%, #f0fdf4 100%);
}

.toast.error {
  border-color: var(--primary);
  background: linear-gradient(135deg, white 0%, #fef2f2 100%);
}

/* Confirm Toast */
.confirm-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideUp 0.3s ease-out;
}

.confirm-buttons {
  display: flex;
  gap: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  
  .hero {
    padding: 6rem 1rem 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard {
    flex-direction: column;
  }
  
  .sidebar {
    position: relative;
    width: 100%;
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .sidebar-header {
    padding: 0;
    border: none;
    margin: 0;
  }
  
  .sidebar-nav {
    display: none;
  }
  
  .sidebar-footer {
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .sidebar-footer .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .main-content {
    margin-left: 0;
    padding: 1rem;
  }
  
  .calendar-wrapper {
    grid-template-columns: 1fr;
  }
  
  .chat-message {
    max-width: 90%;
  }
  
  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .confirm-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.status-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.status-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.users-table, .shows-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-row, .show-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--bg-cream-light);
  border-radius: var(--radius-md);
  gap: 1rem;
}

.user-info-cell, .show-info-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.user-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.user-meta, .show-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.user-actions {
  display: flex;
  gap: 0.5rem;
}

.show-color {
  width: 12px;
  height: 36px;
  border-radius: 4px;
}

.badge.verified {
  background: #44ff44;
  color: black;
}

.badge.unverified {
  background: #ffaa44;
  color: black;
}

.badge.admin {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .user-row, .show-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
