:root {
  --primary: #0b56c5;
  --accent: #12b76a;
  --bg: #050816;
  --ink: #fff;
  --muted: #c4cee4;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--ink);
}

.site-nav {
  background: transparent;
  transition:
    background-color 0.2s ease,
    padding 0.2s ease;
}

.nav-shell {
  background: rgba(18, 34, 92, 0.92);
  border-radius: 999rem;
  transition:
    border-radius 0.2s ease,
    max-width 0.2s ease;
}

.site-nav.is-scrolled {
  background: #12225c;
  padding-top: 0;
  padding-bottom: 0;
}

.site-nav.is-scrolled .nav-shell {
  max-width: 100%;
  border-radius: 0;
}

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

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.drawer-panel {
  background: #0b173d;
  color: white;
}

.glass-panel {
  background: rgba(16, 24, 49, 0.88);
  backdrop-filter: blur(0.9rem);
}

.photo-slot {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, #475569, #0f172a);
}

.money-slot {
  background: url(/dist/images/cta-bg.jpg) no-repeat center left;
  background-size: cover;
  backdrop-filter: blur(1px);
}

.half-border > div {
  content: "";
  position: absolute;
  width: 80%;
  left: -40px;
  top: -40px;
  bottom: -40px;
  border-top: 2px #ffdf20 solid;
  border-left: 2px #ffdf20 solid;
  border-bottom: 2px #ffdf20 solid;
}

.half-border > div::before {
  content: "";
  position: absolute;
  width: 1px;
  right: 0;
  top: 0;
  height: 20px;
  border-right: 2px solid #ffdf20;
}

.half-border > div::after {
  content: "";
  position: absolute;
  width: 1px;
  right: 0;
  bottom: 0;
  height: 20px;
  border-right: 2px solid #ffdf20;
}

@media (max-width: 768px) {
  .half-border > div {
    width: 75%;
    left: -20px;
    top: -20px;
    bottom: -20px;
  }

  .half-border > div::before,
  .half-border > div::after {
    height: 14px;
  }
}

.crypto-slot {
  background:
    radial-gradient(circle at 5% 88%, #f59e0b, transparent 5rem),
    radial-gradient(circle at 92% 12%, #60a5fa, transparent 6rem), linear-gradient(135deg, #06396d, #06112f);
}

.device-slot {
  background:
    radial-gradient(circle at 70% 52%, rgba(255, 255, 255, 0.14), transparent 12rem),
    linear-gradient(135deg, #16245b, #101827);
}

.screen-placeholder {
  background:
    repeating-linear-gradient(90deg, transparent 0 1.5rem, rgba(16, 185, 129, 0.16) 1.55rem 1.6rem),
    linear-gradient(135deg, #111827, #1e293b);
}

footer p {
  margin-bottom: 0.75rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.page-item {
  margin: 0;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.875rem;

  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;

  text-decoration: none;
  transition: all 0.2s;
}

.page-link:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.page-item.active .page-link {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.page-item.disabled .page-link {
  color: #9ca3af;
  background: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  pointer-events: none;
}
