/* ============================================================
   HAMII XD // LIKE SYSTEM — Design System
   Modern Cyberpunk UI — v3.0
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #06060e;
  --bg-secondary: #0c0c18;
  --bg-card: rgba(12, 12, 24, 0.85);
  --bg-card-hover: rgba(18, 18, 36, 0.95);
  --bg-sidebar: rgba(8, 8, 16, 0.95);
  --bg-input: rgba(10, 10, 20, 0.8);

  --accent-cyan: #00e5ff;
  --accent-pink: #ff2d7b;
  --accent-purple: #a855f7;
  --accent-green: #00ff88;
  --accent-blue: #3b82f6;
  --accent-orange: #ff8c00;
  --accent-yellow: #ffd600;
  --accent-red: #ff3333;

  --text-primary: #f0f0f8;
  --text-secondary: #8888a8;
  --text-muted: #555570;
  --text-accent: var(--accent-cyan);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(0, 229, 255, 0.12);
  --border-active: rgba(0, 229, 255, 0.4);

  --glass-bg: rgba(12, 12, 24, 0.7);
  --glass-blur: 20px;
  --glass-border: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 20px rgba(0, 229, 255, 0.15);
  --shadow-glow-pink: 0 0 20px rgba(255, 45, 123, 0.15);
  --shadow-glow-green: 0 0 20px rgba(0, 255, 136, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --sidebar-width: 72px;
  --sidebar-expanded: 240px;
  --header-height: 64px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace !important;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

input {
  font-family: inherit;
  outline: none;
  border: none;
}

/* ---- Animated Background ---- */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

.bg-glow-1 {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 15s ease-in-out infinite alternate;
}

.bg-glow-2 {
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 45, 123, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

/* ---- Scanline Overlay ---- */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%,
    rgba(0, 0, 0, 0.15) 50%
  );
  background-size: 100% 3px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.3;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 229, 255, 0.5);
}

/* ============================================================
   LAYOUT: Sidebar
   ============================================================ */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: width var(--transition-normal);
  overflow: hidden;
}

.sidebar:hover {
  width: var(--sidebar-expanded);
}

.sidebar-logo {
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.sidebar-logo .logo-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg-primary);
  letter-spacing: -1px;
}

.sidebar-logo .logo-text {
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.sidebar:hover .logo-text {
  opacity: 1;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-section {
  padding: 8px 16px 4px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sidebar:hover .nav-section {
  opacity: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin: 2px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  color: var(--text-secondary);
}

.nav-item:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--text-primary);
}

.nav-item.active {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-cyan);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--accent-cyan);
  border-radius: 0 2px 2px 0;
}

.nav-item i {
  width: 20px;
  min-width: 20px;
  text-align: center;
  font-size: 16px;
}

.nav-item .nav-label {
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-size: 13px;
  font-weight: 500;
}

.sidebar:hover .nav-label {
  opacity: 1;
}

.sidebar-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 12px 8px;
}

.sidebar-footer .nav-item {
  color: var(--accent-pink);
}

.sidebar-footer .nav-item:hover {
  background: rgba(255, 45, 123, 0.1);
}

/* Mobile sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 101;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
  display: block;
  opacity: 1;
}

.hamburger {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--accent-cyan);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hamburger:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow-cyan);
}

/* ============================================================
   LAYOUT: Main Content
   ============================================================ */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  position: relative;
  z-index: 1;
  transition: margin-left var(--transition-normal);
}

/* ---- Top Header Bar ---- */
.top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(6, 6, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.header-title span {
  color: var(--accent-cyan);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

.clock-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-cyan);
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 45, 123, 0.08);
  border: 1px solid rgba(255, 45, 123, 0.25);
  color: var(--accent-pink);
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.logout-btn:hover {
  background: rgba(255, 45, 123, 0.15);
  box-shadow: var(--shadow-glow-pink);
}

/* ---- Content Area ---- */
.content {
  padding: 24px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================================
   COMPONENTS: Cards
   ============================================================ */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-card);
}

/* ---- Stat Cards ---- */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-card);
}

.stat-card .stat-bg-icon {
  position: absolute;
  right: -8px;
  bottom: -8px;
  font-size: 80px;
  opacity: 0.04;
  transition: opacity var(--transition-normal);
}

.stat-card:hover .stat-bg-icon {
  opacity: 0.08;
}

.stat-card .stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stat-card .stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stat-card .stat-value {
  font-size: 36px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.stat-card .stat-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Color variants */
.stat-cyan .stat-icon {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.stat-cyan .stat-value { color: var(--accent-cyan); }

.stat-pink .stat-icon {
  background: rgba(255, 45, 123, 0.1);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 45, 123, 0.2);
}
.stat-pink .stat-value { color: var(--accent-pink); }

.stat-green .stat-icon {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.2);
}
.stat-green .stat-value { color: var(--accent-green); }

.stat-purple .stat-icon {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.stat-purple .stat-value { color: var(--accent-purple); }

.stat-blue .stat-icon {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.stat-blue .stat-value { color: var(--accent-blue); }

.stat-orange .stat-icon {
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 140, 0, 0.2);
}
.stat-orange .stat-value { color: var(--accent-orange); }

/* ---- Glow variants on hover ---- */
.stat-cyan:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
}
.stat-pink:hover {
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.1);
  border-color: rgba(255, 45, 123, 0.3);
}
.stat-green:hover {
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
}
.stat-purple:hover {
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
}

/* ============================================================
   COMPONENTS: Tables
   ============================================================ */
.table-container {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table thead th {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background var(--transition-fast);
}

.data-table tbody tr:hover {
  background: rgba(0, 229, 255, 0.03);
}

.data-table tbody td {
  padding: 12px 16px;
  white-space: nowrap;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.badge-error {
  background: rgba(255, 51, 51, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(255, 51, 51, 0.25);
}

.badge-warning {
  background: rgba(255, 214, 0, 0.1);
  color: var(--accent-yellow);
  border: 1px solid rgba(255, 214, 0, 0.25);
}

.badge-info {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.badge-pink {
  background: rgba(255, 45, 123, 0.1);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 45, 123, 0.25);
}

.badge-region-ind {
  background: rgba(255, 45, 123, 0.1);
  color: var(--accent-pink);
  border: 1px solid rgba(255, 45, 123, 0.2);
}

.badge-region-nx {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.badge-region-ag {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ============================================================
   COMPONENTS: Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: var(--bg-primary);
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transform: translateY(-1px);
}

.btn-danger {
  background: rgba(255, 45, 123, 0.1);
  color: var(--accent-pink);
  border-color: rgba(255, 45, 123, 0.3);
}

.btn-danger:hover {
  background: rgba(255, 45, 123, 0.2);
  box-shadow: var(--shadow-glow-pink);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-card);
  color: var(--text-primary);
}

.btn-cyan {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border-color: rgba(0, 229, 255, 0.3);
}

.btn-cyan:hover {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: var(--shadow-glow-cyan);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   COMPONENTS: Forms
   ============================================================ */
.input-field {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.input-field:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
  background: rgba(10, 10, 20, 1);
}

.input-field::placeholder {
  color: var(--text-muted);
}

/* ============================================================
   COMPONENTS: Modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition-normal);
}

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

.modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.modal-actions .btn {
  flex: 1;
}

/* ============================================================
   COMPONENTS: Toast
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 360px;
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-color: rgba(0, 255, 136, 0.3);
  color: var(--accent-green);
}

.toast-error {
  border-color: rgba(255, 51, 51, 0.3);
  color: var(--accent-red);
}

.toast-info {
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan);
}

/* ============================================================
   COMPONENTS: Like Request Card (Redesigned Cyber Gaming - Ultra)
   ============================================================ */
.like-card {
  position: relative;
  background: linear-gradient(145deg, rgba(14, 16, 32, 0.95), rgba(6, 7, 18, 0.98)) !important;
  border: 1px solid rgba(0, 229, 255, 0.22) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(24px) !important;
}

.like-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 18px 18px 0 0;
  transition: all 0.3s ease;
}

.like-card.status-success::before {
  background: linear-gradient(90deg, #00ff88, #00e5ff);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.8);
}

.like-card.status-nolikes::before {
  background: linear-gradient(90deg, #00e5ff, #3b82f6);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.8);
}

.like-card.status-error::before {
  background: linear-gradient(90deg, #ff3333, #ff2d7b);
  box-shadow: 0 0 14px rgba(255, 51, 51, 0.8);
}

.like-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(0, 229, 255, 0.5) !important;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 229, 255, 0.25) !important;
}

.like-card.status-success:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 136, 0.28) !important;
  border-color: rgba(0, 255, 136, 0.5) !important;
}

.like-card.status-error:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 51, 51, 0.28) !important;
  border-color: rgba(255, 51, 51, 0.5) !important;
}

/* ---- 1. Top Status Bar ---- */
.card-top-bar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.card-status-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Live Animated Pulsing Dot */
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  opacity: 0.8;
  animation: statusPulse 2s infinite ease-in-out;
}

.pulse-green {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}
.pulse-green::after {
  background: rgba(0, 255, 136, 0.6);
}

.pulse-red {
  background: #ff3333;
  box-shadow: 0 0 10px #ff3333;
}
.pulse-red::after {
  background: rgba(255, 51, 51, 0.6);
}

.pulse-cyan {
  background: #00e5ff;
  box-shadow: 0 0 10px #00e5ff;
}
.pulse-cyan::after {
  background: rgba(0, 229, 255, 0.6);
}

@keyframes statusPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ---- 2. Player Header ---- */
.card-player-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
}

.card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
}

.card-avatar.avatar-success {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.22), rgba(0, 229, 255, 0.12));
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.25);
}

.card-avatar.avatar-error {
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.22), rgba(255, 45, 123, 0.12));
  color: var(--accent-red);
  border: 1px solid rgba(255, 51, 51, 0.4);
  box-shadow: 0 0 14px rgba(255, 51, 51, 0.25);
}

.card-avatar.avatar-nolikes {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(59, 130, 246, 0.12));
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
}

.card-player-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.player-nickname {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

/* Neon Copy Pill Button for UID */
.cyber-copy-btn {
  background: rgba(0, 229, 255, 0.12) !important;
  border: 1px solid rgba(0, 229, 255, 0.35) !important;
  color: #00e5ff !important;
  padding: 3px 9px !important;
  border-radius: 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15) !important;
}

.cyber-copy-btn:hover {
  background: rgba(0, 229, 255, 0.25) !important;
  border-color: #00e5ff !important;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.4) !important;
  transform: translateY(-1px) scale(1.05) !important;
}

/* ---- 4. Player Banner / Hero Image Frame ---- */
.player-banner-frame {
  position: relative !important;
  width: 100% !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 229, 255, 0.3) !important;
  cursor: pointer !important;
  background: #05060f !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0, 229, 255, 0.05) !important;
  transition: all 0.3s ease !important;
}

.player-banner-frame:hover {
  border-color: rgba(0, 229, 255, 0.6) !important;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.35), 0 12px 35px rgba(0, 0, 0, 0.9) !important;
}

.player-banner-frame .banner-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 13px !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.player-banner-frame:hover .banner-img {
  transform: scale(1.025) !important;
}

.player-banner-frame .banner-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(6, 6, 18, 0.75) !important;
  backdrop-filter: blur(4px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #00e5ff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.player-banner-frame:hover .banner-overlay {
  opacity: 1 !important;
}

/* ---- 3. 3-Part Metrics Flow ---- */
.card-metrics-flow {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  background: rgba(0, 0, 0, 0.55) !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 229, 255, 0.15) !important;
  gap: 8px !important;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5) !important;
}

.cyan-glow {
  color: #00e5ff !important;
  font-weight: 900 !important;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.9), 0 0 28px rgba(0, 229, 255, 0.5) !important;
}

.flame-icon {
  color: #ff8c00;
  font-size: 16px;
  filter: drop-shadow(0 0 8px #ff8c00);
  animation: flameFlicker 1.8s infinite alternate ease-in-out;
}

@keyframes flameFlicker {
  0% { transform: scale(1) rotate(-3deg); filter: drop-shadow(0 0 6px #ff8c00); }
  50% { transform: scale(1.2) rotate(4deg); filter: drop-shadow(0 0 12px #ff2d7b); }
  100% { transform: scale(0.95) rotate(-2deg); filter: drop-shadow(0 0 8px #ff8c00); }
}

/* ---- 5. Card Footer ---- */
.card-footer-bar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 11px !important;
}

.cyber-ip-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 12px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(0, 229, 255, 0.2) !important;
  border-radius: 8px !important;
  color: #00e5ff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
}

.cyber-ip-pill:hover {
  background: rgba(0, 229, 255, 0.15) !important;
  border-color: #00e5ff !important;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.3) !important;
  transform: translateY(-1px) !important;
}

.footer-ip-pill .copy-icon {
  opacity: 0.6;
  font-size: 10px;
}

.footer-ip-pill:hover .copy-icon {
  opacity: 1;
}

.footer-cluster-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.5px;
}

.footer-cluster-tag strong {
  color: var(--text-secondary);
}

/* ---- Lightbox Image Modal ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 12, 0.88);
  backdrop-filter: blur(14px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  background: rgba(14, 14, 28, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.lightbox-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.lightbox-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-close-btn:hover {
  background: rgba(255, 51, 51, 0.2);
  color: var(--accent-red);
  border-color: rgba(255, 51, 51, 0.4);
}

.lightbox-body {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06060e;
}

.lightbox-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Tab Navigation ---- */
.tabs {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  overflow-x: auto;
}

.tab-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ---- Token Bars ---- */
.token-bar-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.token-bar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.token-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.token-bar-header .label { color: var(--text-secondary); }
.token-bar-header .value { font-weight: 600; }

.token-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}

.token-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.login-container {
  display: flex;
  width: 100%;
  max-width: 960px;
  min-height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-lg);
}

.login-left {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
  border-right: 1px solid var(--border-subtle);
}

.login-left .brand-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.login-left h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.login-left h1 span {
  color: var(--accent-cyan);
}

.login-left p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

.login-left .feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-left .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.login-left .feature-item i {
  color: var(--accent-green);
  font-size: 12px;
}

.login-right {
  width: 420px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.login-right .login-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label i {
  color: var(--accent-cyan);
  font-size: 11px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .input-field {
  padding-right: 44px;
}

.input-wrapper .input-icon-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.input-wrapper .input-icon-toggle:hover {
  color: var(--accent-pink);
}

.login-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-submit:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
  transform: translateY(-1px);
}

.login-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.login-error {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 51, 51, 0.08);
  border: 1px solid rgba(255, 51, 51, 0.2);
  color: var(--accent-red);
  font-size: 13px;
  align-items: center;
  gap: 8px;
}

.login-error.show {
  display: flex;
}

.login-success {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: var(--accent-green);
  font-size: 13px;
  align-items: center;
  gap: 8px;
}

.login-success.show {
  display: flex;
}

.login-footer-text {
  margin-top: 24px;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets & Small Desktops */
@media (max-width: 1200px) {
  .stat-card .stat-value {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    width: var(--sidebar-expanded);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: none;
    box-shadow: none;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.5);
  }

  .sidebar.mobile-open .logo-text,
  .sidebar.mobile-open .nav-label,
  .sidebar.mobile-open .nav-section {
    opacity: 1;
  }

  .hamburger {
    display: flex;
  }

  .main-content {
    margin-left: 0;
  }

  .top-header {
    padding: 0 16px 0 60px;
  }

  .header-title {
    font-size: 14px;
  }

  .content {
    padding: 16px;
  }

  .stat-card .stat-value {
    font-size: 24px;
  }

  .stat-card .stat-bg-icon {
    font-size: 50px;
  }

  /* Overview: stack chart + activity vertically */
  .overview-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .overview-chart-inner {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .overview-chart-inner > div {
    min-width: 100% !important;
    flex: none !important;
  }

  .overview-chart-canvas {
    height: 180px !important;
  }

  .activity-card {
    max-height: none !important;
  }

  .login-container {
    flex-direction: column;
    max-width: 480px;
    min-height: auto;
  }

  .login-left {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 24px;
  }

  .login-left .brand-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .login-left h1 {
    font-size: 24px;
  }

  .login-left .feature-list {
    display: none;
  }

  .login-right {
    width: 100%;
    padding: 32px 24px;
  }

  .like-card-body {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .like-card-metric-value {
    font-size: 14px;
  }

  .like-card {
    padding: 16px;
  }

  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .top-header {
    gap: 8px;
  }

  .status-pill {
    display: none;
  }

  .clock-pill {
    display: none;
  }

  .stat-card {
    padding: 16px;
  }

  .card {
    padding: 16px;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }
.stagger-6 { animation-delay: 0.3s; }

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* Glitch text */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--accent-pink);
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: inset(0 0 0 0);
}

.glitch::after {
  color: var(--accent-cyan);
  animation: glitch-2 2s infinite linear alternate-reverse;
  clip-path: inset(0 0 0 0);
}

@keyframes glitch-1 {
  0%, 90%, 100% { clip-path: inset(0 0 100% 0); }
  92% { clip-path: inset(20% 0 40% 0); transform: translate(-2px, 1px); }
  94% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
  96% { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 2px); }
  98% { clip-path: inset(50% 0 20% 0); transform: translate(1px, -2px); }
}

@keyframes glitch-2 {
  0%, 88%, 100% { clip-path: inset(0 0 100% 0); }
  90% { clip-path: inset(40% 0 20% 0); transform: translate(2px, -1px); }
  93% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 1px); }
  95% { clip-path: inset(70% 0 5% 0); transform: translate(1px, 2px); }
  97% { clip-path: inset(30% 0 40% 0); transform: translate(-1px, -2px); }
}

/* Page transition */
.page-enter {
  animation: pageSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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