:root {
    --mint:       #8BC4A8;
    --mint-light: #B8DFCb;
    --mint-deep:  #4A8F6F;
    --peach:      #F0B89A;
    --peach-light:#FAD9C4;
    --sand:       #F5E4CC;
    --cream:      #FBF5EC;
    --orange:     #E8813A;
    --orange-warm:#F5C842;
    --teal-dark:  #2A5C47;
    --coral:      #E07060;
    --purple:     #9B7DC8;
    --ink:        #1D3B2F;
    --white:      #FFFFFF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── CURSOR ── */
  /* body { cursor: none; }
  #cursor {
    position: fixed;
    width: 54px; height: 60px;
    pointer-events: none; z-index: 9999;
    transform: translate(-14px, -12px);
    transition: transform .13s cubic-bezier(.34,1.56,.64,1);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.22));
  }
  #cursor.hovering {
    transform: translate(-14px, -12px) scale(1.35) rotate(-8deg);
  }

  .cursor-img {
    width: 100%; height: 100%;
    display: block;
  } */

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5vw;
    background: rgba(251,245,236,.88);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--mint-light);
  }
  .nav-logo {
    height: 42px;
    color: #f8c74f;
    text-transform: uppercase;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
  }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-weight: 700; font-size: .9rem; color: var(--teal-dark);
    text-decoration: none; letter-spacing: .04em;
    transition: color .2s;
    cursor: none;
  }
  .nav-links a:hover { color: var(--orange); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 5vw 60px;
    background: linear-gradient(180deg, #c9ead8 0%, #e8d4bb 45%, #f0b89a 100%);
  }

  /* Ocean layers */
  .ocean-layer {
    position: absolute; bottom: 0; left: 0; right: 0;
    pointer-events: none;
  }
  .ocean-layer svg { display: block; width: 100%; }

  /* Floating bubbles */
  .bubbles { position: absolute; inset: 0; pointer-events: none; }
  .bubble {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: 1.5px solid rgba(255,255,255,.5);
    animation: floatUp linear infinite;
  }
  @keyframes floatUp {
    0%   { transform: translateY(100vh) scale(1); opacity: 0; }
    10%  { opacity: .8; }
    90%  { opacity: .5; }
    100% { transform: translateY(-20vh) scale(.7) translateX(20px); opacity: 0; }
  }

  /* Fish */
  .fish-group { position: absolute; inset: 0; pointer-events: none; }
  .fish {
    position: absolute;
    animation: swimAcross linear infinite;
    opacity: .55;
  }
  @keyframes swimAcross {
    from {
      transform: translateX(calc(100vw + 120px));
    }
    to {
      transform: translateX(-120px);
    }
  }

  /* Hero content */
  .hero-content {
    text-align: center;
  }

  .title-images {
    width: fit-content;
    position: relative; 
    z-index: 5;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    text-align: center;
    margin: 0 auto 16px;
  }

  .angry {
    height: 100px;
  }

  .octo {
    height: 160px;
  }

  .hero-title {
    display: none;
  }

  .wow_badge {
    position: absolute; 
    bottom: -10px; 
    right: -50px;
    width: 150px; 
    height: 150px;
    transform: rotate(-2deg);
    animation: popIn .8s cubic-bezier(.34,1.56,.64,1) both;
    animation-delay: .35s;
  }

  /* Octo SVG character */
  .octo-hero {
    width: clamp(180px, 30vw, 500px);
    animation: popIn .9s cubic-bezier(.34,1.56,.64,1) both, bobbing 3s ease-in-out infinite;
    animation-delay: .45s, 1.4s;
    position: relative; z-index: 4;
    margin-top: -100px;
  }
  @keyframes bobbing {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1deg); }
  }

  .hero-desc {
    font-size: clamp(.95rem, 2vw, 1.15rem); 
    font-weight: 600;
    color: var(--teal-dark); 
    max-width: 740px;
    margin: 8px 0 32px;
    animation: popIn .9s cubic-bezier(.34,1.56,.64,1) both;
    animation-delay: .55s;
  }

  .hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: popIn 1s cubic-bezier(.34,1.56,.64,1) both;
    animation-delay: .7s;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 999px;
    font-family: 'Fredoka One', cursive; font-size: 1.1rem;
    letter-spacing: .04em; text-decoration: none;
    border: 3px solid transparent; cursor: none;
    transition: transform .2s, box-shadow .2s;
  }
  .btn:hover { transform: translateY(-3px) scale(1.04); }
  .btn-primary {
    background: var(--teal-dark); color: var(--white);
    box-shadow: 0 6px 0 #1a3d2a;
  }
  .btn-primary:hover { box-shadow: 0 9px 0 #1a3d2a; }
  .btn-secondary {
    background: var(--white); color: var(--teal-dark);
    border-color: var(--mint);
    box-shadow: 0 4px 0 var(--mint);
  }
  .btn-secondary:hover { box-shadow: 0 7px 0 var(--mint); }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 60px; left: 1%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--teal-dark); opacity: .7;
    animation: popIn 1s ease both; animation-delay: 1.2s;
  }
  .scroll-arrow { animation: bounceY 1.4s ease-in-out infinite; }
  @keyframes bounceY {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
  }

  @keyframes popIn {
    from { opacity: 0; transform: scale(.8) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  /* ── SECTION COMMON ── */
  section { padding: 90px 5vw; }
  .section-label {
    display: inline-block;
    font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
    color: var(--mint-deep); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--teal-dark); line-height: 1.05;
  }
  .section-title span { color: var(--orange); }
  .section-intro {
    font-size: 1.05rem; font-weight: 600; color: #4a6355;
    max-width: 560px; margin-top: 12px;
  }

  /* ── RARITY SECTION ── */
  #rarity {
    background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 100%);
    position: relative; overflow: hidden;
  }
  #rarity::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238BC4A8' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .rarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; margin-top: 48px;
  }

  .rarity-card {
    border-radius: 24px; padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    cursor: none;
  }
  .rarity-card:hover { transform: translateY(-8px) rotate(.5deg); }

  .rarity-card.common {
    background: linear-gradient(135deg, #d4eedd 0%, #eef7f1 100%);
    border: 2.5px solid #a8d8bc;
    box-shadow: 0 8px 0 #a8d8bc;
  }
  .rarity-card.common:hover { box-shadow: 0 14px 0 #a8d8bc; }

  .rarity-card.rare {
    background: linear-gradient(135deg, #d8d0f0 0%, #f0edfb 100%);
    border: 2.5px solid #b8aae0;
    box-shadow: 0 8px 0 #b8aae0;
  }
  .rarity-card.rare:hover { box-shadow: 0 14px 0 #b8aae0; }

  .rarity-card.legendary {
    background: linear-gradient(135deg, #fde8b0 0%, #fff8e8 100%);
    border: 2.5px solid #f5c842;
    box-shadow: 0 8px 0 #d4a820;
  }
  .rarity-card.legendary:hover { box-shadow: 0 14px 0 #d4a820; }

  .rarity-tier-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Fredoka One', cursive; font-size: 1rem;
    border-radius: 999px; padding: 4px 14px;
    margin-bottom: 20px;
  }
  .common  .rarity-tier-badge { background: var(--mint-deep); color: #fff; }
  .rare    .rarity-tier-badge { background: var(--purple);    color: #fff; }
  .legendary .rarity-tier-badge { background: var(--orange);  color: #fff; }

  .rarity-count {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem; line-height: 1;
    color: var(--teal-dark);
  }
  .rarity-count sub { font-size: 1.1rem; font-family: 'Nunito'; font-weight: 800; }

  .rarity-label {
    font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    color: #4a6355; margin: 4px 0 20px;
  }

  /* Octo dots */
  .octo-dots { display: flex; flex-wrap: wrap; gap: 10px; }
  .octo-dot {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    border: 2px solid rgba(0,0,0,.08);
    transition: transform .2s;
    position: relative;
  }
  .octo-dot:hover { transform: scale(2) rotate(-5deg); z-index: 10; }
  .octo-img {
    width: 100%; height: 100%; object-fit: contain;
  }

  .rarity-desc {
    margin-top: 16px; font-size: .9rem; font-weight: 600;
    color: #4a6355; line-height: 1.5;
  }

  /* ── ABOUT SECTION ── */
  #about {
    background: var(--teal-dark);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
  }
  @media (max-width: 768px) {
    #about { grid-template-columns: 1fr; }
    nav { display: flex; flex-direction: column; gap: 12px; }
  }
  #about .section-label { color: var(--mint-light); }
  #about .section-title { color: var(--white); }
  #about .section-title span { color: var(--orange-warm); }
  #about .section-intro { color: rgba(255,255,255,.75); max-width: 100%; }

  .features-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .features-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.9);
  }
  .feat-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }

  .about-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
  }
  .about-blob {
    width: 280px; height: 280px; border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    background: rgba(255,255,255,.07);
    position: absolute;
    animation: morphBlob 6s ease-in-out infinite;
  }
  @keyframes morphBlob {
    0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    50%      { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
  }
  .about-octo { width: 200px; position: relative; z-index: 2; animation: bobbing 3.5s ease-in-out infinite; }
  .armenia-badge {
    position: absolute; bottom: -10px; right: 0;
    background: var(--white); color: var(--teal-dark);
    border-radius: 16px; padding: 10px 16px;
    font-size: .85rem; font-weight: 800;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    white-space: nowrap;
  }

  /* ── HOW IT WORKS ── */
  #how {
    background: var(--cream);
    text-align: center;
  }
  #how .section-title, #how .section-label { text-align: center; }
  #how .section-intro { margin: 12px auto 0; text-align: center; }

  .steps-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0; margin-top: 60px;
    position: relative;
  }
  .steps-row::before {
    content: '';
    position: absolute; top: 52px; left: 50%; transform: translateX(-50%);
    width: 60%; height: 3px;
    background: repeating-linear-gradient(90deg, var(--mint) 0, var(--mint) 16px, transparent 16px, transparent 24px);
  }
  @media (max-width: 768px) { .steps-row::before { display: none; } }

  .step {
    width: 180px; display: flex; flex-direction: column; align-items: center;
    padding: 0 12px; gap: 14px;
  }
  .step-circle {
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--mint);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 6px 0 var(--mint-light);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    position: relative; z-index: 1;
  }
  .step:hover .step-circle { transform: scale(1.15) rotate(-6deg); }
  .step-num {
    position: absolute; top: -6px; right: -6px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--orange); color: white;
    font-family: 'Fredoka One', cursive; font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
  }
  .step h4 {
    font-family: 'Fredoka One', cursive; font-size: 1.05rem;
    color: var(--teal-dark); text-align: center;
  }
  .step p { font-size: .82rem; font-weight: 600; color: #4a6355; text-align: center; line-height: 1.4; }

  /* ── COLLECT TICKER ── */
  .ticker-wrap {
    background: var(--teal-dark);
    padding: 16px 0; overflow: hidden;
    border-top: 3px solid var(--mint-deep);
    border-bottom: 3px solid var(--mint-deep);
  }
  .ticker-track {
    display: flex; gap: 0;
    animation: ticker 18s linear infinite;
    width: max-content;
  }
  .ticker-item {
    padding: 0 32px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem; color: var(--orange-warm);
    white-space: nowrap;
    display: flex; align-items: center; gap: 12px;
  }
  .ticker-item::after { content: '•'; color: var(--mint-light); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── COMING SOON ── */
  #shop {
    background: url("/assets/Angry_Octo_Background.svg") center/cover no-repeat;
    text-align: center; position: relative; overflow: hidden;
  }
  #shop .section-intro { margin: 12px auto 0; text-align: center; }

  .coming-soon-card {
    display: inline-block;
    background: var(--white);
    border-radius: 32px; padding: 56px 64px;
    border: 3px solid var(--peach);
    box-shadow: 0 12px 0 var(--peach);
    max-width: 560px; width: 100%;
    position: relative; z-index: 2;
    margin-top: 40px;
  }
  .cs-emoji { font-size: 4rem; display: block; margin-bottom: 16px; animation: bobbing 2s ease-in-out infinite; }
  .cs-icon {
    width: 160px; height: 160px;
  }
  .cs-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--teal-dark); margin-bottom: 10px;
  }
  .cs-title span { color: var(--orange); }
  .cs-text { font-size: 1rem; font-weight: 600; color: #5a7060; line-height: 1.6; }

  .notify-form {
    display: flex; gap: 12px; margin-top: 28px;
    flex-wrap: wrap; justify-content: center;
  }
  .notify-input {
    flex: 1; min-width: 200px;
    padding: 14px 22px; border-radius: 999px;
    border: 2.5px solid var(--mint);
    font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 600;
    background: var(--sand); outline: none; cursor: none;
    transition: border-color .2s;
  }
  .notify-input:focus { border-color: var(--teal-dark); }
  .notify-input::placeholder { color: #9ab3a0; }
  .btn-notify {
    padding: 14px 28px; border-radius: 999px;
    background: var(--orange); color: var(--white);
    font-family: 'Fredoka One', cursive; font-size: 1rem;
    border: none; cursor: none;
    box-shadow: 0 5px 0 #b85e20;
    transition: transform .2s, box-shadow .2s;
  }
  .btn-notify:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #b85e20; }
  .notify-note { font-size: .78rem; font-weight: 700; color: #9ab3a0; margin-top: 10px; letter-spacing: .04em; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,.65);
    padding: 60px 5vw 40px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
  @media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }

  .footer-brand .nav-logo { font-size: 1.8rem; display: block; margin-bottom: 10px; }
  .footer-brand p { font-size: .9rem; line-height: 1.6; max-width: 240px; }
  .footer-brand .armenia { margin-top: 16px; font-weight: 800; color: rgba(255,255,255,.9); font-size: .85rem; }

  footer h5 {
    font-family: 'Fredoka One', cursive; font-size: 1.1rem;
    color: var(--white); margin-bottom: 16px;
  }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  footer ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; font-weight: 600; transition: color .2s; cursor: none; }
  footer ul a:hover { color: var(--mint-light); }

  .social-row { display: flex; gap: 12px; margin-top: 8px; }
  .social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; text-decoration: none; cursor: none;
    transition: background .2s, transform .2s;
  }
  .social-btn:hover { background: var(--mint-deep); transform: scale(1.15); }

  .footer-bottom {
    margin-top: 48px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  }
  .footer-bottom span { color: rgba(255,255,255,.35); }
  .footer-bottom .heart { color: var(--coral); }
  .footer-link { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
  .footer-link:hover { color: var(--mint-light); }
  .social-icon {
    width: 25px; height: 25px;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.34,1.3,.64,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* ── AGE BADGE ── */
  .age-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--orange); color: white;
    font-family: 'Fredoka One', cursive; font-size: .9rem;
    border: 3px solid white;
    position: absolute; top: 16px; right: 16px;
    box-shadow: 0 3px 8px rgba(0,0,0,.2);
  }

  /* responsive */
  @media (max-width: 600px) {
    .steps-row { flex-direction: column; align-items: center; }
    .coming-soon-card { padding: 36px 28px; }
    nav { padding: 14px 4vw; }
    .nav-links { gap: 20px; }
  }
