

/* ---------- Dedication ---------- */
.dedication{ margin-top:26px; text-align:center; }
.dedication p{
  font-family:var(--serif); font-style:italic;
  font-size:.92rem; line-height:1.6; color:var(--navy); opacity:.85;
  margin:0 0 12px;
}
.dedication-name{
  font-style:normal !important; opacity:1 !important;
  font-family:'Dancing Script', cursive; font-size:1.5rem;
  color:var(--terracotta); margin:8px 0 2px !important;
}
.dedication-sub{
  font-size:.82rem !important; opacity:.7 !important; margin:0 !important;
}
/* ===========================================================
   BETWEEN US — brand palette (matched to moodboard)
   Warm cream / tan / terracotta / gold / sage / coffee
=========================================================== */
:root{
  --cream:        #FBF3E7;
  --cream-2:      #F3E4CC;
  --tan:          #D8B98C;
  --terracotta:   #C56A45;
  --gold:         #B98A3E;
  --sage:         #8C8A72;
  --coffee:       #3D2A1E;
  --charcoal:     #3D2A1E;
  --navy:         #5B4A38;
  --burgundy:     #C56A45;
  --eucalyptus:   #8C8A72;
  --white:        #FFFFFF;
  --shadow:       0 10px 30px rgba(61,42,30,0.14);
  --radius:       20px;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*{ box-sizing:border-box; }

html,body{
  margin:0; padding:0; height:100%;
  background:var(--cream);
  color:var(--charcoal);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
}

#app{
  max-width:480px;
  margin:0 auto;
  min-height:100vh;
  position:relative;
  background:linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 55%, var(--tan) 140%);
}

.hidden{ display:none !important; }

.screen{ display:none; min-height:100vh; padding:32px 24px 48px; animation:fadeIn .35s ease; }
.screen.active{ display:block; }

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

.logo-divider{
  text-align:center;
  color:var(--gold);
  font-size:.9rem;
  letter-spacing:2px;
  margin-bottom:6px;
  opacity:.8;
}
.logo{
  text-align:center;
  margin:0 0 4px;
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1;
}
.logo-top{
  font-family:var(--serif);
  font-weight:700;
  font-size:2.4rem;
  text-transform:uppercase;
  letter-spacing:3px;
  color:var(--coffee);
}
.logo-script{
  font-family:'Dancing Script', cursive;
  font-weight:700;
  font-size:2.8rem;
  color:var(--terracotta);
  margin-top:-6px;
}
.tagline{
  text-align:center;
  color:var(--navy);
  font-style:italic;
  font-family:var(--serif);
  font-size:1.15rem;
  margin:0 0 32px;
}

/* ---------- Immersive hero (setup + home) ---------- */
.screen-hero{
  padding:0 !important;
  background-image:url('hero.jpg');
  background-size:cover;
  background-position:center 20%;
  position:relative;
  overflow:hidden;
}
.hero-scrim{
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,
    rgba(251,243,231,0.15) 0%,
    rgba(251,243,231,0.02) 30%,
    rgba(61,42,30,0.10) 55%,
    rgba(61,42,30,0.55) 82%,
    rgba(61,42,30,0.82) 100%);
}

/* ---------- Setup (over hero) ---------- */
.setup-scroll{
  position:relative; z-index:2; min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  padding:calc(env(safe-area-inset-top,0px) + 40px) 22px 40px; overflow-y:auto;
}
.setup-card{
  width:100%; max-width:370px; text-align:center;
  background:rgba(251,243,231,0.86);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  border-radius:24px; padding:30px 24px 26px;
  box-shadow:0 20px 50px rgba(61,42,30,0.30);
}
.field{ text-align:left; margin-bottom:18px; }
.field label{ display:block; font-size:.85rem; color:var(--navy); margin-bottom:6px; font-weight:600; }
.field input[type=text]{
  width:100%; padding:12px 14px; border-radius:12px; border:1px solid #ddd0b8;
  background:var(--white); font-family:var(--sans); font-size:1rem; color:var(--charcoal);
}
.field input[type=range]{ width:100%; }

/* ---------- Buttons ---------- */
.btn{
  font-family:var(--sans); font-weight:700; font-size:1rem;
  border:none; border-radius:14px; padding:14px 20px; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
  width:100%;
}
.btn:active{ transform:scale(.97); }
.btn-primary{ background:var(--burgundy); color:var(--white); box-shadow:var(--shadow); }
.btn-secondary{ background:var(--white); color:var(--burgundy); border:1.5px solid var(--burgundy); }
.btn-large{ font-size:1.1rem; padding:18px 20px; }

.link-btn{ background:none; border:none; color:var(--burgundy); font-weight:700; cursor:pointer; font-family:var(--sans); }

/* ---------- Home (immersive hero) ---------- */
.hero-content{
  position:relative; z-index:2; min-height:100vh;
  display:flex; flex-direction:column; justify-content:space-between;
  padding:24px 22px 0;
}
.hero-head{ text-align:center; padding-top:calc(env(safe-area-inset-top, 0px) + 92px); position:relative; }
.hero-head .logo-top, .hero-head .logo-script{
  text-shadow:0 2px 18px rgba(251,243,231,0.95), 0 0 40px rgba(251,243,231,0.75);
}
.hero-head .settings-gear{
  position:absolute; top:calc(env(safe-area-inset-top, 0px) + 6px); right:4px;
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; cursor:pointer; color:var(--coffee);
  background:rgba(251,243,231,0.8); box-shadow:0 4px 12px rgba(61,42,30,0.25);
}
.hero-head .logo-divider{ color:var(--coffee); opacity:.85; }
.hero-head .logo-top{ color:var(--coffee); }
.hero-head .logo-script{ color:#8a4324; }
.greeting{
  font-family:var(--serif); font-size:1.25rem; color:var(--coffee);
  margin:8px 0 0; text-shadow:0 2px 16px rgba(251,243,231,0.95), 0 0 30px rgba(251,243,231,0.7);
}

.hero-actions{ display:flex; flex-direction:column; gap:14px; padding-bottom:14px; }
.play-together-btn{
  width:100%; border:none; cursor:pointer;
  background:rgba(251,243,231,0.94);
  color:var(--coffee); font-family:var(--serif); font-weight:700;
  font-size:1.35rem; letter-spacing:.5px;
  padding:18px 20px; border-radius:40px;
  box-shadow:0 12px 30px rgba(61,42,30,0.35);
  transition:transform .15s ease;
}
.play-together-btn:active{ transform:scale(.97); }

.checkin-strip{
  background:rgba(124,138,133,0.85); color:var(--white); border-radius:14px;
  padding:12px 16px; display:flex; justify-content:space-between; align-items:center;
  font-size:.88rem; backdrop-filter:blur(4px);
}
.checkin-strip .link-btn{ color:var(--white); text-decoration:underline; }

/* bottom nav */
.bottom-nav{
  display:flex; justify-content:space-around; align-items:center;
  background:rgba(61,42,30,0.55); backdrop-filter:blur(10px);
  border-radius:20px 20px 0 0; margin:0 -22px;
  padding:10px 8px calc(10px + env(safe-area-inset-bottom, 0px));
}
.bn-btn{
  background:none; border:none; cursor:pointer; color:var(--cream);
  display:flex; flex-direction:column; align-items:center; gap:3px;
  font-family:var(--sans); font-size:.72rem; font-weight:600; opacity:.92;
  flex:1; padding:4px 0;
}
.bn-btn:active{ transform:scale(.94); }
.bn-icon{ font-size:1.4rem; }

/* ---------- Subheader (inner screens) ---------- */
.subheader{ display:flex; align-items:center; gap:12px; margin-bottom:20px; position:relative; }
.subheader h2{ font-family:var(--serif); font-size:1.6rem; margin:0; color:var(--burgundy); flex:1; text-align:center; margin-right:32px;}
.back-btn{
  background:var(--white); border:none; width:40px; height:40px; border-radius:50%;
  font-size:1.2rem; cursor:pointer; box-shadow:var(--shadow); color:var(--navy);
}
.progress-label{ font-size:.8rem; color:var(--navy); opacity:.7; }

.scroll-area{ padding-bottom:24px; }
.section-lead{ font-family:var(--serif); font-size:1.15rem; color:var(--navy); margin:20px 0 12px; }

/* ---------- Play: mode grid ---------- */
.mode-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.mode-card{
  background:var(--white); border-radius:16px; padding:16px; box-shadow:var(--shadow);
  cursor:pointer; text-align:left; border:2px solid transparent;
}
.mode-card:active{ transform:scale(.97); }
.mode-card h3{ font-family:var(--serif); font-size:1.1rem; margin:0 0 4px; color:var(--charcoal); }
.mode-card p{ font-size:.78rem; color:var(--navy); opacity:.8; margin:0; }
.mode-card.selected{ border-color:var(--gold); }

.custom-panel{ margin-top:20px; background:var(--white); border-radius:16px; padding:18px; box-shadow:var(--shadow); }
.suit-toggle-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:16px; }
.suit-toggle{
  display:flex; align-items:center; gap:8px; padding:10px; border-radius:10px;
  background:var(--cream-2); cursor:pointer; font-size:.9rem;
}
.suit-toggle input{ transform:scale(1.2); }

/* ---------- Card table ---------- */
.table-wrap{ display:flex; flex-direction:column; align-items:center; }
.card-stage{ width:100%; display:flex; justify-content:center; margin:20px 0 28px; perspective:1200px; }
.playing-card{
  width:280px; min-height:360px; border-radius:22px;
  box-shadow:0 20px 40px rgba(43,38,34,.2);
  cursor:pointer;
}
.card-face{
  width:100%; height:100%; min-height:430px; border-radius:22px;
  background:linear-gradient(180deg,#fdf8ef 0%,#f7ecd9 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:26px 22px; text-align:center; gap:12px;
  border:1px solid var(--gold);
  box-shadow:inset 0 0 0 6px rgba(251,243,231,0.9), inset 0 0 0 7px rgba(185,138,62,0.55);
}
.card-suit-head{ display:flex; flex-direction:column; align-items:center; gap:0; }
.card-suit-badge{ font-size:1.9rem; line-height:1; }
.card-suit-name{ font-family:var(--serif); font-weight:700; font-size:1.9rem; color:var(--coffee); letter-spacing:1px; line-height:1.1; }
.card-suit-meaning{ font-family:'Dancing Script', cursive; font-weight:700; font-size:1.6rem; color:var(--terracotta); margin-top:-4px; }
.card-flourish{ color:var(--gold); font-size:.85rem; letter-spacing:2px; opacity:.85; }
.card-flourish-sun{ font-size:1.1rem; }
.card-question{ font-family:var(--serif); font-size:1.5rem; line-height:1.4; color:var(--coffee); margin:0; font-weight:600; }
.card-guide{ font-size:.72rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--navy); opacity:.65; margin:0; line-height:1.5; }
.tap-hint{ font-size:.7rem; letter-spacing:1px; text-transform:uppercase; color:var(--navy); opacity:.45; }
/* per-suit accent colour on the badge */
.card-front.suit-hearts .card-suit-badge{ color:var(--burgundy); }
.card-front.suit-spades .card-suit-badge{ color:var(--navy); }
.card-front.suit-diamonds .card-suit-badge{ color:var(--gold); }
.card-front.suit-clubs .card-suit-badge{ color:var(--eucalyptus); }
.card-front.suit-joker .card-suit-badge{ color:var(--terracotta); }

.draw-cta-wrap{ width:100%; }
.card-actions{ width:100%; display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:10px; }
.icon-action{
  background:var(--white); border:none; border-radius:14px; padding:10px 14px;
  display:flex; flex-direction:column; align-items:center; gap:4px; box-shadow:var(--shadow);
  cursor:pointer; font-size:1.2rem; min-width:64px;
}
.icon-action small{ font-size:.65rem; color:var(--navy); }
.card-actions .btn-secondary{ width:100%; margin-top:8px; }

/* suit colour accents */
.suit-hearts{ color:var(--burgundy); }
.suit-spades{ color:var(--navy); }
.suit-diamonds{ color:var(--gold); }
.suit-clubs{ color:var(--eucalyptus); }
.suit-joker{ color:var(--charcoal); }

/* ---------- End screen ---------- */
.end-wrap{ text-align:center; }
.end-icon{ font-size:2.6rem; }
.favourite-list{ display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
.favourite-list button{
  background:var(--white); border:1px solid #eadfc8; border-radius:12px; padding:12px;
  text-align:left; cursor:pointer; font-size:.9rem;
}
.end-buttons{ display:flex; flex-direction:column; gap:12px; }

/* ---------- Journal ---------- */
.reflection-prompts{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.reflection-prompts .prompt-pill{
  background:var(--cream-2); border-radius:12px; padding:10px 14px; font-size:.85rem; color:var(--navy);
}
.new-entry-box textarea, .memory-jar-box textarea{
  width:100%; min-height:100px; border-radius:14px; border:1px solid #ddd0b8; padding:14px;
  font-family:var(--sans); font-size:.95rem; resize:vertical; background:var(--white);
}
.journal-entry-row{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; gap:12px; }
.share-toggle{ font-size:.8rem; color:var(--navy); display:flex; align-items:center; gap:6px; }
.journal-entry-row .btn{ width:auto; }

.journal-list{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }
.journal-entry{
  background:var(--white); border-radius:14px; padding:14px; box-shadow:var(--shadow);
}
.journal-entry .je-date{ font-size:.7rem; color:var(--navy); opacity:.6; margin-bottom:6px; display:block; }
.journal-entry .je-tag{ display:inline-block; font-size:.65rem; background:var(--cream-2); border-radius:8px; padding:2px 8px; margin-top:6px; }

/* ---------- Grow ---------- */
.grow-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.grow-card{
  background:var(--white); border-radius:14px; padding:14px; box-shadow:var(--shadow);
  cursor:pointer; text-align:center;
}
.grow-card .g-icon{ font-size:1.4rem; display:block; margin-bottom:6px; }
.grow-card h4{ font-family:var(--serif); font-size:.95rem; margin:0; color:var(--charcoal); }

.challenge-list{ display:flex; flex-direction:column; gap:8px; }
.challenge-item{
  background:var(--white); border-radius:12px; padding:12px 14px; box-shadow:var(--shadow);
  font-size:.9rem; display:flex; justify-content:space-between; align-items:center;
}
.challenge-item button{ background:none; border:none; font-size:1.1rem; cursor:pointer; }

.memory-jar-box{ background:var(--white); border-radius:16px; padding:16px; box-shadow:var(--shadow); }
.memory-jar-box .btn{ margin-top:10px; }
.memory-result{ margin-top:14px; font-family:var(--serif); font-size:1.1rem; color:var(--burgundy); text-align:center; }

/* ---------- Check-in ---------- */
.checkin-q{ background:var(--white); border-radius:14px; padding:16px; margin-bottom:12px; box-shadow:var(--shadow); }
.checkin-q p{ margin:0 0 10px; font-weight:700; font-size:.9rem; color:var(--navy); }
.checkin-scale{ display:flex; gap:6px; flex-wrap:wrap; }
.checkin-scale button{
  width:32px; height:32px; border-radius:50%; border:1.5px solid var(--gold);
  background:var(--white); cursor:pointer; font-size:.8rem; color:var(--charcoal);
}
.checkin-scale button.selected{ background:var(--gold); color:var(--white); }

.divider{ border:none; border-top:1px solid #e5d7bb; margin:28px 0; }

@media (min-width:520px){
  #app{ box-shadow:0 0 60px rgba(0,0,0,0.06); }
}

/* ---------- Home: more row ---------- */
.more-row{
  display:flex; gap:10px; overflow-x:auto; padding:2px 2px 4px;
  -webkit-overflow-scrolling:touch;
}
.more-pill{
  flex:0 0 auto; display:flex; flex-direction:column; align-items:center; gap:4px;
  background:rgba(251,243,231,0.90); border:none; border-radius:14px; padding:10px 14px;
  box-shadow:0 6px 16px rgba(61,42,30,0.25); font-size:.7rem; color:var(--coffee); cursor:pointer;
  min-width:70px; font-family:var(--sans); font-weight:600;
}
.more-pill span{ font-size:1.25rem; }

/* ---------- Grow detail ---------- */
.lesson-text{ font-family:var(--serif); font-size:1.15rem; line-height:1.5; color:var(--charcoal); background:var(--white); border-radius:14px; padding:16px; box-shadow:var(--shadow); }
.activity-box{ background:var(--cream-2); border-radius:14px; padding:16px; font-size:.92rem; color:var(--navy); }

/* ---------- Timeline ---------- */
.timeline-form, .bucket-form{ display:flex; flex-direction:column; gap:10px; background:var(--white); border-radius:16px; padding:16px; box-shadow:var(--shadow); margin-bottom:8px; }
.timeline-form select, .timeline-form input, .bucket-form select, .bucket-form input{
  padding:10px 12px; border-radius:10px; border:1px solid #ddd0b8; font-family:var(--sans); font-size:.9rem; background:var(--cream);
}
.timeline-form textarea{ min-height:70px; border-radius:10px; border:1px solid #ddd0b8; padding:10px 12px; font-family:var(--sans); font-size:.9rem; }
.timeline-list{ display:flex; flex-direction:column; gap:10px; }
.timeline-item{ background:var(--white); border-radius:14px; padding:14px; box-shadow:var(--shadow); position:relative; }
.timeline-item .ti-type{ font-size:.65rem; text-transform:uppercase; letter-spacing:1px; color:var(--terracotta); font-weight:700; }
.timeline-item .ti-date{ float:right; font-size:.7rem; color:var(--navy); opacity:.6; }
.timeline-item h4{ font-family:var(--serif); margin:4px 0; font-size:1.1rem; }
.timeline-item p{ font-size:.85rem; color:var(--navy); margin:0; }

/* ---------- Bucket list ---------- */
.bucket-list{ display:flex; flex-direction:column; gap:8px; }
.bucket-item{ background:var(--white); border-radius:12px; padding:12px 14px; box-shadow:var(--shadow); display:flex; align-items:center; justify-content:space-between; font-size:.9rem; }
.bucket-item label{ display:flex; align-items:center; gap:10px; }
.bucket-item.done span{ text-decoration:line-through; opacity:.5; }

/* ---------- Date planner ---------- */
.tag-grid{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; }
.tag-pill{ background:var(--white); border:1.5px solid transparent; border-radius:20px; padding:8px 16px; font-size:.85rem; cursor:pointer; box-shadow:var(--shadow); }
.tag-pill.selected{ border-color:var(--terracotta); color:var(--terracotta); font-weight:700; }
.date-plan-result{ background:var(--white); border-radius:16px; padding:16px; box-shadow:var(--shadow); margin-top:16px; }
.plan-line{ font-size:.9rem; margin-bottom:8px; color:var(--charcoal); }

/* ---------- Coach ---------- */
.coach-card{ background:var(--white); border-radius:14px; padding:16px; box-shadow:var(--shadow); margin-bottom:10px; font-family:var(--serif); font-size:1.05rem; color:var(--charcoal); }

/* ---------- Our song ---------- */
.our-song-display{ background:var(--white); border-radius:14px; padding:16px; box-shadow:var(--shadow); margin-top:16px; }
.our-song-display h4{ font-family:var(--serif); margin:4px 0; }

/* ---------- Plan / membership box ---------- */
.plan-box{ background:var(--white); border-radius:16px; padding:16px; box-shadow:var(--shadow); }
.plan-row{ display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid var(--cream-2); font-size:.85rem; }
.plan-row:last-of-type{ border-bottom:none; }
.plan-note{ font-size:.75rem; color:var(--navy); opacity:.7; margin-top:10px; }

/* ---------- Check-in ---------- */
.checkin-q{ background:var(--white); border-radius:14px; padding:16px; margin-bottom:12px; box-shadow:var(--shadow); }
.checkin-q p{ margin:0 0 10px; font-weight:700; font-size:.9rem; color:var(--navy); }
.checkin-scale{ display:flex; gap:6px; flex-wrap:wrap; }
.checkin-scale button{
  width:32px; height:32px; border-radius:50%; border:1.5px solid var(--gold);
  background:var(--white); cursor:pointer; font-size:.8rem; color:var(--charcoal);
}
.checkin-scale button.selected{ background:var(--gold); color:var(--white); }

.divider{ border:none; border-top:1px solid #e5d7bb; margin:28px 0; }

@media (min-width:520px){
  #app{ box-shadow:0 0 60px rgba(0,0,0,0.06); }
}

/* ---------- Toast ---------- */
.bu-toast{
  position:fixed; left:50%; bottom:96px; transform:translateX(-50%) translateY(20px);
  background:rgba(61,42,30,0.94); color:var(--cream);
  padding:12px 20px; border-radius:24px; font-size:.92rem; font-family:var(--sans);
  box-shadow:0 10px 30px rgba(61,42,30,0.4); z-index:9999;
  opacity:0; transition:opacity .25s ease, transform .25s ease; pointer-events:none;
  max-width:80%; text-align:center;
}
.bu-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ---------- Share button + journal hint ---------- */
.journal-hint{ font-size:.78rem; color:var(--navy); opacity:.6; }
.je-share{
  margin-top:10px; background:var(--cream-2); border:none; border-radius:12px;
  padding:7px 14px; font-size:.8rem; font-weight:700; color:var(--burgundy);
  cursor:pointer; font-family:var(--sans);
}
.je-share:active{ transform:scale(.96); }

/* ---------- Paywall ---------- */
.paywall-features{ list-style:none; padding:0; margin:0 0 22px; }
.paywall-features li{ font-size:.98rem; color:var(--charcoal); margin:0 0 12px; line-height:1.4; }
.paywall-plans{ display:flex; flex-direction:column; gap:12px; margin-bottom:14px; }
.plan-card{
  width:100%; text-align:left; cursor:pointer; border:2px solid #e6d8bd;
  background:var(--white); border-radius:16px; padding:16px 18px; box-shadow:var(--shadow);
  display:flex; flex-direction:column; gap:2px; font-family:var(--sans);
}
.plan-card:active{ transform:scale(.98); }
.plan-card.plan-best{ border-color:var(--terracotta); }
.plan-name{ font-family:var(--serif); font-size:1.25rem; color:var(--charcoal); }
.plan-price{ font-size:1rem; font-weight:700; color:var(--burgundy); }
.plan-note{ font-size:.78rem; color:var(--terracotta); font-weight:700; }
.paywall-trial{ text-align:center; font-size:.9rem; color:var(--navy); margin:4px 0 16px; }
.paywall-legal{ font-size:.72rem; color:var(--navy); opacity:.7; line-height:1.5; margin-top:18px; }
.paywall-legal a{ color:var(--burgundy); }

/* ---------- Play links / Meet the deck / How to play ---------- */
.play-links{ display:flex; gap:10px; margin-bottom:16px; }
.play-link{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  background:var(--white); border:1.5px solid #e6d8bd; border-radius:14px;
  padding:12px; font-family:var(--sans); font-weight:700; font-size:.9rem;
  color:var(--burgundy); cursor:pointer; box-shadow:var(--shadow);
}
.play-link span{ font-size:1.1rem; }
.play-link:active{ transform:scale(.97); }

.deck-list{ display:flex; flex-direction:column; gap:16px; }
.deck-card{
  background:var(--white); border-radius:18px; overflow:hidden;
  box-shadow:var(--shadow); border:1px solid #efe3cc;
}
.deck-card-img{ width:100%; display:block; }
.deck-card-text{ padding:14px 16px 18px; text-align:center; }
.deck-card-name{ font-family:var(--serif); font-size:1.35rem; color:var(--coffee); font-weight:700; }
.deck-card-name em{ font-family:'Dancing Script', cursive; font-style:normal; color:var(--terracotta); font-size:1.3rem; }
.deck-card-text p{ font-size:.9rem; color:var(--navy); margin:6px 0 0; line-height:1.5; }

.howto{ padding-bottom:40px; }
.howto-intro{ font-family:var(--serif); font-size:1.12rem; line-height:1.6; color:var(--coffee); font-style:italic; }
.howto-h{ font-family:var(--serif); color:var(--terracotta); font-size:1.3rem; margin:26px 0 8px; }
.howto-list{ padding-left:20px; margin:0 0 8px; }
.howto-list li{ font-size:.96rem; color:var(--charcoal); margin:6px 0; line-height:1.5; }
.howto p{ font-size:.96rem; color:var(--charcoal); line-height:1.55; margin:8px 0; }
.howto-ded{ margin-top:28px; font-family:var(--serif); font-style:italic; color:var(--navy); text-align:center; font-size:1.02rem; line-height:1.6; }

/* ---------- Entry row: share + delete ---------- */
.je-row{ display:flex; gap:8px; margin-top:10px; }
.je-row .je-share{ margin-top:0; }
.je-del{
  background:#f3e2df; border:none; border-radius:12px;
  padding:7px 14px; font-size:.8rem; font-weight:700; color:#8a3324;
  cursor:pointer; font-family:var(--sans);
}
.je-del:active{ transform:scale(.96); }

/* ---------- Web premium note ---------- */
.web-premium-note{
  background:var(--white); border:1px solid #e6d8bd; border-radius:16px;
  padding:20px 18px; text-align:center; font-size:1rem; line-height:1.6;
  color:var(--coffee); box-shadow:var(--shadow);
}
.web-premium-note strong{ color:var(--terracotta); font-size:1.15rem; }
