/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700&display=swap');

:root {
  /* Colors */
  --primary: #4AA4C9;
  --primary-dark: #388aab;
  --secondary: #262D67;
  --accent: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --text-light: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  --glass-blur: blur(12px);

  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  /* Fallback */
  background: radial-gradient(circle at top left, #4AA4C9, transparent 40%),
    radial-gradient(circle at bottom right, #262D67, transparent 40%),
    #0f172a;
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md);
  line-height: 1.6;
}

body.page {
  justify-content: flex-start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  margin-top: 0;
  color: var(--text-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease-out;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.logo img {
  max-width: 140px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Card */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--glass-shadow);
  margin-bottom: var(--spacing-lg);
}

.card h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Forms */
label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: var(--spacing-md);
  color: var(--text-light);
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(74, 164, 201, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

select option {
  background: #1e293b;
  color: #fff;
}

/* Form Sections */
.form-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-left: 3px solid var(--primary);
}

.form-section h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.form-section label:first-of-type {
  margin-top: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: #0f172a;
}

.btn-dark:hover {
  background: #1e293b;
}

/* Badges & Helpers */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-required {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  margin-left: 8px;
  vertical-align: middle;
}

.help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* File Upload */
.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.1);
}

.file-upload-area:hover {
  border-color: var(--primary);
  background: rgba(74, 164, 201, 0.05);
}

/* Alerts */
.alert {
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
  border: 1px solid transparent;
}

.alert-info {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Custom Boxes */
.deadline-box {
  margin: 15px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.deadline-box p {
  margin: 10px 0 0;
  color: var(--text-dim);
}

.deadline-box .small-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.progress-bar-container {
  background: rgba(255, 255, 255, 0.1);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
  background: #10b981;
  height: 100%;
  transition: width 0.3s ease;
}

.admin-response-box {
  background: rgba(16, 185, 129, 0.12);
  border-left: 4px solid #10b981;
  padding: 18px;
  margin: 15px 0;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.admin-response-box p {
  margin: 12px 0 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.result-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-left: 4px solid #10b981;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.result-box p {
  margin: 8px 0;
  color: var(--text-dim);
}

/* Reports */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-value {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.stat-label {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.chart-container {
  margin-bottom: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chart-bar-bg {
  background: rgba(255, 255, 255, 0.1);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: #0f172a;
}

.btn-dark:hover {
  background: #1e293b;
}

/* Badges & Helpers */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-required {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  margin-left: 8px;
  vertical-align: middle;
}

.help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* File Upload */
.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.1);
}

.file-upload-area:hover {
  border-color: var(--primary);
  background: rgba(74, 164, 201, 0.05);
}

/* Alerts */
.alert {
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
  border: 1px solid transparent;
}

.alert-info {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Custom Boxes */
.deadline-box {
  margin: 15px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.deadline-box p {
  margin: 10px 0 0;
  color: var(--text-dim);
}

.deadline-box .small-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.progress-bar-container {
  background: rgba(255, 255, 255, 0.1);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
  background: #10b981;
  height: 100%;
  transition: width 0.3s ease;
}

.admin-response-box {
  background: rgba(16, 185, 129, 0.12);
  border-left: 4px solid #10b981;
  padding: 18px;
  margin: 15px 0;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.admin-response-box p {
  margin: 12px 0 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.result-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-left: 4px solid #10b981;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.result-box p {
  margin: 8px 0;
  color: var(--text-dim);
}

/* Reports */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-value {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.stat-label {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.chart-container {
  margin-bottom: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chart-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 4px;
}

/* Utilities */
.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.d-flex {
  display: flex;
}

.gap-2 {
  gap: 0.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.btn-dark {
  background: #0f172a;
}

.btn-dark:hover {
  background: #1e293b;
}

/* Badges & Helpers */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-required {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  margin-left: 8px;
  vertical-align: middle;
}

.help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  margin-bottom: 0;
}

/* File Upload */
.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.1);
}

.file-upload-area:hover {
  border-color: var(--primary);
  background: rgba(74, 164, 201, 0.05);
}

/* Alerts */
.alert {
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
  border: 1px solid transparent;
}

.alert-info {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Custom Boxes */
.deadline-box {
  margin: 15px 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.deadline-box p {
  margin: 10px 0 0;
  color: var(--text-dim);
}

.deadline-box .small-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.progress-bar-container {
  background: rgba(255, 255, 255, 0.1);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
  background: #10b981;
  height: 100%;
  transition: width 0.3s ease;
}

.admin-response-box {
  background: rgba(16, 185, 129, 0.12);
  border-left: 4px solid #10b981;
  padding: 18px;
  margin: 15px 0;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.admin-response-box p {
  margin: 12px 0 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.result-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-left: 4px solid #10b981;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.result-box p {
  margin: 8px 0;
  color: var(--text-dim);
}

/* Reports */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-value {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.stat-label {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.chart-container {
  margin-bottom: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chart-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 4px;
}

/* Utilities */
.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.d-flex {
  display: flex;
}

.gap-2 {
  gap: 0.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.waiting-animation {
  position: relative;
  overflow: hidden;
}

.waiting-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.pulse-badge {
  animation: pulse-glow 2s infinite;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding: var(--spacing-sm);
  }

  .card {
    padding: var(--spacing-md);
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Cloud Animation */
.cloud-loader {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.cloud-icon {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.6);
  animation: cloud-bounce 1.5s infinite ease-in-out;
}

.cloud-icon:nth-child(1) {
  animation-delay: 0s;
}

.cloud-icon:nth-child(2) {
  animation-delay: 0.2s;
}

.result-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-left: 4px solid #10b981;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.result-box p {
  margin: 8px 0;
  color: var(--text-dim);
}

/* Reports */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-value {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.stat-label {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-dim);
}

.chart-container {
  margin-bottom: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chart-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 4px;
}

/* Utilities */
.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.d-flex {
  display: flex;
}

.gap-2 {
  gap: 0.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.waiting-animation {
  position: relative;
  overflow: hidden;
}

.waiting-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.pulse-badge {
  animation: pulse-glow 2s infinite;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding: var(--spacing-sm);
  }

  .card {
    padding: var(--spacing-md);
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Cloud Animation */
.cloud-loader {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.cloud-icon {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.6);
  animation: cloud-bounce 1.5s infinite ease-in-out;
}

.cloud-icon:nth-child(1) {
  animation-delay: 0s;
}

.cloud-icon:nth-child(2) {
  animation-delay: 0.2s;
}

.cloud-icon:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cloud-bounce {

  0%,
  100% {
    transform: translateY(0);
    fill: rgba(255, 255, 255, 0.6);
  }

  50% {
    transform: translateY(-6px);
    fill: #4AA4C9;
    /* Primary color */
  }
}

@keyframes pop-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  80% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pop-in {
  animation: pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.status-highlight {
  font-size: 1.1em;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.pagination a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Utilities */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}