@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ════════════════════════════════════════
   ROOT DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --bg-body: #0b0d12;
  --bg-surface: #131620;
  --bg-surface-hover: #191d2b;
  --border: #1e2230;
  --border-focus: #25d366;

  --text-main: #f1f5f9;
  --text-sub: #94a3b8;
  --text-muted: #64748b;

  --brand: #25d366;
  --brand-hover: #1ebd59;
  --brand-glow: rgba(37, 211, 102, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  animation: fadeInPage 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Page enter animation */
@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page exit animation */
body.page-exit {
  animation: pageExit 0.28s ease forwards !important;
}
@keyframes pageExit {
  to { opacity: 0; transform: translateY(-10px); }
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #00ff87);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--brand-glow);
}

/* ════════════════════════════════════════
   PARTICLE CANVAS
════════════════════════════════════════ */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ════════════════════════════════════════
   CURSOR GLOW
════════════════════════════════════════ */
#cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.06s linear;
  top: 0; left: 0;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
  background: rgba(11, 13, 18, 0.97) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(37, 211, 102, 0.15) !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  transition: var(--transition);
}
.brand-logo:hover { transform: scale(1.03); }
.brand-logo span { color: var(--brand); }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--brand);
  color: #0b0d12;
}
.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

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

/* Ripple keyframe */
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero-section {
  padding: 50px 0 28px 0;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: heroSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  color: #ffffff;
  line-height: 1.2;
}
.hero-title span { color: var(--brand); }

.hero-subtitle {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 30px auto;
}

/* Typewriter cursor */
#typewriter-text::after {
  content: '|';
  animation: blink 0.75s infinite;
  color: var(--brand);
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ════════════════════════════════════════
   SEARCH BOX
════════════════════════════════════════ */
.search-form {
  max-width: 600px;
  margin: 0 auto 25px auto;
  position: relative;
  z-index: 2;
}
.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input {
  width: 100%;
  padding: 14px 120px 14px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}
.search-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  background: var(--bg-surface-hover);
}
.search-btn {
  position: absolute;
  right: 6px;
  padding: 8px 18px;
  background: var(--brand);
  color: #0b0d12;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-btn:hover {
  background: var(--brand-hover);
  transform: scale(1.03);
}

/* ════════════════════════════════════════
   HAMBURGER & SLIDING CATEGORY DRAWER
════════════════════════════════════════ */
.hamburger-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.hamburger-btn:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--brand);
  color: var(--brand);
  transform: scale(1.05);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #0f1118;
  border-right: 1px solid var(--border);
  box-shadow: 20px 0 50px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-overlay.active .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.02);
}
.drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.3px;
}
.drawer-close-icon {
  background: none;
  border: none;
  color: var(--text-sub);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.drawer-close-icon:hover { color: #ffffff; }

.drawer-body {
  padding: 14px;
  overflow-y: auto;
  flex: 1;
}

.drawer-category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-sub);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.drawer-category-item:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
  color: var(--brand);
  transform: translateX(4px);
}
.category-item-adult {
  color: #f87171;
}
.category-item-adult:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.3);
  color: #f87171;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   BEEG-STYLE VISUAL FEED GRID
════════════════════════════════════════ */
.beeg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  margin: 28px 0 55px 0;
  position: relative;
  z-index: 2;
}

.beeg-card {
  background: #101116;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  will-change: transform;
  opacity: 0;
  animation: cardFadeIn 0.5s ease both;
  display: flex;
  flex-direction: column;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.beeg-card:hover {
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* Card Preview Cover */
.beeg-preview-wrapper {
  position: relative;
  height: 156px;
  background: #050505;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

/* Stretched Blurred Background Cover */
.beeg-cover-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(14px) brightness(0.28);
  opacity: 0.65;
  transform: scale(1.15);
  transition: transform 0.4s ease;
}
.beeg-card:hover .beeg-cover-bg {
  transform: scale(1.22);
}

/* Centered Avatar Image */
.beeg-avatar {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  object-fit: cover;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.beeg-card:hover .beeg-avatar {
  transform: scale(1.08) rotate(-1deg);
  border-color: var(--brand);
}

/* Hover Overlay */
.beeg-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.beeg-preview-wrapper:hover .beeg-hover-overlay {
  opacity: 1;
}

.beeg-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #0b0d12;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.beeg-hover-overlay:hover .beeg-play-btn {
  transform: scale(1);
}

.beeg-overlay-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand);
}

/* Overlay Badge Tags */
.beeg-badge-left,
.beeg-badge-right {
  position: absolute;
  bottom: 8px;
  background: rgba(11, 13, 18, 0.8);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.beeg-badge-left {
  left: 8px;
  display: inline-flex;
  align-items: center;
}
.beeg-badge-right {
  right: 8px;
}

/* Card Details */
.beeg-info-wrapper {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beeg-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  flex: 1;
  transition: color 0.2s ease;
}
.beeg-title:hover {
  color: var(--brand);
}

.beeg-action-icon {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.beeg-action-icon:hover {
  color: var(--text-main);
}

.beeg-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
}

.beeg-category-tag {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beeg-report-link {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.beeg-report-link:hover {
  color: #ef4444;
}

/* ════════════════════════════════════════
   AD SLOT
════════════════════════════════════════ */
.ad-slot-container {
  margin: 20px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: scale(0.88) translateY(24px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

/* ════════════════════════════════════════
   GROUP DETAIL PAGE
════════════════════════════════════════ */
.preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  max-width: 700px;
  margin: 32px auto;
  text-align: center;
  animation: cardFadeIn 0.5s ease both;
  position: relative;
  z-index: 2;
}

.preview-avatar {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  border: 2px solid var(--brand);
  margin: 0 auto 18px auto;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.25);
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.2); }
  50%       { box-shadow: 0 0 40px rgba(37, 211, 102, 0.4); }
}

.preview-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.timer-box {
  background: rgba(37, 211, 102, 0.04);
  border: 1px dashed var(--brand);
  border-radius: var(--radius-md);
  padding: 26px;
  margin: 26px 0;
  animation: timerBorder 2.5s infinite ease-in-out;
}
@keyframes timerBorder {
  0%, 100% { border-color: var(--brand); box-shadow: 0 0 0 0 transparent; }
  50%       { border-color: rgba(37, 211, 102, 0.25); box-shadow: 0 0 16px var(--brand-glow); }
}

.timer-circle {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 8px;
  animation: timerCount 1s ease-in-out infinite alternate;
}
@keyframes timerCount {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* ════════════════════════════════════════
   SKELETON LOADING
════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-surface-hover) 50%, var(--bg-surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ════════════════════════════════════════
   TOAST NOTIFICATIONS
════════════════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: auto;
}
.toast.toast-show {
  opacity: 1;
  transform: translateX(0);
}
.toast-success { background: #16a34a; border-left: 4px solid #4ade80; }
.toast-error   { background: #dc2626; border-left: 4px solid #f87171; }
.toast-info    { background: #0369a1; border-left: 4px solid #38bdf8; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #07080c;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  margin-top: auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

/* ════════════════════════════════════════
   ADMIN PANEL
════════════════════════════════════════ */
.admin-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  animation: cardFadeIn 0.4s ease both;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-body);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.25);
}
.stat-card:hover::after { transform: scaleX(1); }

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.admin-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-sub);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ════════════════════════════════════════
   FORM ELEMENTS
════════════════════════════════════════ */
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
textarea.form-control { min-height: 100px; font-family: monospace; }

/* ════════════════════════════════════════
   FLOATING GLOW ORB (background accent)
════════════════════════════════════════ */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.glow-orb-1 {
  width: 400px; height: 400px;
  background: rgba(37, 211, 102, 0.04);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.glow-orb-2 {
  width: 300px; height: 300px;
  background: rgba(37, 211, 102, 0.03);
  bottom: 10%; left: -80px;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title { font-size: 1.7rem; }
  .preview-card { padding: 24px 16px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  
  .beeg-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .category-pills { justify-content: flex-start; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  #cursor-glow { display: none; }
  
  .beeg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .beeg-preview-wrapper {
    height: 120px;
  }
  
  .beeg-avatar {
    width: 52px;
    height: 52px;
  }
  
  .beeg-info-wrapper {
    padding: 10px;
  }
  
  .beeg-title {
    font-size: 0.85rem;
  }
}

