/* ============================================
   UNIVERSO MANGÁ 2026 — MANGA INK THEME
   Palette: Black / White / Red — Manga style
   ============================================ */

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

:root {
  --ink:     #0a0a0a;
  --ink2:    #141414;
  --ink3:    #1e1e1e;
  --paper:   #f0ece4;       /* aged paper white */
  --paper2:  #e8e4dc;
  --red:     #d10000;
  --red2:    #ff1a1a;
  --red-dark:#8b0000;
  --gray:    #aaaaaa;
  --border:  3px solid #0a0a0a;
  --shadow:  4px 4px 0 #0a0a0a;
  --font-display: 'Bangers', cursive;
  --font-jp:      'Noto Serif JP', serif;
  --font-bold:    'Oswald', sans-serif;
  --font-base:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base);
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
em { font-style: normal; color: var(--red2); }

/* ============================
   SPEED LINES (CSS SVG pattern)
   ============================ */
.speed-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255,255,255,0.015) 0deg,
    rgba(255,255,255,0.015) 1deg,
    transparent 1deg,
    transparent 4deg
  );
  pointer-events: none;
  z-index: 0;
}

.offer-lines {
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(209,0,0,0.07) 0deg,
    rgba(209,0,0,0.07) 1deg,
    transparent 1deg,
    transparent 4deg
  );
}

/* ============================
   HALFTONE
   ============================ */
.halftone-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

.halftone-bg-dark {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* ============================
   ALERT BANNER
   ============================ */
.alert-banner {
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-bold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 11px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--red-dark);
}

.dot-anim {
  width: 8px; height: 8px;
  background: var(--paper);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.1s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ============================
   HERO
   ============================ */
.hero {
  background: var(--ink);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
}

/* Manga panel border effect at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--red);
}

/* ============================
   CHARACTERS
   ============================ */
.char {
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.char-left {
  left: -20px;
  width: clamp(180px, 22vw, 320px);
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

.char-right {
  right: -20px;
  width: clamp(180px, 22vw, 320px);
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.char img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.2) brightness(0.9);
  mix-blend-mode: screen;
}

/* Tint characters red slightly */
.char::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(209,0,0,0.12);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 3;
}

/* ============================
   LOGO
   ============================ */
.manga-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.manga-logo-bg {
  position: absolute;
  inset: -8px -12px;
  background: var(--red);
  z-index: -1;
  clip-path: polygon(2% 0%, 98% 0%, 100% 91%, 96% 100%, 4% 100%, 0% 91%);
}

.logo-japanese {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3em;
  line-height: 1;
}

.logo-main-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: 0.05em;
  text-shadow: 4px 4px 0 var(--ink), 6px 6px 0 rgba(0,0,0,0.3);
}

.logo-main-title span {
  color: var(--paper);
  display: block;
}

.logo-year-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-bold);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 3px 12px;
  border: 2px solid var(--paper);
  margin-top: 4px;
  letter-spacing: 0.1em;
}

/* ============================
   INK STAMP
   ============================ */
.ink-stamp-wrap {
  margin: 24px 0 20px;
}

.ink-stamp {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--red), 6px 6px 0 rgba(0,0,0,0.5);
  line-height: 1;
}

.ink-stamp-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  letter-spacing: 0.1em;
  color: var(--red2);
  text-shadow: 2px 2px 0 var(--red-dark);
  line-height: 1;
  margin-top: 4px;
}

.hero-desc {
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  color: var(--gray);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-desc strong { color: var(--paper); }

/* ============================
   HERO PANEL GRID
   ============================ */
.hero-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr;
  grid-template-rows: auto;
  gap: 0;
  border: 3px solid var(--paper);
  box-shadow: 6px 6px 0 var(--red);
  max-width: 600px;
  margin: 0 auto 36px;
  background: var(--ink);
}

.panel-block {
  border: 2px solid var(--paper);
  padding: 20px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.panel-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240,236,228,0.04) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

.pb-tall { background: var(--red); }
.pb-mid  { background: var(--ink2); }
.pb-wide { background: var(--ink3); border: 2px solid var(--red); }
.pb-tall2 { background: var(--ink2); }

.panel-inner p {
  font-family: var(--font-bold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-top: 6px;
}

.sfx {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--paper);
  display: block;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.sfx-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--paper);
  display: block;
  line-height: 1;
}

.sfx-kindle {
  font-family: var(--font-bold);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--red2);
  display: block;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid var(--red);
  padding: 4px 8px;
  display: inline-block;
}

/* ============================
   CTA BUTTONS
   ============================ */
.cta-main {
  display: inline-block;
  font-family: var(--font-bold);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 44px;
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: all 0.15s ease;
  position: relative;
  cursor: pointer;
}

.cta-main:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--red2);
}

.cta-main:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.cta-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.04) 8px,
    rgba(255,255,255,0.04) 9px
  );
  pointer-events: none;
}

.hero-cta-sub {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============================
   TICKER
   ============================ */
.ticker-bar {
  background: var(--red);
  border-top: 3px solid var(--red-dark);
  border-bottom: 3px solid var(--red-dark);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}

.ticker-track span {
  font-family: var(--font-bold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paper);
  padding: 0 40px;
}

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

/* ============================
   CHARS SECTION
   ============================ */
.chars-section {
  background: var(--ink2);
  padding: 70px 0;
  position: relative;
  text-align: center;
}

.chars-panel-line {
  height: 4px;
  background: repeating-linear-gradient(to right, var(--red) 0px, var(--red) 16px, transparent 16px, transparent 20px);
}

.chars-header {
  margin-bottom: 40px;
}

.sfx-title {
  font-family: var(--font-bold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red2);
  text-transform: uppercase;
  border: 2px solid var(--red);
  display: inline-block;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.chars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--paper);
  letter-spacing: 0.03em;
}

.series-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.series-item {
  background: var(--ink);
  border: 2px solid #333;
  padding: 16px 14px;
  text-align: left;
  transition: all 0.2s ease;
  cursor: default;
  position: relative;
}

.series-item:hover {
  border-color: var(--red);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--red-dark);
}

.series-tag {
  font-family: var(--font-bold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red2);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.series-item strong {
  display: block;
  font-family: var(--font-bold);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.series-item span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* variant border accents */
.si-1 { border-left: 4px solid #e67e22; }
.si-2 { border-left: 4px solid #3498db; }
.si-3 { border-left: 4px solid #f39c12; }
.si-4 { border-left: 4px solid #1a1a1a; border-left-color: #888; }
.si-5 { border-left: 4px solid #2c3e50; }
.si-6 { border-left: 4px solid var(--red); }
.si-7 { border-left: 4px solid #16a085; }
.si-8 { border-left: 4px solid #8e44ad; }
.si-9 { border-left: 4px solid #e74c3c; }
.si-10 { border-left: 4px solid #555; }
.si-11 { border-left: 4px solid #d4a017; }
.si-12 { border-left: 4px solid #e67e22; }

.series-more {
  font-family: var(--font-bold);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red2);
  border: 2px dashed var(--red);
  padding: 12px 30px;
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================
   CHARACTER BREAK
   ============================ */
.char-break {
  background: var(--paper);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.char-break-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 30% 50%,
    rgba(10,10,10,0.04) 0deg,
    rgba(10,10,10,0.04) 1deg,
    transparent 1deg,
    transparent 4deg
  );
}

.char-break-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.break-char {
  width: clamp(160px, 25vw, 280px);
  display: block;
  filter: contrast(1.3) brightness(0.85);
  flex-shrink: 0;
  margin-bottom: -4px;
}

.break-text {
  padding: 40px 0;
  flex: 1;
}

.break-sfx {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--red);
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  -webkit-text-stroke: 2px var(--ink);
  margin-bottom: 10px;
}

.break-text p {
  font-family: var(--font-bold);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.break-text p strong { color: var(--red-dark); }

/* ============================
   FEATURES SECTION
   ============================ */
.features-section {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.panel-label {
  display: inline-block;
  font-family: var(--font-bold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red2);
  border: 2px solid var(--red);
  padding: 5px 16px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--paper);
  letter-spacing: 0.03em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3px;
  border: 3px solid #333;
}

.feat-card {
  background: var(--ink2);
  border: 2px solid #2a2a2a;
  padding: 28px 22px;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  transition: width 0.3s ease;
}

.feat-card:hover::after { width: 100%; }

.feat-card:hover {
  background: var(--ink3);
  transform: translate(-2px, -2px);
  z-index: 1;
  box-shadow: 4px 4px 0 var(--red-dark);
}

.fc-highlight {
  background: linear-gradient(135deg, var(--ink3), #1a0000);
  border: 2px solid var(--red-dark) !important;
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.feat-card h3 {
  font-family: var(--font-bold);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feat-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.feat-card p strong { color: var(--paper); }

.kindle-badge {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-bold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red2);
  border: 1px solid var(--red);
  padding: 3px 10px;
  letter-spacing: 0.08em;
}

/* ============================
   KINDLE SECTION
   ============================ */
.kindle-section {
  background: var(--paper);
  padding: 80px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.kindle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.kindle-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* CSS Kindle device */
.kindle-device {
  flex-shrink: 0;
  width: 200px;
  position: relative;
}

.kindle-body {
  width: 200px;
  height: 280px;
  background: linear-gradient(145deg, #2a2a2a, #111);
  border-radius: 10px;
  border: 3px solid #000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 6px 6px 0 #000;
  position: relative;
}

.kindle-screen {
  position: absolute;
  top: 18px;
  left: 14px;
  right: 14px;
  bottom: 50px;
  background: #e8e4dc;
  border: 2px solid #555;
  border-radius: 4px;
  overflow: hidden;
}

.kindle-bezel {
  display: none;
}

.kindle-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background: #333;
  border-radius: 4px;
  border: 1px solid #555;
  z-index: 10;
}

/* Manga panels on kindle screen */
.kindle-manga-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  padding: 4px;
  height: 100%;
  background: #ddd;
}

.kp {
  background: #f0ece4;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.kp::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 8px 8px;
}

.kp1 { background: #e8e4dc; }
.kp2 { background: linear-gradient(135deg, #e8e4dc, #ccc); }
.kp3 { grid-column: 1; background: #ddd; }
.kp4 { grid-column: 2; }

.kp-content { position: relative; z-index: 1; text-align: center; }

.sfx-mini {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.speech-bubble {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px 8px 8px 0;
  padding: 5px 8px;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-jp);
  box-shadow: 2px 2px 0 var(--ink);
  position: relative;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 6px;
  border: 4px solid transparent;
  border-top-color: var(--ink);
}

.kindle-info {
  flex: 1;
  min-width: 260px;
}

.kindle-info .panel-label {
  color: var(--ink);
  border-color: var(--ink);
}

.kindle-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.kindle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.kindle-list li {
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.kindle-list li strong { color: var(--red-dark); }

.kindle-note {
  font-size: 0.8rem;
  color: #555;
  background: rgba(0,0,0,0.05);
  border-left: 4px solid var(--ink);
  padding: 10px 14px;
  font-style: italic;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-section {
  background: var(--ink2);
  padding: 80px 0;
  position: relative;
}

.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.step-block {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  position: relative;
}

.step-num-wrap {
  margin-bottom: 12px;
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red2);
  line-height: 1;
  text-shadow: 3px 3px 0 var(--red-dark);
  -webkit-text-stroke: 1px var(--red-dark);
}

.step-content {
  background: var(--ink3);
  border: 2px solid #333;
  border-left: 4px solid var(--red);
  padding: 22px 18px;
  transition: all 0.2s ease;
}

.step-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(209,0,0,0.2);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.step-content h3 {
  font-family: var(--font-bold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
}

.step-arrow {
  font-size: 2rem;
  color: var(--red);
  align-self: center;
  margin-top: 40px;
  font-weight: 900;
  opacity: 0.7;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 0;
  border: 3px solid #333;
  margin-top: 10px;
}

.testi-card {
  background: var(--ink2);
  border: 2px solid #2a2a2a;
  padding: 24px;
  text-align: left;
  transition: all 0.2s ease;
}

.testi-card:hover {
  background: var(--ink3);
  border-top: 2px solid var(--red);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bold);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--paper);
  border: 2px solid #444;
  flex-shrink: 0;
  overflow: hidden;
}

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

.testi-top > div:nth-child(2) { flex: 1; }
.testi-top strong {
  display: block;
  font-family: var(--font-bold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
}

.stars { color: var(--red2); font-size: 0.8rem; }
.testi-heart { color: var(--red2); font-size: 1.2rem; }

.testi-card p {
  font-size: 0.83rem;
  color: #aaa;
  line-height: 1.6;
  font-style: italic;
}

/* ============================
   OFFER / PRICING
   ============================ */
.offer-section {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(209,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.offer-stamp {
  margin-bottom: 30px;
}

.stamp-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--paper);
  background: var(--red);
  padding: 10px 30px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--red-dark);
  letter-spacing: 0.06em;
  animation: stampPulse 2s ease-in-out infinite;
}

@keyframes stampPulse {
  0%,100% { box-shadow: 6px 6px 0 var(--red-dark); }
  50%      { box-shadow: 6px 6px 0 var(--red-dark), 0 0 30px rgba(209,0,0,0.4); }
}

.stamp-sub {
  font-family: var(--font-bold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 12px;
}

/* PRICE PANEL */
.price-panel {
  background: var(--ink2);
  border: 3px solid var(--red);
  box-shadow: 8px 8px 0 var(--red-dark);
  max-width: 700px;
  margin: 0 auto 36px;
  position: relative;
  overflow: hidden;
}

.price-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(240,236,228,0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.price-panel-header {
  background: var(--red);
  padding: 20px 30px;
  position: relative;
}

.price-badge-top {
  font-family: var(--font-bold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.price-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  color: var(--paper);
  letter-spacing: 0.05em;
}

.price-body {
  display: flex;
  gap: 0;
  border-top: 2px solid #333;
}

.price-left {
  padding: 36px 30px;
  border-right: 2px solid #2a2a2a;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.from-label, .to-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.price-from {
  font-family: var(--font-bold);
  font-size: 1.3rem;
  color: #555;
  text-decoration: line-through;
  margin-bottom: 12px;
}

.to-label { margin-top: 6px; }

.price-big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.p-cur {
  font-family: var(--font-bold);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--paper);
}

.p-val {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 5.5rem);
  color: var(--paper);
  line-height: 1;
  text-shadow: 3px 3px 0 var(--red-dark);
}

.p-cts {
  font-family: var(--font-bold);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--paper);
}

.p-saving {
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-bold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-top: 14px;
  border: 2px solid var(--red-dark);
}

.price-right {
  padding: 24px 28px;
  flex: 1;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inc {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--paper);
  line-height: 1.4;
}

.inc-check {
  color: var(--red2);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 1rem;
}

.cta-offer {
  display: block;
  text-align: center;
  width: 100%;
  padding: 22px;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  margin-top: 0;
}

.payment-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 24px;
  border-top: 2px solid #2a2a2a;
}

.pay-icon {
  font-family: var(--font-bold);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================
   COUNTDOWN
   ============================ */
.countdown-wrap {
  max-width: 420px;
  margin: 0 auto;
  background: var(--ink2);
  border: 3px solid #333;
  box-shadow: var(--shadow);
  padding: 20px 30px;
  text-align: center;
}

.cd-label {
  font-family: var(--font-bold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red2);
  margin-bottom: 14px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cd-unit {
  background: var(--red);
  border: 2px solid var(--red-dark);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.cd-unit span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--paper);
  line-height: 1;
}

.cd-unit small {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

/* ============================
   FAQ
   ============================ */
.faq-section {
  background: var(--ink2);
  padding: 80px 0;
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 10px auto 0;
  text-align: left;
}

.faq-item {
  border: 2px solid #2a2a2a;
  margin-bottom: 6px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--ink3);
  color: var(--paper);
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-bold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-q:hover { background: #252525; }
.faq-q.active { background: var(--red); color: var(--paper); }
.faq-q.active .faq-arr { transform: rotate(180deg); }

.faq-arr {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  opacity: 0.7;
  flex-shrink: 0;
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--ink);
}

.faq-ans p {
  padding: 18px 22px;
  font-size: 0.87rem;
  color: #bbb;
  line-height: 1.65;
}

.faq-ans p strong { color: var(--paper); }
.faq-ans.open { max-height: 200px; }

/* ============================
   FINAL CTA
   ============================ */
.final-section {
  background: var(--red-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--ink);
}

.final-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.12) 20px,
    rgba(0,0,0,0.12) 21px
  );
  pointer-events: none;
}

.final-inner { position: relative; z-index: 2; }

.final-sfx {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}

.final-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  color: var(--paper);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.final-desc {
  font-family: var(--font-bold);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
}

.cta-final {
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  padding: 22px 55px;
  border: 3px solid var(--ink);
}

.cta-final:hover {
  background: var(--paper2);
}

.final-sub {
  margin-top: 16px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--ink);
  border-top: 4px solid var(--red-dark);
  padding: 28px 0;
  text-align: center;
  color: #444;
  font-size: 0.78rem;
  line-height: 1.8;
}

/* ============================
   EXIT INTENT POPUP
   ============================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.popup-panel {
  background: var(--ink2);
  border: 4px solid var(--red);
  box-shadow: 10px 10px 0 var(--red-dark), 20px 20px 0 rgba(0,0,0,0.5);
  max-width: 460px;
  width: 100%;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes popIn {
  from { transform: scale(0.6) rotate(-5deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* Speed lines inside popup */
.popup-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(209,0,0,0.04) 0deg,
    rgba(209,0,0,0.04) 1deg,
    transparent 1deg,
    transparent 4deg
  );
  pointer-events: none;
}

.popup-close {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--ink3);
  border: 2px solid #444;
  color: var(--paper);
  width: 30px; height: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.popup-close:hover { background: var(--red); border-color: var(--red-dark); }

.popup-sfx {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red2);
  text-shadow: 3px 3px 0 var(--red-dark), -2px -2px 0 var(--ink);
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.popup-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--paper);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.popup-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.popup-desc strong { color: var(--paper); }

.popup-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.popup-old {
  font-family: var(--font-bold);
  font-size: 1.3rem;
  color: #555;
  text-decoration: line-through;
}

.popup-new {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--paper);
  text-shadow: 2px 2px 0 var(--red-dark);
}

.popup-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.popup-no {
  display: block;
  background: none;
  border: none;
  color: #444;
  font-size: 0.72rem;
  cursor: pointer;
  margin-top: 14px;
  text-decoration: underline;
  width: 100%;
  position: relative;
  z-index: 2;
}

.popup-no:hover { color: #666; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .char-left, .char-right { display: none; }
  .hero-panel-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .kindle-inner { flex-direction: column; align-items: center; }
  .kindle-device { margin-bottom: 30px; }
  .price-body { flex-direction: column; }
  .price-left { border-right: none; border-bottom: 2px solid #2a2a2a; }
  .steps-wrap { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; align-self: center; }
  .step-block { max-width: 100%; width: 100%; }
  .char-break-inner { flex-direction: column; align-items: center; gap: 10px; }
  .break-char { width: clamp(120px, 60vw, 220px); }
  .break-text { text-align: center; padding: 20px 0; }
  .popup-panel { padding: 36px 20px; }
  .cta-main { padding: 16px 28px; }
}

@media (max-width: 480px) {
  .hero-panel-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .series-list { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .alert-banner { font-size: 0.72rem; flex-wrap: wrap; }
}
