/* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       HERO
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }

    .blob {
      position: absolute; border-radius: 50%;
      filter: blur(90px); pointer-events: none;
    }
    .b1 { width: 600px; height: 600px; background: var(--purple); top: -200px; left: -200px; opacity: .3; animation: bd 14s ease-in-out infinite alternate; }
    .b2 { width: 400px; height: 400px; background: var(--purple-light); bottom: -100px; right: -100px; opacity: .25; animation: bd 10s ease-in-out infinite alternate-reverse; }
    .b3 { width: 300px; height: 300px; background: var(--gold); top: 40%; right: 10%; opacity: .1; animation: bd 18s ease-in-out infinite alternate; }
    @keyframes bd {
      0%   { transform: translate(0,0) scale(1); }
      100% { transform: translate(40px,-30px) scale(1.1); }
    }

    .grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(107,33,212,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,33,212,.07) 1px, transparent 1px);
      background-size: 64px 64px;
      animation: gridScroll 30s linear infinite;
    }
    @keyframes gridScroll { to { background-position: 64px 64px; } }

    /* BIG NAME — split letter animation */
    .hero-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(130px, 24vw, 280px);
      line-height: 0.82;
      position: relative; z-index: 2;
      text-align: center;
      overflow: hidden;
    }
    .hero-name .letter {
      display: inline-block;
      color: var(--white);
      animation: letterDrop 1s cubic-bezier(.16,1,.3,1) both;
      -webkit-text-stroke: 1px rgba(255,255,255,.08);
    }
    .hero-name .letter:nth-child(1) { animation-delay: 0s; color: var(--white); }
    .hero-name .letter:nth-child(2) { animation-delay: .08s; color: var(--purple-light); text-shadow: 0 0 60px var(--purple-glow); }
    @keyframes letterDrop {
      from { opacity: 0; transform: translateY(-100px) rotate(-8deg); }
      to   { opacity: 1; transform: translateY(0) rotate(0); }
    }

    /* GIF + ring */
    .gif-wrap {
      position: relative; z-index: 3;
      margin: 32px 0 16px;
      animation: heroGif 1.2s .3s cubic-bezier(.16,1,.3,1) both;
    }
    @keyframes heroGif {
      from { opacity: 0; transform: scale(.6) rotate(-12deg); }
      to   { opacity: 1; transform: scale(1) rotate(0); }
    }
    .gif-inner { position: relative; display: inline-block; }
    .gif-inner img {
      width: 240px; display: block;
      filter: drop-shadow(0 20px 60px var(--purple-glow));
      animation: gifFloat 3.5s ease-in-out infinite;
    }
    @keyframes gifFloat {
      0%,100% { transform: translateY(0) rotate(-1.5deg); }
      50%      { transform: translateY(-20px) rotate(1.5deg); }
    }
    .orbit {
      position: absolute; inset: -36px;
      border: 1px dashed rgba(155,95,227,.45);
      border-radius: 50%;
      animation: orb 7s linear infinite;
    }
    .orbit::before {
      content: '✌️'; font-size: 22px;
      position: absolute; top: 6px; left: 50%;
      transform: translateX(-50%);
    }
    @keyframes orb { to { transform: rotate(360deg); } }

    /* Tagline — typewriter */
    .typewriter {
      font-family: 'Space Mono', monospace;
      font-size: 13px; letter-spacing: 5px;
      text-transform: uppercase; color: var(--text-dim);
      position: relative; z-index: 2;
      overflow: hidden; white-space: nowrap;
      border-right: 2px solid var(--purple-light);
      width: 0;
      animation:
        twType 2s .9s steps(30, end) forwards,
        twBlink .75s 2.9s step-end infinite;
    }
    @keyframes twType   { to { width: 28ch; } }
    @keyframes twBlink  { 0%,100% { border-color: var(--purple-light); } 50% { border-color: transparent; } }

    /* Scroll arrow */
    .scroll-arrow {
      position: absolute; bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      opacity: .35; animation: saBounce 2s ease-in-out infinite;
    }
    .scroll-arrow span { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; }
    .scroll-arrow svg { width: 20px; }
    @keyframes saBounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       MARQUEE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .marquee { background: var(--purple); overflow: hidden; padding: 18px 0; }
    .mtrack {
      display: flex; white-space: nowrap;
      animation: mq 20s linear infinite;
    }
    .mtrack span { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 6px; padding: 0 36px; color: rgba(255,255,255,.9); }
    .mtrack .dot { color: var(--gold); }
    @keyframes mq { to { transform: translateX(-50%); } }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       SECTION WRAPPER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .section { padding: 120px 40px; max-width: 1000px; margin: 0 auto; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       ABOUT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

    .about-img { position: relative; }
    .about-img img { width: 100%; max-width: 260px; filter: drop-shadow(0 12px 40px var(--purple-glow)); animation: aboutFloat 4s ease-in-out infinite; }
    @keyframes aboutFloat { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }
    .about-img::before {
      content: ''; position: absolute;
      top: 16px; left: 16px; right: -16px; bottom: -16px;
      border: 1px solid rgba(107,33,212,.35);
    }

    /* Scramble heading */
    .scramble-head {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 86px);
      line-height: .9; margin-bottom: 28px; color: var(--white);
    }
    .scramble-head em { font-style: normal; color: var(--purple-light); }

    .about p { font-size: 14px; line-height: 1.95; color: var(--text-dim); margin-bottom: 14px; }
    .tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .tag {
      font-family: 'Space Mono', monospace; font-size: 10px;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 14px; border: 1px solid rgba(107,33,212,.5);
      color: var(--purple-light);
      transition: background .3s, color .3s;
    }
    .tag:hover { background: var(--purple); color: #fff; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       GLITCH BANNER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .glitch-wrap {
      text-align: center; padding: 80px 20px;
      background: linear-gradient(180deg, transparent, rgba(107,33,212,.08), transparent);
    }
    .glitch {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 12vw, 150px);
      color: var(--white); display: inline-block; position: relative;
      animation: glitch 5s infinite;
    }
    .glitch::before, .glitch::after { content: attr(data-t); position: absolute; inset: 0; }
    .glitch::before { color: var(--purple-light); clip-path: polygon(0 0,100% 0,100% 38%,0 38%); animation: gt 5s infinite; }
    .glitch::after  { color: var(--gold);         clip-path: polygon(0 62%,100% 62%,100% 100%,0 100%); animation: gb 5s infinite; }
    @keyframes glitch { 0%,88%,100%{transform:translate(0)} 90%{transform:translate(-3px,1px)} 92%{transform:translate(3px,-1px)} 94%{transform:translate(-2px,2px)} }
    @keyframes gt { 0%,88%,100%{transform:translate(0);opacity:0} 90%{transform:translate(-8px,0);opacity:.85} 93%{transform:translate(5px,0);opacity:.85} }
    @keyframes gb { 0%,88%,100%{transform:translate(0);opacity:0} 91%{transform:translate(8px,0);opacity:.85} 94%{transform:translate(-5px,0);opacity:.85} }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       VIBES CARDS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 0 40px 100px; max-width: 1000px; margin: 0 auto; }
    .card {
      background: rgba(255,255,255,.025);
      border: 1px solid rgba(107,33,212,.25);
      padding: 36px 28px; position: relative; overflow: hidden;
      transition: transform .45s cubic-bezier(.25,1,.5,1), border-color .3s, box-shadow .3s;
    }
    .card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(107,33,212,.15), transparent);
      opacity: 0; transition: opacity .3s;
    }
    .card:hover { transform: translateY(-10px); border-color: var(--purple-light); box-shadow: 0 20px 60px rgba(107,33,212,.3); }
    .card:hover::before { opacity: 1; }
    .card-icon { font-size: 42px; margin-bottom: 18px; display: block; animation: iconPop 3s ease-in-out infinite; }
    .card:nth-child(2) .card-icon { animation-delay: -.8s; }
    .card:nth-child(3) .card-icon { animation-delay: -1.6s; }
    @keyframes iconPop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15) rotate(8deg)} }
    .card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--white); margin-bottom: 10px; }
    .card p { font-size: 13px; color: var(--text-dim); line-height: 1.8; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       MANIFESTO / SPLIT TEXT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .manifesto {
      padding: 100px 40px; max-width: 900px; margin: 0 auto;
      text-align: center;
    }
    .manifesto-label {
      font-family: 'Space Mono', monospace; font-size: 10px;
      letter-spacing: 5px; text-transform: uppercase;
      color: var(--purple-light); margin-bottom: 40px;
      display: block;
    }
    .manifesto-lines { list-style: none; }
    .manifesto-lines li {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 72px);
      line-height: 1.05;
      color: rgba(255,255,255,.12);
      transition: color .4s, text-shadow .4s;
      cursor: default;
      padding: 4px 0;
    }
    .manifesto-lines li:hover { color: var(--white); text-shadow: 0 0 40px var(--purple-glow); }
    .manifesto-lines li.lit { color: var(--purple-light); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       GALLERY — big GIF showcase
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .gallery-section {
      padding: 0 40px 120px; max-width: 1000px; margin: 0 auto;
      text-align: center;
    }
    .gallery-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 96px); color: var(--white);
      margin-bottom: 60px;
    }
    .gallery-title span { color: var(--purple-light); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }
    .gitem {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(107,33,212,.2);
      padding: 32px 20px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      transition: transform .4s, border-color .3s;
    }
    .gitem:hover { transform: scale(1.03); border-color: var(--purple-light); }
    .gitem.big { grid-column: span 2; }
    .gitem img { max-width: 200px; width: 100%; filter: drop-shadow(0 8px 30px var(--purple-glow)); }
    .gitem.big img { max-width: 280px; }
    .gitem-label {
      position: absolute; bottom: 10px; right: 12px;
      font-family: 'Space Mono', monospace; font-size: 9px;
      letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.2);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       STATS ROW
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .stats {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: rgba(107,33,212,.2);
      margin: 0 0 0 0;
    }
    .stat {
      background: var(--black);
      padding: 52px 20px; text-align: center;
    }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 80px);
      color: var(--purple-light); display: block;
      animation: statCount 2s ease-out both;
    }
    .stat-label {
      font-family: 'Space Mono', monospace; font-size: 10px;
      letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
      margin-top: 6px; display: block;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       FOOTER
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .footer-ya {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 100px; line-height: 1;
      background: linear-gradient(135deg, rgba(107,33,212,.3), rgba(155,95,227,.1));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 16px;
      margin-bottom: 20px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       PARTICLES
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #ptc { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       REVEAL
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .reveal { opacity: 0; transform: translateY(48px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-l { opacity: 0; transform: translateX(-48px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
    .reveal-l.in { opacity: 1; transform: translateX(0); }
    .reveal-r { opacity: 0; transform: translateX(48px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
    .reveal-r.in { opacity: 1; transform: translateX(0); }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       SNS LINKS SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .sns-section {
      padding: 90px 40px 110px; max-width: 1100px; margin: 0 auto;
      text-align: center;
      background: radial-gradient(circle at 50% 0%, rgba(107,33,212,.08), transparent 70%);
    }
    .sns-label {
      font-family: 'Space Mono', monospace; font-size: 10px;
      letter-spacing: 6px; text-transform: uppercase;
      color: var(--purple-light); margin-bottom: 20px; display: block;
      animation: pulseGlow 2s ease-in-out infinite;
    }
    @keyframes pulseGlow { 0%,100%{opacity:.6} 50%{opacity:1} }
    .sns-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(50px, 8vw, 90px); line-height: .92;
      color: var(--white); margin-bottom: 60px;
    }
    .sns-title span {
      background: linear-gradient(135deg, var(--purple-light), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

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

    .sns-card {
      position: relative; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 20px;
      padding: 52px 28px; text-decoration: none; color: var(--cream);
      background: rgba(10,10,14,.5);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(107,33,212,.3);
      overflow: hidden;
      transition: transform .5s cubic-bezier(.34,1.56,.64,1), border-color .4s, box-shadow .4s;
    }
    .sns-card::before {
      content: ''; position: absolute; inset: -100%;
      background: conic-gradient(from 0deg, transparent, var(--accent), transparent);
      animation: cardRotate 3s linear infinite; opacity: 0;
      transition: opacity .4s;
    }
    .sns-card::after {
      content: ''; position: absolute; inset: 2px;
      background: rgba(6,6,8,.9); border-radius: 0;
      z-index: -1;
    }
    .sns-card:hover::before { opacity: .4; }
    @keyframes cardRotate { to { transform: rotate(360deg); } }
    .sns-card:hover {
      transform: translateY(-16px) scale(1.04) rotate(-2deg);
      border-color: var(--accent);
      box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 60px var(--glow);
    }

    /* Platform colors */
    .sns-card.spotify { --accent: #1DB954; --glow: rgba(29,185,84,.25); }
    .sns-card.tiktok  { --accent: #FE2C55; --glow: rgba(254,44,85,.25); }
    .sns-card.x       { --accent: #fff;    --glow: rgba(255,255,255,.15); }

    /* Icon wrapper with animated ring */
    .sns-icon-wrap {
      position: relative; width: 80px; height: 80px;
      display: flex; align-items: center; justify-content: center;
    }
    .sns-icon-ring {
      position: absolute; inset: -8px;
      border: 2px solid transparent;
      border-top-color: var(--accent);
      border-radius: 50%; opacity: 0;
      transition: opacity .4s; animation: spinRing 2s linear infinite;
    }
    .sns-card:hover .sns-icon-ring { opacity: .6; }
    @keyframes spinRing { to { transform: rotate(360deg); } }

    .sns-icon {
      width: 70px; height: 70px;
      display: flex; align-items: center; justify-content: center;
      background: var(--purple-dark);
      border: 2px solid var(--purple);
      border-radius: 50%;
      position: relative; z-index: 2;
      transition: background .4s, transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
    }
    .sns-card:hover .sns-icon {
      background: var(--accent);
      transform: scale(1.2) rotate(360deg);
      box-shadow: 0 0 40px var(--glow), inset 0 0 20px rgba(0,0,0,.4);
    }
    .sns-icon svg { width: 34px; height: 34px; fill: var(--purple-light); transition: fill .4s; }
    .sns-card:hover .sns-icon svg { fill: #000; }

    .sns-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px; letter-spacing: 3px; color: var(--white);
      transition: color .4s, transform .4s;
    }
    .sns-card:hover .sns-name { color: var(--accent); transform: scale(1.08); }
    .sns-handle {
      font-family: 'Space Mono', monospace; font-size: 11px;
      letter-spacing: 1px; color: var(--text-dim);
      transition: color .4s;
    }
    .sns-card:hover .sns-handle { color: var(--accent); }

    /* Floating ✌️ on hover */
    .sns-peace {
      position: absolute; top: 16px; right: 16px; font-size: 24px;
      opacity: 0; transform: translateY(10px) rotate(-30deg);
      transition: opacity .4s, transform .6s cubic-bezier(.34,1.56,.64,1);
    }
    .sns-card:hover .sns-peace {
      opacity: .8; transform: translateY(0) rotate(0deg);
    }

    /* Corner arrow */
    .sns-arrow {
      position: absolute; bottom: 18px; right: 20px;
      font-size: 20px; color: rgba(107,33,212,.3);
      transition: color .4s, transform .4s;
    }
    .sns-card:hover .sns-arrow {
      color: var(--accent); transform: translate(4px,-4px);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       PEACE PHILOSOPHY SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .philosophy-section {
      padding: 100px 40px; max-width: 1000px; margin: 0 auto;
      background: linear-gradient(180deg, transparent, rgba(107,33,212,.05), transparent);
    }
    .philo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    .philo-item {
      padding: 40px 32px;
      background: rgba(255,255,255,.02);
      border-left: 3px solid var(--purple);
      position: relative; overflow: hidden;
      transition: background .4s, transform .4s;
    }
    .philo-item::before {
      content: '✌️'; position: absolute;
      top: 16px; right: 20px; font-size: 80px; opacity: .04;
      transition: opacity .4s, transform .4s;
    }
    .philo-item:hover { background: rgba(107,33,212,.08); transform: translateX(8px); }
    .philo-item:hover::before { opacity: .12; transform: rotate(15deg) scale(1.1); }
    .philo-num {
      font-family: 'Bebas Neue', sans-serif; font-size: 18px;
      color: var(--purple-light); margin-bottom: 12px;
      letter-spacing: 2px;
    }
    .philo-title {
      font-family: 'Bebas Neue', sans-serif; font-size: 32px;
      color: var(--white); margin-bottom: 12px;
    }
    .philo-desc {
      font-size: 13px; line-height: 1.85; color: var(--text-dim);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       PEACE TIMELINE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .timeline-section {
      padding: 100px 40px; max-width: 800px; margin: 0 auto;
    }
    .timeline-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 86px);
      text-align: center; color: var(--white);
      margin-bottom: 80px;
    }
    .timeline-title span { color: var(--purple-light); }
    .timeline {
      position: relative;
      padding-left: 60px;
      border-left: 2px solid rgba(107,33,212,.25);
    }
    .timeline-item {
      position: relative; margin-bottom: 60px;
      padding: 28px; background: rgba(255,255,255,.025);
      border: 1px solid rgba(107,33,212,.2);
      transition: background .4s, border-color .4s, transform .4s;
    }
    .timeline-item:hover {
      background: rgba(107,33,212,.06);
      border-color: var(--purple-light);
      transform: translateX(8px);
    }
    .timeline-item::before {
      content: '✌️'; position: absolute;
      left: -80px; top: 28px;
      width: 40px; height: 40px;
      background: var(--purple-dark);
      border: 3px solid var(--purple);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      transition: background .4s, transform .4s;
    }
    .timeline-item:hover::before {
      background: var(--purple);
      transform: scale(1.2) rotate(360deg);
    }
    .timeline-year {
      font-family: 'Space Mono', monospace;
      font-size: 12px; letter-spacing: 3px;
      color: var(--purple-light); margin-bottom: 10px;
      text-transform: uppercase;
    }
    .timeline-event {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px; color: var(--white);
      margin-bottom: 8px; line-height: 1.1;
    }
    .timeline-desc {
      font-size: 13px; line-height: 1.8;
      color: var(--text-dim);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━
       RARE WHITE BOW TIE SECTION
    ━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .rare-section {
      padding: 120px 40px; position: relative; overflow: hidden;
      background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.03), transparent 70%);
    }
    .rare-glow {
      position: absolute; width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%);
      filter: blur(80px); pointer-events: none;
      animation: rareGlowPulse 4s ease-in-out infinite;
    }
    .rare-glow-1 { top: 10%; left: 10%; animation-delay: 0s; }
    .rare-glow-2 { bottom: 20%; right: 15%; animation-delay: -2s; }
    @keyframes rareGlowPulse {
      0%,100% { opacity: .3; transform: scale(1); }
      50% { opacity: .6; transform: scale(1.2); }
    }

    .rare-content {
      max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
    }
    .rare-badge {
      display: inline-block; padding: 8px 20px; margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
      border: 1px solid rgba(255,255,255,.2);
      font-family: 'Space Mono', monospace; font-size: 10px;
      letter-spacing: 4px; text-transform: uppercase;
      color: rgba(255,255,255,.7);
      animation: badgeShimmer 3s ease-in-out infinite;
    }
    @keyframes badgeShimmer {
      0%,100% { box-shadow: 0 0 0 rgba(255,255,255,.3); }
      50% { box-shadow: 0 0 30px rgba(255,255,255,.5); }
    }

    .rare-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(50px, 9vw, 100px); line-height: .95;
      color: var(--white); margin-bottom: 20px;
      text-shadow: 0 0 60px rgba(255,255,255,.4);
    }
    .rare-title .shimmer {
      background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.6) 50%, #fff 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerText 3s linear infinite;
    }
    @keyframes shimmerText {
      to { background-position: -200% 0; }
    }

    .rare-subtitle {
      font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.5);
      max-width: 600px; margin: 0 auto 60px;
    }

    /* Image showcase */
    .rare-showcase {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      margin-bottom: 60px;
    }
    .rare-card {
      position: relative; padding: 40px 24px;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.1);
      overflow: hidden;
      transition: transform .5s cubic-bezier(.34,1.56,.64,1), border-color .4s, box-shadow .4s;
    }
    .rare-card::before {
      content: ''; position: absolute; inset: -50%;
      background: conic-gradient(from 0deg, transparent, rgba(255,255,255,.3), transparent);
      animation: rareCardSpin 4s linear infinite; opacity: 0;
      transition: opacity .4s;
    }
    @keyframes rareCardSpin { to { transform: rotate(360deg); } }
    .rare-card:hover::before { opacity: .5; }
    .rare-card::after {
      content: ''; position: absolute; inset: 2px;
      background: rgba(6,6,8,.95); z-index: 0;
    }
    .rare-card:hover {
      transform: translateY(-12px) scale(1.03);
      border-color: rgba(255,255,255,.4);
      box-shadow: 0 30px 80px rgba(255,255,255,.15);
    }
    .rare-card > * { position: relative; z-index: 1; }

    .rare-img-wrap {
      width: 180px; height: 180px; margin: 0 auto 24px;
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .rare-img-wrap img {
      width: 160px; height: auto;
      filter: drop-shadow(0 10px 40px rgba(255,255,255,.3));
      animation: rareFloat 3s ease-in-out infinite;
    }
    .rare-card:nth-child(2) .rare-img-wrap img { animation-delay: -.8s; }
    .rare-card:nth-child(3) .rare-img-wrap img { animation-delay: -1.6s; }
    @keyframes rareFloat {
      0%,100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-16px) rotate(2deg); }
    }

    /* Orbiting stars */
    .rare-stars {
      position: absolute; inset: -20px;
      border: 1px dashed rgba(255,255,255,.2);
      border-radius: 50%;
      animation: rareOrbit 8s linear infinite;
    }
    .rare-stars::before,
    .rare-stars::after {
      content: '✨'; position: absolute; font-size: 18px;
    }
    .rare-stars::before { top: 0; left: 50%; transform: translateX(-50%); }
    .rare-stars::after { bottom: 0; left: 50%; transform: translateX(-50%); }
    @keyframes rareOrbit { to { transform: rotate(360deg); } }

    .rare-label {
      font-family: 'Space Mono', monospace; font-size: 11px;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-bottom: 8px;
    }
    .rare-name {
      font-family: 'Bebas Neue', sans-serif; font-size: 28px;
      color: #fff; margin-bottom: 12px;
    }
    .rare-desc {
      font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.35);
    }

    /* Probability counter */
    .rare-probability {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 20px 32px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 4px;
    }
    .rare-prob-label {
      font-family: 'Space Mono', monospace; font-size: 11px;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }
    .rare-prob-value {
      font-family: 'Bebas Neue', sans-serif; font-size: 36px;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,.5));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Link to relationship page */
    .rare-link {
      display: inline-block; margin-top: 80px;
      padding: 18px 40px; font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; letter-spacing: 3px;
      background: rgba(255,255,255,.08);
      border: 2px solid rgba(255,255,255,.2);
      color: #fff; text-decoration: none;
      position: relative; overflow: hidden;
      transition: transform .4s, box-shadow .4s;
    }
    .rare-link::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
      transform: translateX(-100%);
      transition: transform .6s;
    }
    .rare-link:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(255,255,255,.2); }
    .rare-link:hover::before { transform: translateX(100%); }
    .rare-link-arrow {
      display: inline-block; margin-left: 8px;
      transition: transform .4s;
    }
    .rare-link:hover .rare-link-arrow { transform: translateX(6px); }

    /* Rare divider */
    .rare-divider {
      width: 80px; height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
      margin: 80px auto 60px;
    }

    /* Rare details section */
    .rare-details {
      max-width: 800px; margin: 0 auto;
    }
    .rare-details-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 6vw, 64px);
      text-align: center; margin-bottom: 32px;
      color: var(--white);
    }
    .rare-details-title span {
      background: linear-gradient(135deg, #fff, rgba(255,255,255,.5));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .rare-details-text {
      font-size: 14px; line-height: 2;
      color: rgba(255,255,255,.6);
      margin-bottom: 20px; text-align: center;
    }
    .rare-details-text strong {
      color: rgba(255,255,255,.9);
    }

    /* Rare stats grid */
    .rare-stats-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 20px; margin: 60px 0;
    }
    .rare-stat {
      padding: 32px 20px;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.1);
      text-align: center;
      transition: background .3s, border-color .3s;
    }
    .rare-stat:hover {
      background: rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.3);
    }
    .rare-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 6vw, 56px);
      background: linear-gradient(135deg, #fff, rgba(255,255,255,.6));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
    }
    .rare-stat-label {
      font-family: 'Space Mono', monospace;
      font-size: 10px; letter-spacing: 2px;
      color: rgba(255,255,255,.4);
      text-transform: uppercase;
    }

    /* Rare meaning */
    .rare-meaning {
      padding: 40px 36px;
      background: rgba(255,255,255,.03);
      border-left: 3px solid rgba(255,255,255,.3);
      margin: 60px 0;
    }
    .rare-meaning h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px; color: var(--white);
      margin-bottom: 24px; text-align: center;
    }
    .rare-meaning ul {
      list-style: none;
    }
    .rare-meaning li {
      font-size: 14px; line-height: 2.2;
      color: rgba(255,255,255,.65);
      padding-left: 0;
    }
    .rare-meaning li strong {
      color: rgba(255,255,255,.9);
    }

    /* Discover button */
    .rare-discover-btn {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 20px 44px;
      margin-top: 40px;
      background: linear-gradient(135deg, rgba(255,51,102,.15), rgba(255,51,102,.05));
      border: 2px solid rgba(255,51,102,.4);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; letter-spacing: 3px;
      color: #fff;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
    }
    .rare-discover-btn::before {
      content: ''; position: absolute; inset: -50%;
      background: conic-gradient(from 0deg, transparent, rgba(255,51,102,.5), transparent);
      animation: btnRotate 3s linear infinite;
      opacity: 0; transition: opacity .4s;
    }
    @keyframes btnRotate { to { transform: rotate(360deg); } }
    .rare-discover-btn:hover::before { opacity: .6; }
    .rare-discover-btn::after {
      content: ''; position: absolute; inset: 2px;
      background: rgba(6,6,8,.8); z-index: 0;
    }
    .rare-discover-btn > * { position: relative; z-index: 1; }
    .rare-discover-btn:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 20px 60px rgba(255,51,102,.4);
      border-color: rgba(255,51,102,.8);
    }
    .rare-btn-arrow {
      font-size: 24px;
      transition: transform .4s;
    }
    .rare-discover-btn:hover .rare-btn-arrow {
      transform: translateX(6px);
    }

    /* ── タブレット ── */
    @media (max-width: 1100px) {
      #explore .sns-grid { grid-template-columns: repeat(4,1fr) !important; }
    }

    /* ── スマホ共通（〜760px） ── */
    @media (max-width: 760px) {
      .section            { padding: 80px 20px; }
      .manifesto          { padding: 80px 20px; }
      .glitch-wrap        { padding: 60px 20px; }
      .philosophy-section { padding: 80px 20px; }
      .timeline-section   { padding: 80px 20px; }
      .rare-section       { padding: 60px 20px 80px; }

      /* About */
      .about { gap: 40px; }
      .about-img img { max-width: 180px; }

      /* Stats: 4列キープ */
      .stat { padding: 36px 12px; }

      /* Vibes cards: 3列キープ */
      .cards { gap: 12px; padding: 0 20px 80px; }
      .card  { padding: 24px 16px; }
      .card-icon { font-size: 36px; }

      /* FIND ya HERE: 1列・大きく */
      .sns-section { padding: 60px 20px 80px; }
      .sns-grid    { grid-template-columns: 1fr; gap: 16px; }
      .sns-card    { flex-direction: row; padding: 28px 32px; gap: 24px; justify-content: flex-start; }
      .sns-icon-wrap { width: 72px; height: 72px; flex-shrink: 0; }
      .sns-icon    { width: 64px; height: 64px; }
      .sns-icon svg { width: 30px; height: 30px; }
      .sns-name    { font-size: 32px; }
      .sns-handle  { font-size: 12px; }
      .sns-arrow   { bottom: auto; top: 50%; right: 24px; transform: translateY(-50%); }

      /* Philosophy: 2列キープ */
      .philo-grid { gap: 16px; }
      .philo-item { padding: 28px 20px; }

      /* MORE ya WORLD: 3列 */
      #explore .sns-grid { grid-template-columns: repeat(3,1fr) !important; gap: 10px; }
      #explore .sns-card { flex-direction: column; padding: 20px 8px; gap: 8px; justify-content: center; }
      #explore .sns-card .sns-name   { font-size: 13px; letter-spacing: 1px; }
      #explore .sns-card .sns-handle { font-size: 9px; }
      #explore .sns-card .sns-arrow  { bottom: 8px; right: 10px; top: auto; transform: none; }

      /* WHITE BOW TIE: 1列・縦並び */
      .rare-showcase { grid-template-columns: 1fr; gap: 20px; }
      .rare-stats-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
    }

    /* ── スマホ標準（〜480px） ── */
    @media (max-width: 480px) {
      /* About: 縦積み */
      .about { grid-template-columns: 1fr; gap: 28px; text-align: center; }
      .about-img { text-align: center; }
      .about-img img { max-width: 200px; }

      /* Stats: 4列・コンパクト */
      .stat { padding: 28px 6px; }
      .stat-label { font-size: 8px; letter-spacing: 1px; }

      /* Vibes cards: 3列コンパクト */
      .cards   { gap: 8px; padding: 0 12px 60px; }
      .card    { padding: 16px 10px; }
      .card-icon { font-size: 28px; margin-bottom: 10px; }
      .card h3 { font-size: 20px; }
      .card p  { font-size: 11px; line-height: 1.6; }

      /* FIND ya HERE: 1列・コンパクト */
      .sns-section { padding: 50px 16px 60px; }
      .sns-card    { padding: 22px 20px; gap: 16px; }
      .sns-icon-wrap { width: 60px; height: 60px; }
      .sns-icon    { width: 54px; height: 54px; }
      .sns-icon svg { width: 26px; height: 26px; }
      .sns-name    { font-size: 28px; }
      .sns-handle  { font-size: 11px; }

      /* Philosophy: 2列キープ */
      .philo-item { padding: 20px 14px; }
      .philo-title { font-size: 24px; }
      .philo-desc  { font-size: 11px; }

      /* THE ICON: オリジナルのデザインを維持（変更なし） */

      /* MORE ya WORLD: 3列コンパクト */
      #explore .sns-grid { grid-template-columns: repeat(3,1fr) !important; gap: 8px; }
      #explore .sns-card { padding: 14px 4px; gap: 6px; }
      #explore .sns-card .sns-icon      { width: 32px !important; height: 32px !important; font-size: 18px !important; }
      #explore .sns-card .sns-icon-ring { display: none; }
      #explore .sns-card .sns-name      { font-size: 10px; letter-spacing: 0; }
      #explore .sns-card .sns-handle    { font-size: 8px; }
      #explore .sns-card .sns-peace     { display: none; }
      #explore .sns-card .sns-arrow     { bottom: 4px; right: 6px; font-size: 12px; top: auto; transform: none; }

      /* WHITE BOW TIE: 1列 */
      .rare-showcase { grid-template-columns: 1fr; }
      .rare-card { padding: 32px 20px; }
      .rare-stats-grid { gap: 8px; }
      .rare-stat { padding: 20px 10px; }
    }

    /* タッチデバイス: ホバーアニメーション無効 */
    @media (hover: none) {
      .sns-card:hover { transform: none; box-shadow: none; }
      .sns-card:hover::before { opacity: 0; }
    }
