/* ============================================
   CollectorCards Milano - Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #0a0e1a;
  --color-bg-alt: #111627;
  --color-bg-card: #161b2e;
  --color-bg-card-hover: #1c2240;
  --color-surface: #1e2438;
  --color-border: #2a3050;
  --color-border-light: #3a4060;

  /* Brand colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-red: #dc2626;
  --color-red-light: #ef4444;
  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;

  /* TCG brand colors */
  --color-pokemon: #ffcb05;
  --color-onepiece: #dc2626;
  --color-dragonball: #f97316;

  /* Text */
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-text-heading: #f1f5f9;

  /* Accents */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Orbitron', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow-blue: 0 0 20px rgba(37, 99, 235, 0.3);
  --shadow-glow-gold: 0 0 20px rgba(245, 158, 11, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

ul, ol {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p + p { margin-top: var(--space-md); }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-gold { color: var(--color-gold); }
.text-primary { color: var(--color-primary-light); }

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 400;
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: background var(--transition-base);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-heading);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.header__logo img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.header__logo span {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Nav */
.nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

/* Top-level nav links (direct children + dropdown trigger) */
.nav > a,
.nav__item > a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav > a::after,
.nav__item > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav > a:hover,
.nav > a.active,
.nav__item > a:hover,
.nav__item.open > a {
  color: var(--color-text-heading);
  text-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.nav > a:hover::after,
.nav > a.active::after,
.nav__item > a:hover::after,
.nav__item.open > a::after,
.nav__item.active > a::after {
  width: 100%;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.nav__item.active > a {
  color: var(--color-text-heading);
}

/* Header CTA */
.header__cta {
  display: none;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, #e1306c, #c13584);
  color: #fff;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
  color: #fff;
}

.header__cta svg {
  width: 18px;
  height: 18px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-bg-alt);
  border-left: 1px solid var(--color-border);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
  z-index: 999;
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: var(--color-text);
  font-size: 1.1rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-primary-light);
  padding-left: var(--space-sm);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, #e1306c, #c13584);
  color: #fff;
  border-radius: var(--radius-xl);
  font-weight: 600;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   NAV DROPDOWN
   ============================================ */

/* Desktop dropdown parent */
.nav__item {
  position: relative;
}

.nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Arrow chevron */
.nav__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 3px;
  opacity: 0.6;
}

.nav__item.open .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* --- Desktop dropdown panel --- */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: rgba(22, 27, 46, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

/* Subtle top arrow connector */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(22, 27, 46, 0.97);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  border-left: 1px solid rgba(59, 130, 246, 0.15);
}

.nav__item.open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* --- Dropdown links --- */
.nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 450;
  color: var(--color-text-muted);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    padding-left 0.15s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border-radius: 0;
  position: relative;
}

.nav__dropdown-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: #fff;
  padding-left: 24px;
}

/* Left accent bar on hover (not on submenu-item triggers) */
.nav__dropdown-link:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
}

/* Submenu triggers keep stable padding (no shift) */
.nav__submenu-item > .nav__dropdown-link:hover {
  padding-left: 20px;
}

.nav__submenu-item > .nav__dropdown-link:hover::before {
  content: none;
}

/* Highlight "Tutte le checklist" / "Vedi completo" */
.nav__dropdown-link--highlight {
  color: var(--color-primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--space-xs);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav__dropdown-link--highlight:hover {
  background: rgba(37, 99, 235, 0.12);
  color: #fff;
}

/* --- Guide dropdown brand dots --- */
.nav__dropdown-link--brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__dropdown-link--brand::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

.nav__dropdown-link--pokemon::after {
  background: var(--color-pokemon);
  box-shadow: 0 0 8px rgba(255, 203, 5, 0.5);
}

.nav__dropdown-link--onepiece::after {
  background: var(--color-onepiece);
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
}

.nav__dropdown-link--dragonball::after {
  background: var(--color-dragonball);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* Brand dot pulse animation on hover */
.nav__dropdown-link--brand:hover::after {
  animation: brandDotPulse 1.2s ease-in-out infinite;
}

@keyframes brandDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* Brand-colored left accent bar per guide link */
.nav__dropdown-link--pokemon:hover::before {
  background: var(--color-pokemon) !important;
}

.nav__dropdown-link--onepiece:hover::before {
  background: var(--color-onepiece) !important;
}

.nav__dropdown-link--dragonball:hover::before {
  background: var(--color-dragonball) !important;
}

/* --- Nested submenu (Checklist eras) --- */
.nav__submenu-item {
  position: relative;
}

.nav__submenu-item > .nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 16px;
}

/* Right chevron for submenu items */
.nav__submenu-item > .nav__dropdown-link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 4px solid currentColor;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav__submenu-item:hover > .nav__dropdown-link::after {
  opacity: 1;
  transform: translateX(2px);
}

/* Submenu panel */
.nav__submenu {
  position: absolute;
  top: -8px;
  left: calc(100% + 6px);
  min-width: 210px;
  background: rgba(22, 27, 46, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
}

.nav__submenu-item:hover > .nav__submenu,
.nav__submenu-item.open > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav__submenu-item:hover > .nav__dropdown-link {
  background: rgba(37, 99, 235, 0.08);
  color: #fff;
}

/* ============================================
   MOBILE DROPDOWN (Accordion)
   ============================================ */

/* Main toggle button (Calendario, Checklist) */
.mobile-menu__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 1.1rem;
  padding: var(--space-md) 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.15s ease;
}

.mobile-menu__dropdown-toggle:hover,
.mobile-menu__dropdown-toggle.open {
  color: var(--color-primary-light);
}

.mobile-menu__dropdown-toggle .nav__arrow {
  border-top-width: 5px;
  border-left-width: 5px;
  border-right-width: 5px;
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s ease;
}

.mobile-menu__dropdown-toggle.open .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Accordion content */
.mobile-menu__dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 14, 26, 0.4);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.mobile-menu__dropdown-content.open {
  max-height: 1000px;
}

/* Simple links (Calendario) */
.mobile-menu__dropdown-content > a {
  display: block;
  padding: 12px 12px 12px 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(42, 48, 80, 0.4);
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-menu__dropdown-content > a:last-child {
  border-bottom: none;
}

.mobile-menu__dropdown-content > a:hover {
  color: #fff;
  background: rgba(37, 99, 235, 0.08);
}

/* --- Nested accordion (Checklist eras) --- */
.mobile-menu__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(42, 48, 80, 0.4);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 12px 12px 20px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.15s ease, background 0.15s ease;
}

.mobile-menu__sub-toggle:hover,
.mobile-menu__sub-toggle.open {
  color: #fff;
  background: rgba(37, 99, 235, 0.06);
}

.mobile-menu__sub-toggle .nav__arrow {
  border-top-width: 4px;
  border-left-width: 4px;
  border-right-width: 4px;
  opacity: 0.4;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s ease;
}

.mobile-menu__sub-toggle.open .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Sub-content (set links within era) */
.mobile-menu__sub-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 14, 26, 0.3);
}

.mobile-menu__sub-content.open {
  max-height: 400px;
}

.mobile-menu__sub-content a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 10px 12px 10px 40px;
  border-bottom: 1px solid rgba(42, 48, 80, 0.25);
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  position: relative;
}

.mobile-menu__sub-content a::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border-light);
  transition: background 0.15s ease;
}

.mobile-menu__sub-content a:last-child {
  border-bottom: none;
}

.mobile-menu__sub-content a:hover {
  color: #fff;
  background: rgba(37, 99, 235, 0.08);
  padding-left: 44px;
}

.mobile-menu__sub-content a:hover::before {
  background: var(--color-primary-light);
}

/* ============================================
   ERA SECTIONS (Checklist Hub)
   ============================================ */

.era-section {
  margin-bottom: var(--space-3xl);
}

.era-section__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--color-primary), var(--color-gold), transparent) 1;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.era-section__title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.3em;
  background: linear-gradient(180deg, var(--color-primary), var(--color-gold));
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

.era-section.hidden {
  display: none;
}

/* Checklist search */
.checklist-search {
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  position: relative;
}

.checklist-search .search-box {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.checklist-search .search-box:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 0 20px rgba(37, 99, 235, 0.1);
}

.checklist-search__count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  transition: opacity 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-md)) var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.hero__logo {
  width: 110px;
  height: 110px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(37, 99, 235, 0.3),
    0 0 80px rgba(37, 99, 235, 0.15),
    0 0 120px rgba(245, 158, 11, 0.1);
  border: 3px solid rgba(37, 99, 235, 0.4);
  animation: heroLogoIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both,
             heroFloat 6s ease-in-out 1s infinite,
             logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 40px rgba(37, 99, 235, 0.3), 0 0 80px rgba(37, 99, 235, 0.15); }
  50% { box-shadow: var(--shadow-lg), 0 0 60px rgba(37, 99, 235, 0.4), 0 0 100px rgba(245, 158, 11, 0.2); }
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__brands {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.hero__brand-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid;
}

.hero__brand-tag--pokemon {
  color: var(--color-pokemon);
  border-color: rgba(255, 203, 5, 0.3);
  background: rgba(255, 203, 5, 0.08);
}

.hero__brand-tag--onepiece {
  color: var(--color-onepiece);
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(220, 38, 38, 0.08);
}

.hero__brand-tag--dragonball {
  color: var(--color-dragonball);
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.08);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  border: none;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
  color: #fff;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
  color: #fff;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
  color: #fff;
  font-size: 1.05rem;
  padding: var(--space-md) var(--space-2xl);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(225, 48, 108, 0.4);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--color-border-light);
  color: var(--color-text);
  background: transparent;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  background: rgba(37, 99, 235, 0.08);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), #d97706);
  color: #000;
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
  color: #000;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.85rem;
}

/* ============================================
   CARDS - Holographic Effect
   ============================================ */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-light);
}

.card__body {
  padding: var(--space-lg);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
}

.card__tag--pokemon {
  background: rgba(255, 203, 5, 0.15);
  color: var(--color-pokemon);
}

.card__tag--onepiece {
  background: rgba(220, 38, 38, 0.15);
  color: var(--color-onepiece);
}

.card__tag--dragonball {
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-dragonball);
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Holo Card Effect - Rainbow Holographic */
.card-holo {
  position: relative;
  cursor: pointer;
}

.card-holo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    var(--holo-angle, 125deg),
    rgba(255, 50, 50, 0) 0%,
    rgba(255, 200, 0, 0.06) 20%,
    rgba(0, 255, 120, 0.08) 40%,
    rgba(0, 150, 255, 0.06) 60%,
    rgba(200, 50, 255, 0.06) 80%,
    rgba(255, 50, 50, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: shimmer-holo 4s ease-in-out infinite;
}

@keyframes shimmer-holo {
  0%, 100% { opacity: 0; transform: translateX(-120%) rotate(25deg); }
  50% { opacity: 0.8; transform: translateX(120%) rotate(25deg); }
}

.card-holo:hover::before {
  animation: shimmer-holo-fast 2s ease-in-out infinite;
}

@keyframes shimmer-holo-fast {
  0%, 100% { opacity: 0.2; transform: translateX(-120%) rotate(25deg); }
  50% { opacity: 1; transform: translateX(120%) rotate(25deg); }
}

/* Holo inner glow on hover */
.card-holo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.06) 0%,
    transparent 60%
  );
}

.card-holo:hover::after {
  opacity: 1;
}

/* Brand Cards (Home) */
.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  min-height: 280px;
  text-decoration: none;
}

.brand-card__icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

.brand-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.brand-card__desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.brand-card--pokemon { border-color: rgba(255, 203, 5, 0.2); }
.brand-card--pokemon:hover {
  border-color: rgba(255, 203, 5, 0.6);
  box-shadow: 0 0 30px rgba(255, 203, 5, 0.15), 0 0 60px rgba(255, 203, 5, 0.05), inset 0 0 30px rgba(255, 203, 5, 0.03);
}

.brand-card--onepiece { border-color: rgba(220, 38, 38, 0.2); }
.brand-card--onepiece:hover {
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.15), 0 0 60px rgba(220, 38, 38, 0.05), inset 0 0 30px rgba(220, 38, 38, 0.03);
}

.brand-card--dragonball { border-color: rgba(249, 115, 22, 0.2); }
.brand-card--dragonball:hover {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.15), 0 0 60px rgba(249, 115, 22, 0.05), inset 0 0 30px rgba(249, 115, 22, 0.03);
}

/* ============================================
   QUOTAZIONI CARD (Price Tracker)
   ============================================ */
.quote-card {
  padding: var(--space-lg);
}

.quote-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.quote-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-heading);
}

.quote-card__set {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.quote-card__rarity {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Brand-specific border glow on quote cards */
.quote-card[data-brand="pokemon"]:hover {
  border-color: rgba(255, 203, 5, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 203, 5, 0.08);
}

.quote-card[data-brand="onepiece"]:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(220, 38, 38, 0.08);
}

.quote-card[data-brand="dragonball"]:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 115, 22, 0.08);
}

.quote-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.quote-card__price-range {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
}

.quote-card__trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quote-card__trend--up { color: var(--color-success); }
.quote-card__trend--down { color: var(--color-error); }
.quote-card__trend--stable { color: var(--color-text-muted); }

/* ============================================
   FILTERS & SEARCH
   ============================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: center;
}

.filter-pill {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.filter-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: var(--space-sm) var(--space-lg) var(--space-sm) 2.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  color: var(--color-text);
  font-size: 0.9rem;
}

.search-box svg {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  pointer-events: none;
}

.sort-select {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  color: var(--color-text);
  font-size: 0.85rem;
  cursor: pointer;
}

/* ============================================
   TIMELINE (Calendario)
   ============================================ */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-bg);
}

.timeline__item--past::before {
  background: var(--color-text-muted);
}

.timeline__item--upcoming::before {
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.timeline__date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-primary-light);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.timeline__item--past .timeline__date {
  color: var(--color-text-muted);
}

.timeline__content {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.timeline__title {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.timeline__products {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.timeline__products li {
  padding: 2px 0;
}

.timeline__products li::before {
  content: '• ';
  color: var(--color-primary-light);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  margin-top: var(--space-sm);
}

.badge-preorder {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-gold);
}

.badge-new {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
}

.badge-soldout {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
}

/* ============================================
   BLOG
   ============================================ */
.blog-card__meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* Article (Blog Post / Guide) */
.article {
  max-width: 800px;
  margin: 0 auto;
}

.article__header {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-2xl);
}

.article__meta {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: var(--space-md);
}

.article__content h2 {
  margin: var(--space-2xl) 0 var(--space-md);
  padding-top: var(--space-md);
}

.article__content h3 {
  margin: var(--space-xl) 0 var(--space-md);
}

.article__content p {
  margin-bottom: var(--space-md);
}

.article__content ul,
.article__content ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.article__content ul li {
  list-style: disc;
  margin-bottom: var(--space-xs);
}

.article__content ol li {
  list-style: decimal;
  margin-bottom: var(--space-xs);
}

/* Guide/Article images */
.article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--space-lg) auto;
}

/* Card images (fronts/backs) - portrait, keep narrow */
.article__content img.img-card {
  max-width: 320px;
}

/* Small stock/comparison images - don't stretch beyond natural size */
.article__content img.img-sm {
  max-width: 280px;
}

/* Medium images - comparisons, screenshots */
.article__content img.img-md {
  max-width: 480px;
}

/* Large images - full width within article */
.article__content img.img-lg {
  max-width: 700px;
}

@media (max-width: 480px) {
  .article__content img.img-card {
    max-width: 240px;
  }
  .article__content img.img-sm {
    max-width: 200px;
  }
  .article__content img.img-md {
    max-width: 100%;
  }
}

.article__content blockquote {
  border-left: 3px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-lg) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Guide layout with sidebar */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

.guide-sidebar {
  display: none;
}

.guide-toc {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.guide-toc__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.guide-toc a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.guide-toc a:hover,
.guide-toc a.active {
  color: var(--color-primary-light);
}

/* FAQ Accordion */
.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq summary {
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  background: var(--color-bg-card);
  transition: background var(--transition-fast);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-left: var(--space-md);
  transition: transform var(--transition-fast);
}

.faq details[open] summary::after {
  content: '−';
}

.faq details[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.faq .faq__answer {
  padding: var(--space-md) var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CHECKLIST
   ============================================ */
.checklist-progress {
  margin-bottom: var(--space-xl);
}

.checklist-progress__bar {
  height: 8px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  overflow: hidden;
  margin-top: var(--space-sm);
}

.checklist-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  border-radius: 4px;
  transition: width var(--transition-base);
}

.checklist-progress__text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.checklist-item:hover {
  background: var(--color-bg-card-hover);
}

.checklist-item.checked {
  opacity: 0.6;
  border-color: var(--color-success);
}

.checklist-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border-light);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.checklist-item input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checklist-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.checklist-item__info {
  flex: 1;
  min-width: 0;
}

.checklist-item__name {
  font-weight: 500;
  font-size: 0.9rem;
}

.checklist-item__detail {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================
   CHI SIAMO
   ============================================ */
.about-hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.trust-item {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.trust-item__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.trust-item__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

.step__content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.step__content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ============================================
   INSTAGRAM CTA BANNER
   ============================================ */
.ig-banner {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ig-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.ig-banner__content {
  position: relative;
}

.ig-banner__title {
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

.ig-banner__text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.ig-banner .btn {
  background: #fff;
  color: #e1306c;
  font-weight: 700;
}

.ig-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #c13584;
}

/* ============================================
   FLOATING ACTION BUTTON (Instagram)
   ============================================ */
.fab {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
  z-index: 900;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--transition-base), transform var(--transition-base), box-shadow var(--transition-fast);
  text-decoration: none;
}

.fab.visible {
  opacity: 1;
  transform: scale(1);
}

.fab:hover {
  box-shadow: 0 6px 25px rgba(225, 48, 108, 0.6);
  transform: scale(1.12);
  color: #fff;
  filter: brightness(1.1);
}

.fab svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   CONTACT HOME SECTION
   ============================================ */
.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.contact-home-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.25s ease;
}
.contact-home-card:hover {
  border-color: var(--color-primary);
  transform: translateX(6px);
}
.contact-home-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-home-card__text { flex: 1; }
.contact-home-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.2rem;
}
.contact-home-card__desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.contact-home-card__arrow {
  color: var(--color-text-muted);
  margin-left: auto;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.contact-home-card:hover .contact-home-card__arrow {
  transform: translateX(3px);
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .contact-home-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}
@media (max-width: 480px) {
  .contact-home-card {
    padding: var(--space-md);
  }
  .contact-home-card__icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .contact-home-card__title { font-size: 0.85rem; }
  .contact-home-card__desc { font-size: 0.78rem; }
}

/* ============================================
   FLOATING CHARIZARD QUIZ CTA
   ============================================ */
.quiz-float {
  position: fixed;
  bottom: 90px;
  right: -400px;
  z-index: 950;
  display: flex;
  align-items: flex-end;
  gap: 0;
  transition: right 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  filter: drop-shadow(0 8px 30px rgba(245, 158, 11, 0.3));
}
.quiz-float.visible {
  right: 0;
  pointer-events: auto;
}
.quiz-float.dismissed {
  right: -400px !important;
  pointer-events: none;
}

/* Speech bubble */
.quiz-float__bubble {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  max-width: 210px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 10px;
}
.quiz-float__bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--color-pokemon), #f97316, var(--color-onepiece));
}
.quiz-float__bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-top: 8px solid var(--color-bg-card);
}
.quiz-float__bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--color-pokemon);
}
.quiz-float__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}
.quiz-float__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.quiz-float__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-pokemon);
  transition: gap 0.2s ease;
}
.quiz-float__bubble:hover .quiz-float__cta {
  gap: 0.6rem;
}

/* Charizard image */
.quiz-float__char {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  position: relative;
  margin-right: -15px;
  animation: charizardHover 3s ease-in-out infinite;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, #fff5e6 0%, #ffe0a3 40%, #f59e0b 90%);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4), 0 0 60px rgba(245, 158, 11, 0.15);
  border: 3px solid rgba(245, 158, 11, 0.5);
}
.quiz-float__char img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(1.15) contrast(1.05);
}

/* Close button */
.quiz-float__close {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.65rem;
  line-height: 1;
  transition: all 0.2s ease;
  z-index: 2;
}
.quiz-float__close:hover {
  background: var(--color-error);
  border-color: var(--color-error);
  color: #fff;
}

/* Fire glow behind Charizard */
.quiz-float__glow {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 100px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: fireGlow 2s ease-in-out infinite alternate;
}

@keyframes charizardHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fireGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
  .quiz-float {
    bottom: 80px;
  }
  .quiz-float__bubble {
    max-width: 170px;
    padding: var(--space-sm) var(--space-md);
  }
  .quiz-float__title { font-size: 0.8rem; }
  .quiz-float__char { width: 100px; height: 100px; margin-right: -10px; }
}
@media (max-width: 480px) {
  .quiz-float {
    bottom: 75px;
  }
  .quiz-float__bubble {
    max-width: 150px;
    padding: 0.5rem 0.7rem;
  }
  .quiz-float__title { font-size: 0.75rem; }
  .quiz-float__label { font-size: 0.6rem; }
  .quiz-float__cta { font-size: 0.7rem; }
  .quiz-float__char { width: 85px; height: 85px; margin-right: -8px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cookie-banner__text a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-heading);
  margin-bottom: var(--space-md);
}

.footer a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-primary-light);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-xl);
  text-align: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.footer__disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.error-page__title {
  margin: var(--space-md) 0;
}

.error-page__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

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

/* Tablet */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .nav__item {
    display: flex;
    align-items: center;
  }

  .cookie-banner__inner {
    flex-direction: row;
    text-align: left;
  }

  .guide-layout {
    grid-template-columns: 250px 1fr;
  }

  .guide-sidebar {
    display: block;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-layout {
    grid-template-columns: 260px 1fr;
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: calc(var(--header-height) + var(--space-md));
  }

  .hero__logo {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-sm);
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    min-width: unset;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .fab {
    bottom: var(--space-md);
    left: var(--space-md);
    width: 50px;
    height: 50px;
  }
}

/* ============================================
   NOSCRIPT
   ============================================ */
.noscript-warning {
  background: var(--color-warning);
  color: #000;
  text-align: center;
  padding: var(--space-md);
  font-weight: 600;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

.page-header__title {
  margin-bottom: var(--space-sm);
}

.page-header__subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Loading Spinner
   ============================================ */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-2xl) 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================
   Fallback Notice
   ============================================ */
.fallback-notice {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-gold-light);
  font-size: 0.85rem;
}

/* ============================================
   Date Toggle Pills (Calendario JP/ITA)
   ============================================ */
.date-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full, 999px);
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.date-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.date-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* ============================================
   Timeline Date (dual date display)
   ============================================ */
.timeline__date-label {
  display: inline;
}

.timeline__date-separator {
  margin: 0 0.4em;
  opacity: 0.5;
}

.timeline__note {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================
   Language Toggle
   ============================================ */
.lang-toggle {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.lang-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.45rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full, 999px);
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.lang-toggle__btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.lang-toggle__flag {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ============================================
   Quote Card Image
   ============================================ */
.quote-card__image-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--color-bg-alt);
}

.quote-card--clickable {
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.quote-card--clickable:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* When 3D tilt is active (desktop), JS controls transform */
.quote-card--clickable.is-tilting {
  transition: box-shadow 0.2s ease;
}

.quote-card--clickable:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.quote-card__price-single {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* ============================================
   Card Detail Modal
   ============================================ */
.card-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.card-modal__backdrop.active {
  opacity: 1;
  visibility: visible;
}

.card-modal {
  position: fixed;
  inset: 0;
  z-index: 1501;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.card-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.card-modal__content {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.card-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease;
  line-height: 1;
}

.card-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.card-modal__layout {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
}

.card-modal__image-wrap {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.card-modal__image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
}

.card-modal__info {
  flex: 1;
  min-width: 0;
}

.card-modal__name {
  font-size: 1.25rem;
  margin: var(--space-sm) 0 var(--space-xs);
  color: var(--color-text-heading);
}

.card-modal__set {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.card-modal__rarity {
  font-size: 0.8rem;
  color: var(--color-gold-light);
  margin-bottom: var(--space-lg);
}

.card-modal__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

.card-modal__price-main {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
}

.card-modal__price-range {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.card-modal__trend {
  font-size: 0.85rem;
  font-weight: 600;
}

.card-modal__trend--up { color: var(--color-success); }
.card-modal__trend--down { color: var(--color-error); }
.card-modal__trend--stable { color: var(--color-text-muted); }

.card-modal__chart {
  margin-bottom: var(--space-lg);
  min-height: 100px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  overflow: hidden;
}

.card-modal__chart-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.card-modal__chart-spinner .spinner {
  width: 24px;
  height: 24px;
}

.card-modal__source-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-primary-light);
  transition: color 0.2s ease;
}

.card-modal__source-link:hover {
  color: var(--color-primary);
}

.card-modal__source-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Modal responsive: mobile stacked layout */
@media (max-width: 640px) {
  .card-modal {
    padding: var(--space-sm);
    align-items: flex-end;
  }

  .card-modal__content {
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .card-modal__layout {
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

  .card-modal__image-wrap {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .card-modal__price-main {
    font-size: 1.4rem;
  }
}

/* ============================================
   ADVANCED ANIMATIONS
   ============================================ */

/* --- Page entrance --- */
body {
  animation: pageIn 0.5s ease both;
}

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

/* --- Hero entrance sequence --- */
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1,
.hero #hero-title {
  animation: heroSlideUp 0.7s ease 0.3s both;
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  animation: heroSlideUp 0.7s ease 0.5s both;
}

.hero__brands {
  animation: heroSlideUp 0.7s ease 0.7s both;
}

.hero__brands + .btn,
.hero .btn-instagram {
  animation: heroSlideUp 0.7s ease 0.9s both;
}

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

/* Hero brand tags hover */
.hero__brand-tag {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__brand-tag:hover {
  transform: translateY(-3px) scale(1.05);
}

.hero__brand-tag--pokemon:hover {
  box-shadow: 0 6px 20px rgba(255, 203, 5, 0.25);
}

.hero__brand-tag--onepiece:hover {
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
}

.hero__brand-tag--dragonball:hover {
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
}

/* Hero animated gradient background */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(37, 99, 235, 0.08),
    rgba(255, 203, 5, 0.05),
    rgba(220, 38, 38, 0.05),
    rgba(249, 115, 22, 0.05),
    rgba(37, 99, 235, 0.08)
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: heroGlow 12s linear infinite;
  pointer-events: none;
}

@keyframes heroGlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- Staggered card entrance --- */
.card-enter {
  animation: cardFlyIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--card-i, 0) * 50ms);
}

@keyframes cardFlyIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* --- 3D tilt perspective on cards (desktop) --- */
@media (pointer: fine) {
  .quote-card--clickable {
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.2s ease;
  }

  .quote-card--clickable.is-tilting {
    transition: none;
  }

  .quote-card--clickable:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 99, 235, 0.08);
  }
}

/* --- Price glow effects --- */
.quote-card__price-single {
  text-shadow: 0 0 18px rgba(245, 158, 11, 0.3);
}

.quote-card__price-range {
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

/* --- Trend indicator pulse --- */
.quote-card__trend--up {
  animation: trendPulse 2.5s ease-in-out infinite;
}

@keyframes trendPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* --- Button effects --- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s ease;
}

/* --- Filter pill pop --- */
.filter-pill {
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.filter-pill:active {
  transform: scale(0.92);
}

.filter-pill.active {
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

/* Language toggle pop */
.lang-toggle__btn {
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-toggle__btn:active {
  transform: scale(0.92);
}

.lang-toggle__btn.active {
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

/* --- Modal spring entrance --- */
.card-modal.active .card-modal__content {
  animation: modalSpringIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalSpringIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.card-modal__backdrop.active {
  animation: backdropIn 0.3s ease both;
}

@keyframes backdropIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to { opacity: 1; backdrop-filter: blur(4px); }
}

/* --- Enhanced fade-in with variants --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered brand card delays */
.grid .brand-card-v2:nth-child(1) { transition-delay: 0s; }
.grid .brand-card-v2:nth-child(2) { transition-delay: 0.15s; }
.grid .brand-card-v2:nth-child(3) { transition-delay: 0.3s; }

.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Section title reveal --- */
.section-title {
  overflow: hidden;
}

.section-title::after {
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: var(--header-height);
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

/* --- Back to top button --- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 27, 46, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- Instagram banner pulse --- */
.ig-banner {
  position: relative;
}

.ig-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: igShine 3s ease-in-out infinite;
}

@keyframes igShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* --- FAB bounce on appear --- */
.fab.visible {
  animation: fabBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes fabBounceIn {
  from { opacity: 0; transform: scale(0) rotate(-180deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.fab:hover {
  box-shadow: 0 6px 30px rgba(225, 48, 108, 0.7);
}

/* --- Page header entrance --- */
.page-header__title {
  animation: heroSlideUp 0.6s ease 0.1s both;
}

.page-header__subtitle {
  animation: heroSlideUp 0.6s ease 0.3s both;
}

/* --- Checklist item check animation --- */
.checklist-item.checked {
  animation: checkPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes checkPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* --- Timeline card entrance --- */
.timeline-card {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-card:hover {
  transform: translateX(4px);
}

/* --- Loading skeleton shimmer --- */
@keyframes skeletonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Cookie banner slide --- */
.cookie-banner.visible {
  animation: cookieSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* --- Header scroll enhancement --- */
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: rgba(10, 14, 26, 0.98);
}

/* ============================================
   HERO PARTICLES CANVAS
   ============================================ */
.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   FLOATING CARD SILHOUETTES
   ============================================ */
.hero__floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ============================================
   3D FLIP CARDS — Core Styles
   ============================================ */
.flip-card {
  perspective: 800px;
  cursor: pointer;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  /* Default: show BACK */
  transform: rotateY(180deg);
}

/* Hover: flip to show FRONT */
.flip-card:hover .flip-card__inner {
  transform: rotateY(0deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.flip-card__front img,
.flip-card__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-card__back {
  transform: rotateY(180deg);
}

/* Holographic shimmer on front when revealed */
.flip-card__front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 35%,
    rgba(255, 255, 255, 0.25) 40%,
    rgba(255, 255, 255, 0.1) 45%,
    transparent 60%
  );
  transform: translateX(-150%);
  transition: transform 0.8s ease 0.3s;
  border-radius: 10px;
}

.flip-card:hover .flip-card__front::after {
  transform: translateX(150%);
}

/* Brand-colored glow on hover */
.flip-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.flip-card:hover::before {
  opacity: 1;
}

.flip-card--pokemon::before {
  box-shadow: 0 0 40px rgba(255, 203, 5, 0.4), 0 0 80px rgba(255, 203, 5, 0.15);
}

.flip-card--onepiece::before {
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.4), 0 0 80px rgba(220, 38, 38, 0.15);
}

.flip-card--dragonball::before {
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.4), 0 0 80px rgba(249, 115, 22, 0.15);
}

/* ============================================
   3D FLIP CARDS — Fan Layout (shared)
   ============================================ */
.card-fan {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  padding: var(--space-sm) 0;
}

.card-fan .flip-card {
  position: relative;
  width: 160px;
  height: 224px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), z-index 0s;
}

/* Fan angles: left -18deg, center 0, right +18deg */
.card-fan .flip-card:nth-child(1) {
  transform: rotate(-18deg) translateY(10px);
  z-index: 1;
  margin-right: -28px;
}

.card-fan .flip-card:nth-child(2) {
  transform: rotate(0deg);
  z-index: 3;
}

.card-fan .flip-card:nth-child(3) {
  transform: rotate(18deg) translateY(10px);
  z-index: 1;
  margin-left: -28px;
}

/* On hover: lift card, remove rotation, bring to front */
.card-fan .flip-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.12);
  z-index: 10;
}

/* Fan entrance stagger */
.card-fan .flip-card:nth-child(1) { animation: fanEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.card-fan .flip-card:nth-child(2) { animation: fanEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
.card-fan .flip-card:nth-child(3) { animation: fanEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both; }

@keyframes fanEntrance {
  from {
    opacity: 0;
    transform: translateY(80px) rotate(0deg) scale(0.6);
  }
}

/* Brand label under fan cards */
.flip-card__label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.flip-card:hover .flip-card__label {
  opacity: 1;
}

.flip-card--pokemon .flip-card__label { color: var(--color-pokemon); }
.flip-card--onepiece .flip-card__label { color: var(--color-onepiece); }
.flip-card--dragonball .flip-card__label { color: var(--color-dragonball); }

/* ============================================
   HERO — Card Fan (centered in content)
   ============================================ */
.hero__showcase {
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-md);
}

.hero__showcase.card-fan .flip-card {
  width: 130px;
  height: 182px;
}

/* Hero cards entrance only (no continuous float to avoid layout shift) */
.hero__showcase .flip-card:nth-child(1) { animation: fanEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both; }
.hero__showcase .flip-card:nth-child(2) { animation: fanEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both; }
.hero__showcase .flip-card:nth-child(3) { animation: fanEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both; }

/* ============================================
   BRAND SECTION — Card Fan
   ============================================ */
.brand-showcase {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.brand-showcase.card-fan .flip-card {
  width: 150px;
  height: 210px;
}

/* ============================================
   CHI SIAMO — Card Fan (smaller)
   ============================================ */
.chisiamo-cards {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.chisiamo-cards.card-fan .flip-card {
  width: 120px;
  height: 168px;
}

.chisiamo-cards.card-fan .flip-card:nth-child(1) { margin-right: -20px; }
.chisiamo-cards.card-fan .flip-card:nth-child(3) { margin-left: -20px; }

/* ============================================
   FLIP CARDS — Responsive
   ============================================ */
@media (max-width: 768px) {
  .hero__showcase.card-fan .flip-card {
    width: 120px;
    height: 168px;
  }

  .card-fan .flip-card:nth-child(1) { margin-right: -20px; }
  .card-fan .flip-card:nth-child(3) { margin-left: -20px; }

  .brand-showcase.card-fan .flip-card {
    width: 110px;
    height: 154px;
  }

  .chisiamo-cards.card-fan .flip-card {
    width: 90px;
    height: 126px;
  }

  .chisiamo-cards.card-fan .flip-card:nth-child(1) { margin-right: -14px; }
  .chisiamo-cards.card-fan .flip-card:nth-child(3) { margin-left: -14px; }

  .flip-card__label {
    font-size: 0.6rem;
    bottom: -24px;
  }
}

@media (max-width: 480px) {
  .hero__showcase.card-fan .flip-card {
    width: 95px;
    height: 133px;
  }

  .card-fan .flip-card:nth-child(1) {
    transform: rotate(-14deg) translateY(8px);
    margin-right: -16px;
  }
  .card-fan .flip-card:nth-child(3) {
    transform: rotate(14deg) translateY(8px);
    margin-left: -16px;
  }

  .brand-showcase.card-fan .flip-card {
    width: 90px;
    height: 126px;
  }

  .chisiamo-cards.card-fan .flip-card {
    width: 75px;
    height: 105px;
  }

  .chisiamo-cards.card-fan .flip-card:nth-child(1) { margin-right: -10px; }
  .chisiamo-cards.card-fan .flip-card:nth-child(3) { margin-left: -10px; }
}

/* ============================================
   HERO GRADIENT TEXT (animated)
   ============================================ */
.hero__gradient-text {
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-gold),
    var(--color-pokemon),
    var(--color-primary-light)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: heroSlideUp 0.7s ease 1.2s both;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--color-border-light);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--color-primary-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================
   HERO BRAND TAG GLOW (pulsing glow inside tags)
   ============================================ */
.hero__brand-tag {
  position: relative;
  overflow: hidden;
}

.hero__brand-tag-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.hero__brand-tag--pokemon .hero__brand-tag-glow {
  background: radial-gradient(circle, rgba(255, 203, 5, 0.15), transparent 70%);
}
.hero__brand-tag--onepiece .hero__brand-tag-glow {
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
}
.hero__brand-tag--dragonball .hero__brand-tag-glow {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15), transparent 70%);
}

.hero__brand-tag:hover .hero__brand-tag-glow {
  width: 200px;
  height: 200px;
}

/* ============================================
   BRAND CARDS V2 (with background images)
   ============================================ */
.brand-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.brand-card-v2:hover {
  transform: translateY(-10px) scale(1.02);
  color: #fff;
}

.brand-card-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-card-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: brightness(0.7) saturate(1.1);
}

.brand-card-v2:hover .brand-card-v2__bg img {
  transform: scale(1.12);
  filter: brightness(0.5) saturate(1.3);
}

.brand-card-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.95) 0%,
    rgba(10, 14, 26, 0.6) 40%,
    rgba(10, 14, 26, 0.2) 70%,
    transparent 100%
  );
}

.brand-card-v2__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.brand-card-v2--pokemon .brand-card-v2__glow {
  box-shadow: inset 0 0 80px rgba(255, 203, 5, 0.15);
}
.brand-card-v2--onepiece .brand-card-v2__glow {
  box-shadow: inset 0 0 80px rgba(220, 38, 38, 0.15);
}
.brand-card-v2--dragonball .brand-card-v2__glow {
  box-shadow: inset 0 0 80px rgba(249, 115, 22, 0.15);
}

.brand-card-v2:hover .brand-card-v2__glow {
  opacity: 1;
}

.brand-card-v2--pokemon:hover {
  box-shadow: 0 20px 60px rgba(255, 203, 5, 0.2), 0 0 100px rgba(255, 203, 5, 0.08);
}
.brand-card-v2--onepiece:hover {
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2), 0 0 100px rgba(220, 38, 38, 0.08);
}
.brand-card-v2--dragonball:hover {
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2), 0 0 100px rgba(249, 115, 22, 0.08);
}

.brand-card-v2__content {
  position: relative;
  z-index: 3;
  padding: var(--space-2xl) var(--space-lg);
}

.brand-card-v2__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.brand-card-v2--pokemon .brand-card-v2__badge {
  background: rgba(255, 203, 5, 0.2);
  color: var(--color-pokemon);
  border: 1px solid rgba(255, 203, 5, 0.3);
}
.brand-card-v2--onepiece .brand-card-v2__badge {
  background: rgba(220, 38, 38, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.brand-card-v2--dragonball .brand-card-v2__badge {
  background: rgba(249, 115, 22, 0.2);
  color: var(--color-dragonball);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.brand-card-v2__name {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.brand-card-v2--pokemon .brand-card-v2__name { color: var(--color-pokemon); }
.brand-card-v2--onepiece .brand-card-v2__name { color: #ff6b6b; }
.brand-card-v2--dragonball .brand-card-v2__name { color: var(--color-dragonball); }

.brand-card-v2__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.brand-card-v2__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: gap 0.3s ease;
}

.brand-card-v2__arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-card-v2:hover .brand-card-v2__arrow {
  transform: translateX(6px);
}

/* Brand card animated border on hover */
.brand-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.brand-card-v2--pokemon::before {
  background: linear-gradient(135deg, rgba(255, 203, 5, 0.5), transparent 50%, rgba(255, 203, 5, 0.3));
}
.brand-card-v2--onepiece::before {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.5), transparent 50%, rgba(220, 38, 38, 0.3));
}
.brand-card-v2--dragonball::before {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), transparent 50%, rgba(249, 115, 22, 0.3));
}

.brand-card-v2:hover::before {
  opacity: 1;
}

/* ============================================
   SECTION BRANDS BACKGROUND
   ============================================ */
.section--brands {
  background: var(--color-bg-alt);
  position: relative;
}

.section--brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-gold), transparent);
}

/* ============================================
   TRUST ITEM ENHANCED
   ============================================ */
.trust-item--glow {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-item--glow:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-primary);
}

.trust-item--glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.05), transparent, rgba(245, 158, 11, 0.05), transparent);
  animation: trustGlow 8s linear infinite;
  pointer-events: none;
}

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

.trust-item__icon {
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
}

.trust-item__icon svg {
  filter: drop-shadow(0 0 8px currentColor);
}

/* Animated counter styling */
.trust-item__number {
  transition: color 0.3s ease;
}

.trust-item--glow:hover .trust-item__number {
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

/* ============================================
   ENHANCED SECTION DIVIDERS
   ============================================ */
.section + .section {
  position: relative;
}

/* ============================================
   PARALLAX GLOW ORBS (background decoration)
   ============================================ */
.section--brands::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

/* ============================================
   ENHANCED INSTAGRAM BANNER
   ============================================ */
.ig-banner {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737, #833ab4);
  background-size: 300% 300%;
  animation: igBannerGradient 8s ease infinite;
}

@keyframes igBannerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   RESPONSIVE BRAND CARDS V2
   ============================================ */
@media (max-width: 480px) {
  .brand-card-v2 {
    min-height: 320px;
  }

  .brand-card-v2__name {
    font-size: 1.3rem;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

@media (min-width: 1024px) {
  .brand-card-v2 {
    min-height: 450px;
  }
}

/* ============================================
   PAGE HEADER V2 - Spectacular Inner Pages
   ============================================ */
.page-header-v2 {
  position: relative;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.page-header-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}

.page-header-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 26, 0.7) 0%,
    rgba(10, 14, 26, 0.5) 50%,
    rgba(10, 14, 26, 0.95) 100%
  );
}

.page-header-v2__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

.page-header-v2--pokemon .page-header-v2__glow {
  background: radial-gradient(circle, rgba(255, 203, 5, 0.2), transparent 70%);
}
.page-header-v2--onepiece .page-header-v2__glow {
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2), transparent 70%);
}
.page-header-v2--dragonball .page-header-v2__glow {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
}
.page-header-v2--mixed .page-header-v2__glow {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
}

.page-header-v2__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.page-header-v2__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  animation: heroSlideUp 0.6s ease 0.1s both;
}

.page-header-v2--pokemon .page-header-v2__badge {
  background: rgba(255, 203, 5, 0.15);
  color: var(--color-pokemon);
  border: 1px solid rgba(255, 203, 5, 0.3);
}
.page-header-v2--onepiece .page-header-v2__badge {
  background: rgba(220, 38, 38, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(220, 38, 38, 0.3);
}
.page-header-v2--dragonball .page-header-v2__badge {
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-dragonball);
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.page-header-v2--mixed .page-header-v2__badge {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary-light);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.page-header-v2__title {
  animation: heroSlideUp 0.6s ease 0.2s both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.page-header-v2__subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: var(--space-md) auto 0;
  animation: heroSlideUp 0.6s ease 0.4s both;
}

/* Decorative floating shapes in page headers */
.page-header-v2__shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.page-header-v2__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatShape 15s ease-in-out infinite;
}

.page-header-v2__shape--1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  background: var(--color-primary);
  animation-duration: 12s;
}

.page-header-v2__shape--2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  background: var(--color-gold);
  animation-duration: 16s;
  animation-delay: -5s;
}

.page-header-v2__shape--3 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 15%;
  background: var(--color-primary-light);
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.1); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ============================================
   FEATURED CARD SHOWCASE (decorative card images)
   ============================================ */
.card-showcase {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-2xl) auto;
  max-width: 600px;
  perspective: 1000px;
}

.card-showcase__item {
  width: 120px;
  height: 168px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.card-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-showcase__item:nth-child(1) { transform: rotate(-8deg) translateY(10px); }
.card-showcase__item:nth-child(2) { transform: rotate(-3deg) translateY(-5px); z-index: 1; }
.card-showcase__item:nth-child(3) { transform: scale(1.05) translateY(-10px); z-index: 2; }
.card-showcase__item:nth-child(4) { transform: rotate(3deg) translateY(-5px); z-index: 1; }
.card-showcase__item:nth-child(5) { transform: rotate(8deg) translateY(10px); }

.card-showcase__item:hover {
  transform: scale(1.15) translateY(-15px) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================
   FEATURE GRID (Why choose us / Features)
   ============================================ */
.feature-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-primary);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.feature-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ============================================
   BLOG CARD V2 (with image)
   ============================================ */
.blog-card-v2 {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-border-light);
}

.blog-card-v2__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
}

.blog-card-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card-v2:hover .blog-card-v2__image img {
  transform: scale(1.08);
}

.blog-card-v2__body {
  padding: var(--space-lg);
}

/* ============================================
   CHECKLIST SET CARD V2
   ============================================ */
.checklist-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.checklist-card-v2:hover {
  transform: translateY(-8px) scale(1.02);
  color: #fff;
}

.checklist-card-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.checklist-card-v2--pokemon:hover::after {
  border-color: rgba(255, 203, 5, 0.4);
}

.checklist-card-v2--onepiece:hover::after {
  border-color: rgba(220, 38, 38, 0.4);
}

.checklist-card-v2--dragonball:hover::after {
  border-color: rgba(249, 115, 22, 0.4);
}

.checklist-card-v2__bg {
  position: absolute;
  inset: 0;
}

.checklist-card-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.checklist-card-v2:hover .checklist-card-v2__bg img {
  transform: scale(1.1);
  filter: brightness(0.3) saturate(1.4);
}

.checklist-card-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, transparent 60%);
}

.checklist-card-v2__content {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  z-index: 1;
}

.checklist-card-v2--pokemon:hover {
  box-shadow: 0 20px 50px rgba(255, 203, 5, 0.15);
}
.checklist-card-v2--onepiece:hover {
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}
.checklist-card-v2--dragonball:hover {
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
}

/* ============================================
   404 PAGE V2
   ============================================ */
.error-page-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.error-page-v2__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.error-page-v2__cards {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}

.error-page-v2__card {
  width: 80px;
  height: 112px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: 0.7;
  animation: float404 3s ease-in-out infinite;
}

.error-page-v2__card:nth-child(1) { animation-delay: 0s; transform: rotate(-10deg); }
.error-page-v2__card:nth-child(2) { animation-delay: 0.3s; transform: rotate(-3deg); }
.error-page-v2__card:nth-child(3) { animation-delay: 0.6s; transform: rotate(5deg); opacity: 0.5; }

.error-page-v2__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float404 {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
}

/* ============================================
   ABOUT HERO V2
   ============================================ */
.about-hero-v2 {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  overflow: hidden;
}

.about-hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(220, 38, 38, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-v2__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-xl);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.3), 0 0 80px rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.3);
  animation: heroLogoIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.about-hero-v2__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   STEPS V2 (enhanced)
   ============================================ */
.steps-v2 {
  counter-reset: step-v2;
  max-width: 700px;
  margin: 0 auto;
}

.step-v2 {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  counter-increment: step-v2;
  position: relative;
  transition: transform 0.3s ease;
}

.step-v2:hover {
  transform: translateX(8px);
}

.step-v2__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.step-v2__number::before {
  content: counter(step-v2);
}

.step-v2__content h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.step-v2__content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   GLASSMORPHISM CARD
   ============================================ */
.glass-card {
  background: rgba(22, 27, 46, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

/* ============================================
   ANIMATED GRADIENT BORDER
   ============================================ */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold), var(--color-primary));
  background-size: 200% 200%;
  animation: gradientBorderMove 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes gradientBorderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   RELEASE CARDS - Calendario & Prossime Uscite
   ============================================ */
.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .release-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* --- Release Card --- */
.release-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.release-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(37, 99, 235, 0.08);
}

/* Animated top border gradient */
.release-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--release-color, var(--color-primary)), var(--color-gold), var(--release-color, var(--color-primary)));
  background-size: 200% 100%;
  animation: releaseCardBorder 3s ease infinite;
  z-index: 2;
}

@keyframes releaseCardBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Brand color variants */
.release-card--pokemon { --release-color: var(--color-pokemon); }
.release-card--onepiece { --release-color: var(--color-onepiece); }
.release-card--dragonball { --release-color: var(--color-dragonball); }

/* Card header with brand image */
.release-card__header {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.release-card__bg {
  position: absolute;
  inset: 0;
}

.release-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.release-card:hover .release-card__bg img {
  transform: scale(1.08);
}

.release-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 14, 26, 0.3) 0%,
    rgba(10, 14, 26, 0.7) 60%,
    rgba(10, 14, 26, 0.95) 100%
  );
}

.release-card__header-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

/* Status badge */
.release-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  width: fit-content;
  margin-bottom: var(--space-sm);
}

.release-card__status--preorder {
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.release-card__status--annunciato {
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-primary-light);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.release-card__status--uscito {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.release-card__status--soldout,
.release-card__status--esaurito {
  background: rgba(220, 38, 38, 0.15);
  color: var(--color-red-light);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Pulse dot on preorder */
.release-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Brand tag in header */
.release-card__brand {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--release-color, var(--color-primary-light));
  margin-bottom: 4px;
}

.release-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
}

/* Card body */
.release-card__body {
  padding: var(--space-lg);
}

.release-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* Meta info row (date, set code, card count) */
.release-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.release-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.release-card__meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}

.release-card__meta-item--date {
  color: var(--release-color, var(--color-primary-light));
}

/* Date display for JP/ITA */
/* Dual countdown container */
.release-card__countdowns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Single countdown timer */
.release-card__countdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs, 4px);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.release-card__countdown--jp {
  border-left: 3px solid #dc2626;
}

.release-card__countdown--ita {
  border-left: 3px solid #22c55e;
}

.release-card__countdown--done {
  opacity: 0.7;
}

.release-card__countdown--tba {
  opacity: 0.5;
}

.release-card__countdown-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.release-card__countdown--jp .release-card__countdown-header {
  color: #dc2626;
}

.release-card__countdown--ita .release-card__countdown-header {
  color: #22c55e;
}

.release-card__countdown-date {
  margin-left: auto;
  font-weight: 500;
  font-size: 0.7rem;
  opacity: 0.8;
}

.release-card__countdown-flag {
  font-size: 0.85rem;
  line-height: 1;
}

.release-card__countdown-timer {
  display: flex;
  gap: var(--space-xs, 4px);
}

.release-card__countdown-done {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-xs, 4px) 0;
}

.release-card__countdown--done .release-card__countdown-done {
  color: var(--color-success, #22c55e);
}

.release-card__countdown-unit {
  flex: 1;
  text-align: center;
}

.release-card__countdown-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.release-card__countdown--jp .release-card__countdown-number {
  color: #f87171;
}

.release-card__countdown--ita .release-card__countdown-number {
  color: #4ade80;
}

.release-card__countdown-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Products chips */
.release-card__products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-lg);
}

.release-card__product {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 10px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.release-card__product:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.release-card__product svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

/* Note */
.release-card__note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--release-color, var(--color-border));
}

/* CTA */
.release-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #e1306c, #c13584);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.release-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
}

.release-card__cta svg {
  width: 16px;
  height: 16px;
}

/* Actions container for CTA buttons */
.release-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.release-card__cta--detail {
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
}

.release-card__cta--detail:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Japanese set name */
.release-card__name-jp {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.release-card__lang-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Glow effect on upcoming cards */
.release-card--upcoming {
  border-color: rgba(245, 158, 11, 0.15);
}

.release-card--upcoming:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(var(--release-glow, 37, 99, 235), 0.12);
}

.release-card--pokemon.release-card--upcoming:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 203, 5, 0.1);
}

.release-card--onepiece.release-card--upcoming:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(220, 38, 38, 0.1);
}

.release-card--dragonball.release-card--upcoming:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(249, 115, 22, 0.1);
}

/* Past card muted */
.release-card--past {
  opacity: 0.75;
}

.release-card--past:hover {
  opacity: 1;
}

.release-card--past::before {
  animation: none;
  background: var(--color-border);
}

/* Section divider labels */
.release-section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.release-section-label--past {
  border-left-color: var(--color-text-muted);
}

.release-section-label svg {
  width: 18px;
  height: 18px;
}

/* Empty state */
.release-empty {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  color: var(--color-text-muted);
}

.release-empty svg {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

/* Filter pills enhancement for calendario */
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.25s ease;
}

.date-pill:hover {
  color: var(--color-text);
  border-color: var(--color-border-light);
  background: rgba(255, 255, 255, 0.04);
}

.date-pill.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ============================================
   RELEASE CARD ENTRANCE ANIMATION
   ============================================ */
.release-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.release-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.release-card--past.visible {
  opacity: 0.75;
}

.release-card--past.visible:hover {
  opacity: 1;
}

/* Staggered animation via JS inline --delay */
.release-card {
  transition-delay: var(--delay, 0s);
}

/* ============================================
   MOBILE RESPONSIVE - ALL CONTENT PAGES
   ============================================ */

/* Article content - prevent overflow, allow table scroll */
.article__content {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Scrollable table wrapper via CSS */
.article__content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* ---- 768px breakpoint ---- */
@media (max-width: 768px) {
  /* Container padding */
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  /* Page header v2 */
  .page-header-v2 {
    min-height: 260px;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  }

  .page-header-v2__title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    line-height: 1.25;
  }

  .page-header-v2__subtitle {
    font-size: 0.95rem;
  }

  .page-header-v2__badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  /* Article spacing */
  .article {
    padding: var(--space-lg) 0;
  }

  .article__content h2 {
    font-size: 1.3rem;
    margin: var(--space-xl) 0 var(--space-md);
    word-wrap: break-word;
  }

  .article__content h3 {
    font-size: 1.1rem;
  }

  .article__content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .article__content ul,
  .article__content ol {
    padding-left: var(--space-lg);
  }

  /* Table cells */
  .article__content td,
  .article__content th {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.85rem !important;
  }

  /* FAQ on mobile */
  .faq summary {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
  }

  .faq .faq__answer {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }

  /* IG banner */
  .ig-banner {
    padding: var(--space-xl) var(--space-md);
  }

  .ig-banner__title {
    font-size: 1.2rem;
  }

  .ig-banner__text {
    font-size: 0.9rem;
  }

  /* Footer grid */
  .footer {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .footer__disclaimer {
    font-size: 0.65rem;
  }
}

/* ---- 480px breakpoint ---- */
@media (max-width: 480px) {
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  /* Page header v2 */
  .page-header-v2 {
    min-height: 220px;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-sm) var(--space-lg);
  }

  .page-header-v2__title {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }

  .page-header-v2__subtitle {
    font-size: 0.85rem;
    margin-top: var(--space-sm);
  }

  .page-header-v2__glow {
    width: 300px;
    height: 300px;
  }

  /* Countdown responsive */
  .release-card__countdowns {
    grid-template-columns: 1fr;
  }

  .release-card__countdown-number {
    font-size: 1rem;
  }

  /* Table cells tighter */
  .article__content td,
  .article__content th {
    padding: 0.3rem 0.4rem !important;
    font-size: 0.78rem !important;
    white-space: nowrap;
  }

  /* Breadcrumb */
  .container nav[aria-label="Breadcrumb"] {
    font-size: 0.78rem !important;
  }

  /* IG banner */
  .ig-banner {
    padding: var(--space-lg) var(--space-sm);
  }

  .ig-banner__title {
    font-size: 1.1rem;
  }

  .ig-banner__text {
    font-size: 0.85rem;
  }

  .ig-banner .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  /* Footer stacks to single column */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__disclaimer {
    font-size: 0.6rem;
  }
}
