:root {
  --primary: #1a73e8;
  --primary-rgb: 26, 115, 232;
  --secondary: #f8c054;
  --secondary-rgb: 248, 192, 84;
  --success: #22c55e;
  --success-rgb: 34, 197, 94;
  --warning: #f59e0b;
  --warning-rgb: 245, 158, 11;
  --dark: #0f172a;
  --dark-rgb: 15, 23, 42;
  --text: #334155;
  --text-light: #64748b;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --surface: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --gradient-primary: linear-gradient(135deg, #1a73e8, #0052cc);
  --gradient-secondary: linear-gradient(135deg, #f8c054, #f59e0b);
  --gradient-success: linear-gradient(135deg, #22c55e, #16a34a);
  --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
  --gradient-surface: linear-gradient(135deg, #ffffff, #f8fafc);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hide All Scrollbars */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* Base Styles & Typography */
.activity-showcase {
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow-x: hidden;
  position: relative;
}

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

/* Advanced Background Patterns */
.activity-showcase::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(26, 115, 232, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(248, 192, 84, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(15, 23, 42, 0.02) 0%,
      transparent 50%
    );
  z-index: -2;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(1deg);
  }
}

/* Floating Geometric Shapes */
.geometric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.geometric-shape {
  position: absolute;
  background: linear-gradient(
    45deg,
    rgba(26, 115, 232, 0.05),
    rgba(248, 192, 84, 0.05)
  );
  border-radius: 50%;
  animation: floatGeometric 15s ease-in-out infinite;
}

.geometric-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.geometric-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -100px;
  animation-delay: 5s;
}

.geometric-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 70%;
  animation-delay: 10s;
}

@keyframes floatGeometric {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Ultra Cinematic Hero */
.cinematic-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: brightness(0.6) contrast(1.2) saturate(1.1);
  transition: all 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at center,
      rgba(var(--dark-rgb), 0.2) 0%,
      rgba(var(--dark-rgb), 0.8) 100%
    ),
    linear-gradient(
      135deg,
      rgba(var(--primary-rgb), 0.1) 0%,
      rgba(var(--secondary-rgb), 0.1) 100%
    );
  z-index: 1;
}

/* Particle System */
.particle-system {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) translateX(-10px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-40px) translateX(30px) scale(1.1);
    opacity: 0.7;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s 0.3s ease forwards;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s 0.6s ease forwards;
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 192, 84, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s 0.9s ease forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-secondary);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(var(--secondary-rgb), 0.4);
  transition: var(--transition-bounce);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s 1.2s ease forwards;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(var(--secondary-rgb), 0.6);
  color: var(--dark);
}

.hero-cta i {
  transition: transform 0.3s ease;
}

.hero-cta:hover i {
  transform: translateX(5px);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Ultra-Modern Content Area */
.content-area {
  position: relative;
  z-index: 10;
  background: var(--gradient-surface);
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  padding: 100px 0;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* NEW: Quick Stats Cards */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card-modern {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(var(--neutral-200), 0.5);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.stat-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.stat-card-modern .stat-icon-large {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.stat-card-modern h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.stat-card-modern p {
  color: var(--text-light);
  font-weight: 600;
}

/* Premium Navigation Dashboard */
.premium-dashboard {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.premium-dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.premium-dashboard::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(26, 115, 232, 0.02) 0%,
    transparent 70%
  );
  animation: dashboardGlow 10s ease-in-out infinite;
}

@keyframes dashboardGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

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

.dashboard-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 16px;
}

.title-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

/* NEW: Filter and Query Section */
.filter-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

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

.filter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.query-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.query-input {
  width: 100%;
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px 16px 50px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition-base);
}

.query-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  background: white;
}

.query-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 18px;
  pointer-events: none;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-select {
  background: white;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 12px 40px 12px 16px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  min-width: 180px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Ultra-Premium Activity Grid */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.premium-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  position: relative;
  border: 1px solid rgba(var(--neutral-200), 0.5);
  group: hover;
  /* REMOVED: Initial loading state - cards appear immediately */
  opacity: 1;
  transform: translateY(0) scale(1);
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 115, 232, 0.02),
    rgba(248, 192, 84, 0.02)
  );
  opacity: 0;
  transition: var(--transition-base);
  z-index: 1;
  pointer-events: none;
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.card-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  /* OPTIMIZED: Faster image loading */
  opacity: 1;
  filter: none;
  loading: eager;
  decoding: sync;
}

.premium-card:hover .card-image {
  transform: scale(1.1) rotate(1deg);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.1) 0%,
    rgba(var(--primary-rgb), 0.2) 50%,
    rgba(var(--secondary-rgb), 0.1) 100%
  );
  opacity: 0;
  transition: var(--transition-base);
}

.premium-card:hover .card-overlay {
  opacity: 1;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-bounce);
  z-index: 2;
}

.premium-card:hover .floating-badge {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-5px) scale(1.05);
}

/* NEW: Activity Status Badge */
.status-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.status-badge.completed {
  background: var(--gradient-success);
  color: white;
}

.status-badge.ongoing {
  background: var(--gradient-secondary);
  color: var(--dark);
}

.status-badge.upcoming {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.premium-content {
  padding: 36px;
  position: relative;
  z-index: 2;
}

.content-header {
  margin-bottom: 20px;
}

.content-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark);
  transition: var(--transition-base);
}

.premium-card:hover .content-title {
  color: var(--primary);
}

.content-description {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* NEW: Enhanced Activity Metrics */
.activity-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

.engagement-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}

.engagement-item i {
  color: var(--primary);
  font-size: 16px;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.primary-action {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
  flex: 1;
  justify-content: center;
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
  color: white;
  text-decoration: none;
}

.primary-action i {
  transition: transform 0.3s ease;
}

.primary-action:hover i {
  transform: translateX(3px);
}

.secondary-actions {
  display: flex;
  gap: 12px;
}

.action-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--neutral-200);
  border-radius: 50%;
  background: white;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 18px;
}

.action-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.2);
}

/* NEW: Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}

.empty-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 48px;
  color: white;
  opacity: 0.8;
}

.empty-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.empty-description {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 32px;
}

.empty-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-secondary);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.3);
}

.empty-action:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(var(--secondary-rgb), 0.4);
}

/* Enhanced Pagination */
.pagination-section {
  text-align: center;
  margin-top: 80px;
}

.pagination-container {
  display: inline-block;
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

/* REMOVED: All card loading animations */
/* REMOVED: Card Animation System */
/* REMOVED: @keyframes cardReveal */

/* Responsive Excellence */
@media (max-width: 1200px) {
  .premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cinematic-hero {
    height: 80vh;
    min-height: 600px;
  }

  .hero-content {
    padding: 0 8%;
  }

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quick-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .premium-dashboard {
    padding: 28px;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .filter-section {
    padding: 24px;
  }

  .filter-header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .query-box {
    max-width: 100%;
  }

  .filter-controls {
    justify-content: center;
  }

  .premium-content {
    padding: 28px;
  }

  .content-title {
    font-size: 22px;
  }

  .card-actions {
    flex-direction: column;
  }

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

  .activity-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 0 5%;
  }

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

  .premium-dashboard {
    padding: 20px;
  }

  .filter-section {
    padding: 20px;
  }

  .premium-content {
    padding: 20px;
  }

  .content-title {
    font-size: 20px;
  }

  .card-image-wrapper {
    height: 250px;
  }

  .activity-metrics {
    grid-template-columns: 1fr;
  }
}
