/* page overrides */
body.hovering #cur { background: var(--red); }

/* ━━━━━━━━━━━━ HEADER ━━━━━━━━━━━━ */
    .header-breaking {
      background: var(--red); color: #000;
      display: inline-block; padding: 4px 16px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px; letter-spacing: 3px;
      animation: blinkRed 1.5s ease-in-out infinite;
    }
    @keyframes blinkRed { 0%,100%{opacity:1} 50%{opacity:.6} }
    .header-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; letter-spacing: 2px;
      margin-left: 16px; display: inline-block;
      color: rgba(255,255,255,.8);
    }

    /* ━━━━━━━━━━━━ HERO ━━━━━━━━━━━━ */
    .hero {
      padding: 80px 40px 60px;
      text-align: center;
      position: relative;
      background: radial-gradient(circle at 50% 0%, rgba(255,51,102,.1), transparent 60%);
    }
    .hero-label {
      display: inline-block;
      font-family: 'Space Mono', monospace;
      font-size: 11px; letter-spacing: 4px;
      color: var(--red); text-transform: uppercase;
      padding: 8px 20px;
      border: 1px solid var(--red);
      margin-bottom: 28px;
      animation: pulseLabel 2s ease-in-out infinite;
    }
    @keyframes pulseLabel { 0%,100%{box-shadow:0 0 0 rgba(255,51,102,0)} 50%{box-shadow:0 0 30px rgba(255,51,102,.4)} }

    .hero-title .highlight {
      background: linear-gradient(135deg, var(--red), var(--pink));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtitle {
      font-size: 16px; line-height: 1.8;
      color: rgba(255,255,255,.6);
      max-width: 700px; margin: 0 auto;
    }

    /* ━━━━━━━━━━━━ SCOOP PHOTOS ━━━━━━━━━━━━ */
    .scoop {
      padding: 80px 40px;
      max-width: 1200px; margin: 0 auto;
    }
    .scoop-label {
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px; letter-spacing: 6px;
      background: linear-gradient(135deg, var(--red), var(--purple-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 60px;
    }

    .scoop-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    .scoop-card {
      position: relative;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,51,102,.3);
      padding: 28px;
      overflow: hidden;
      transition: transform .5s, border-color .4s, box-shadow .4s;
    }
    .scoop-card::before {
      content: ''; position: absolute; inset: -100%;
      background: conic-gradient(from 0deg, transparent, var(--red), transparent);
      animation: cardRot 5s linear infinite;
      opacity: 0; transition: opacity .4s;
    }
    .scoop-card:hover::before { opacity: .3; }
    @keyframes cardRot { to { transform: rotate(360deg); } }
    .scoop-card::after {
      content: ''; position: absolute; inset: 2px;
      background: rgba(6,6,8,.9); z-index: 0;
    }
    .scoop-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: var(--red);
      box-shadow: 0 30px 80px rgba(255,51,102,.3);
    }
    .scoop-card > * { position: relative; z-index: 1; }

    .scoop-img-wrap {
      width: 100%;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: rgba(255,255,255,.02);
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }
    .scoop-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.2) contrast(1.1);
      transition: transform .5s;
    }
    .scoop-card:hover .scoop-img-wrap img {
      transform: scale(1.08);
    }
    .scoop-stamp {
      position: absolute;
      top: 16px; right: 16px;
      background: var(--red);
      color: #000;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px; letter-spacing: 2px;
      padding: 6px 16px;
      transform: rotate(12deg);
      box-shadow: 0 4px 20px rgba(255,51,102,.6);
      animation: stampPulse 2s ease-in-out infinite;
      z-index: 10; /* Fix: ensure stamp is above image */
    }
    @keyframes stampPulse { 0%,100%{transform:rotate(12deg) scale(1)} 50%{transform:rotate(12deg) scale(1.05)} }

    .scoop-card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px; color: var(--white);
      margin-bottom: 12px;
    }
    .scoop-card-desc {
      font-size: 14px; line-height: 1.8;
      color: rgba(255,255,255,.6);
    }

    /* ━━━━━━━━━━━━ COUPLE PHOTOS ━━━━━━━━━━━━ */
    .couple-section {
      padding: 80px 40px;
      max-width: 1200px;
      margin: 0 auto;
      background: radial-gradient(circle at 50% 0%, rgba(255,51,102,.06), transparent 70%);
    }
    .couple-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 90px);
      text-align: center;
      margin-bottom: 60px;
      background: linear-gradient(135deg, var(--red), var(--pink));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .couple-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 60px;
    }
    .couple-photo {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      border: 2px solid rgba(255,51,102,.3);
      transition: border-color .4s, transform .4s;
    }
    .couple-photo:hover {
      border-color: var(--red);
      transform: scale(1.02);
    }
    .couple-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }
    .couple-photo:hover img {
      transform: scale(1.1);
    }
    .couple-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
      font-size: 13px;
      color: rgba(255,255,255,.8);
    }

    /* ━━━━━━━━━━━━ COMPATIBILITY ━━━━━━━━━━━━ */
    .compatibility {
      padding: 80px 40px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .compat-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      text-align: center;
      margin-bottom: 60px;
      color: var(--white);
    }
    .compat-title span {
      color: var(--red);
    }
    .compat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 60px;
    }
    .compat-card {
      padding: 40px 32px;
      background: rgba(255,255,255,.025);
      border-left: 4px solid var(--red);
      transition: background .4s, transform .4s;
    }
    .compat-card:hover {
      background: rgba(255,51,102,.06);
      transform: translateX(8px);
    }
    .compat-icon {
      font-size: 48px;
      display: block;
      margin-bottom: 20px;
    }
    .compat-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--white);
      margin-bottom: 12px;
    }
    .compat-desc {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255,255,255,.6);
    }

    /* ━━━━━━━━━━━━ FANS THEORIES ━━━━━━━━━━━━ */
    .theories {
      padding: 80px 40px;
      max-width: 1100px;
      margin: 0 auto;
      background: radial-gradient(circle at 50% 50%, rgba(255,51,102,.05), transparent 70%);
    }
    .theories-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 7vw, 80px);
      text-align: center;
      margin-bottom: 60px;
      color: var(--white);
    }
    .theory-item {
      padding: 36px 32px;
      margin-bottom: 24px;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,51,102,.2);
      position: relative;
      overflow: hidden;
      transition: background .4s, border-color .4s;
    }
    .theory-item::before {
      content: '💭';
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 60px;
      opacity: .06;
    }
    .theory-item:hover {
      background: rgba(255,51,102,.06);
      border-color: var(--red);
    }
    .theory-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }
    .theory-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      color: var(--red);
    }
    .theory-title-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      color: var(--white);
    }
    .theory-content {
      font-size: 14px;
      line-height: 1.9;
      color: rgba(255,255,255,.65);
    }

    /* ━━━━━━━━━━━━ FUTURE SECTION ━━━━━━━━━━━━ */
    .future {
      padding: 100px 40px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .future-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 9vw, 110px);
      margin-bottom: 32px;
      background: linear-gradient(135deg, var(--red), var(--pink), var(--purple-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 5s ease infinite;
    }
    @keyframes gradientShift {
      0%, 100% { filter: hue-rotate(0deg); }
      50% { filter: hue-rotate(15deg); }
    }
    .future-text {
      font-size: 16px;
      line-height: 2;
      color: rgba(255,255,255,.65);
      max-width: 700px;
      margin: 0 auto 60px;
    }
    .future-hearts {
      font-size: 80px;
      animation: heartsFloat 3s ease-in-out infinite;
    }
    @keyframes heartsFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .story {
      padding: 80px 40px;
      max-width: 900px;
      margin: 0 auto;
    }
    .story-section {
      margin-bottom: 60px;
    }
    .story-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 64px);
      color: var(--white);
      margin-bottom: 28px;
      line-height: 1;
    }
    .story-heading span {
      color: var(--red);
    }
    .story-text {
      font-size: 15px;
      line-height: 2;
      color: rgba(255,255,255,.65);
      margin-bottom: 20px;
    }
    .story-text strong {
      color: var(--red);
      font-weight: 700;
    }

    .quote {
      padding: 32px 28px;
      background: rgba(255,51,102,.08);
      border-left: 4px solid var(--red);
      margin: 40px 0;
    }
    .quote-text {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 18px;
      line-height: 1.9;
      color: var(--white);
      font-style: italic;
      margin-bottom: 16px;
    }
    .quote-author {
      font-family: 'Space Mono', monospace;
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--red);
      text-transform: uppercase;
    }

    /* ━━━━━━━━━━━━ TIMELINE ━━━━━━━━━━━━ */
    .love-timeline {
      padding: 80px 40px;
      max-width: 900px;
      margin: 0 auto;
    }
    .love-timeline-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 90px);
      text-align: center;
      margin-bottom: 80px;
      background: linear-gradient(135deg, var(--red), var(--pink), var(--purple-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .timeline {
      position: relative;
      padding-left: 60px;
      border-left: 2px solid rgba(255,51,102,.3);
    }
    .timeline-item {
      position: relative;
      margin-bottom: 60px;
      padding: 28px;
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(255,51,102,.2);
      transition: background .4s, transform .4s;
    }
    .timeline-item:hover {
      background: rgba(255,51,102,.06);
      transform: translateX(8px);
    }
    .timeline-item::before {
      content: '💕';
      position: absolute;
      left: -80px; top: 28px;
      width: 40px; height: 40px;
      background: rgba(255,51,102,.2);
      border: 3px solid var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: transform .4s, background .4s;
    }
    .timeline-item:hover::before {
      transform: scale(1.2) rotate(360deg);
      background: var(--red);
    }
    .timeline-date {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--red);
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .timeline-event {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--white);
      margin-bottom: 10px;
    }
    .timeline-desc {
      font-size: 13px;
      line-height: 1.8;
      color: rgba(255,255,255,.6);
    }

    /* ━━━━━━━━━━━━ REACTIONS ━━━━━━━━━━━━ */
    .reactions {
      padding: 80px 40px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }
    .reactions-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(44px, 7vw, 80px);
      color: var(--white);
      margin-bottom: 60px;
    }
    .reactions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .reaction-card {
      padding: 36px 28px;
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(255,51,102,.2);
      transition: transform .4s, border-color .3s;
    }
    .reaction-card:hover {
      transform: translateY(-8px);
      border-color: var(--red);
    }
    .reaction-emoji {
      font-size: 48px;
      display: block;
      margin-bottom: 20px;
      animation: emojiFloat 3s ease-in-out infinite;
    }
    .reaction-card:nth-child(2) .reaction-emoji { animation-delay: -.8s; }
    .reaction-card:nth-child(3) .reaction-emoji { animation-delay: -1.6s; }
    @keyframes emojiFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    
    .reaction-text {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,.65);
    }
    .reaction-author {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--red);
      margin-top: 16px;
      text-transform: uppercase;
    }

    /* ━━━━━━━━━━━━ NEXT REPORT TEASER ━━━━━━━━━━━━ */
    .next-report {
      padding: 0 40px 100px;
      max-width: 700px;
      margin: 0 auto;
    }
    .next-report-card {
      display: block;
      padding: 40px 36px;
      background: rgba(255,51,102,.06);
      border: 1px solid rgba(255,51,102,.4);
      text-align: center;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform .4s, border-color .4s, box-shadow .4s;
    }
    .next-report-card:hover {
      transform: translateY(-6px);
      border-color: var(--red);
      box-shadow: 0 24px 60px rgba(255,51,102,.25);
    }
    .next-report-badge {
      display: inline-block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px; letter-spacing: 3px;
      color: var(--red);
      margin-bottom: 16px;
      animation: blinkRed 1.5s ease-in-out infinite;
    }
    .next-report-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 5vw, 40px);
      color: var(--white);
      margin-bottom: 14px;
    }
    .next-report-title span { color: var(--red); }
    .next-report-desc {
      font-size: 14px; line-height: 1.8;
      color: rgba(255,255,255,.6);
      margin-bottom: 24px;
    }
    .next-report-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px; letter-spacing: 2px;
      color: var(--red);
    }
    .next-report-arrow {
      transition: transform .3s;
      display: inline-block;
    }
    .next-report-card:hover .next-report-arrow {
      transform: translateX(6px);
    }

    /* ━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━ */
    .footer-love {
      font-size: 80px;
      margin-bottom: 20px;
      animation: heartBeat 1.5s ease-in-out infinite;
    }
    @keyframes heartBeat { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
    .footer-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 4px;
      background: linear-gradient(135deg, var(--red), var(--pink));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 12px;
    }
