/* ============================================================
   OXO CLUB — global.css
   Loaded by every page. Never duplicate.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --red:        #E8192C;
  --red-dark:   #B01020;
  --red-dim:    rgba(232, 25, 44, 0.15);
  --black:      #0A0A0A;
  --black-card: #141414;
  --grey:       #2A2A2A;
  --off-white:  #F5F0EB;
  --muted:      #888888;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --nav-h: 68px;
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--red);
  color: #fff;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.heading-3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.muted {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--red);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.badge-dark {
  display: inline-block;
  padding: 4px 10px;
  background: var(--grey);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(232, 25, 44, 0.15);
}

/* ── Section Titles ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-left: 20px;
  border-left: 4px solid var(--red);
}

/* ── Decorative ─────────────────────────────────────────── */
.red-line {
  width: 100%;
  height: 2px;
  background: var(--red);
  border: none;
}

.divider {
  width: 100%;
  height: 80px;
  background: var(--black-card);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Keyframes ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes counterRoll {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ── Navbar ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--off-white);
}

.nav-logo-text span {
  color: var(--red);
}

.nav-logo-img {
  height: clamp(32px, 4.5vw, 42px);
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--transition), transform var(--transition);
}

.nav-links a::before {
  content: '0' attr(data-index);
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 8px;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(4px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--off-white);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-avatar {
  position: relative;
}

.nav-avatar-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--grey);
  transition: border-color var(--transition);
}

.nav-avatar-btn:hover { border-color: var(--red); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-radius: 8px;
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a,
.nav-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover,
.nav-dropdown button:hover {
  background: var(--grey);
  color: var(--off-white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  cursor: pointer;
  z-index: 2100;
  pointer-events: auto;
}

.nav-hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-links > a {
  font-family: var(--font-display);
  font-size: clamp(40px, 12vw, 64px);
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.2, 1, 0.3, 1), transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), color 0.3s ease;
  display: block;
  margin-bottom: 20px;
}

.nav-overlay-links > a:hover {
  color: var(--red);
}

.nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.10s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.20s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.open a:nth-child(6) { transition-delay: 0.30s; }

.nav-overlay-links > a:hover { color: var(--red); }

.nav-link-number {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 14px;
  margin-right: 12px;
}

.nav-overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition);
}

.nav-overlay-close:hover { color: var(--red); }

/* ── Footer ─────────────────────────────────────────────── */
#footer {
  margin-top: auto;
}

.footer-wrap {
  background: var(--black-card);
  border-top: 1px solid var(--red);
  padding: 64px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--red); }

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--off-white); }

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-social-link:hover { color: var(--off-white); }

.footer-social-arrow {
  width: 28px; height: 28px;
  border: 1px solid var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: border-color var(--transition), background var(--transition);
}

.footer-social-link:hover .footer-social-arrow {
  border-color: var(--red);
  background: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--grey);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-credit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-credit a {
  color: var(--red);
  transition: opacity var(--transition);
}

.footer-credit a:hover { opacity: 0.7; }

/* ── Page Layout Helpers ────────────────────────────────── */
.page-content {
  padding-top: var(--nav-h);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
}

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,25,44,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

/* ── Form Styles ────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-radius: 6px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--black-card);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.06em;
}

.form-success {
  padding: 14px 18px;
  background: rgba(232,25,44,0.1);
  border: 1px solid rgba(232,25,44,0.3);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--off-white);
}

/* ── Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

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

.modal-box {
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 1;
}

.modal-close:hover { background: var(--red); }

/* ── Filter Tabs ────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--grey);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--off-white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245,240,235,0.7);
  text-align: center;
}

/* ── Grid Utilities ─────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Auth Card ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.auth-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,25,44,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--black-card);
  border: 1px solid var(--grey);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo-text {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.05em;
}

.auth-logo-text span { color: var(--red); }

.auth-logo-img {
  height: clamp(60px, 8vw, 80px);
  width: auto;
  margin: 0 auto;
  display: block;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}

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

.auth-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
}

.auth-footer-text a {
  color: var(--red);
  transition: opacity var(--transition);
}

.auth-footer-text a:hover { opacity: 0.8; }

/* ── Loading State ──────────────────────────────────────── */
.loading-spinner {
  width: 40px; height: 40px;
  border: 2px solid var(--grey);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  
  .nav-links { display: none; }
  .nav-right #nav-login-btn,
  .nav-right #nav-register-btn { display: none !important; }
  
  .nav-hamburger { display: flex !important; }
  .nav-wrap { padding: 0 20px; background: #0a0a0a !important; }
  
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-wrap { padding: 48px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .auth-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .btn-red, .btn-outline { padding: 12px 20px; font-size: 12px; }
}

/* ── Loading States ─────────────────────────────────────── */
.loading-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite linear;
  border-radius: 4px;
}

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

.skeleton-text { height: 14px; margin-bottom: 8px; width: 100%; }
.skeleton-title { height: 28px; margin-bottom: 12px; width: 70%; }
.skeleton-img { aspect-ratio: 1; width: 100%; border-radius: 8px; }

/* ── Custom Utilities ───────────────────────────────────── */
.text-red { color: var(--red); }
.font-mono { font-family: var(--font-mono); }
.font-display { font-family: var(--font-display); }
