
/* Giftable Crypto — Celebration Theme v7
   - Left vertical ribbon on main .card (no top glint)
   - Dark BTC balance section with light text
   - Address row remains light with readable pill
   - Dark header (no shimmer by default)
   - Centered typography & higher contrast
   Usage:
   <link rel="stylesheet" href="/styles/gc-theme-celebration-v7.css">
*/

:root{
  --gc-text:   #142126;
  --gc-muted:  #5c6a73;
  --gc-mint:   #17b897;
  --gc-gold:   #e5b75b;
  --gc-border: 1px solid rgba(20,33,38,.16);
  --gc-radius: 20px;
  --gc-shadow: 0 16px 36px rgba(22,20,15,.16), inset 0 1px 0 rgba(255,255,255,.90);
}

/* ===== Background (celebration gradient, animated) ===== */
body.gc{
  margin:0;
  color: var(--gc-text);
  font: 17px/1.55 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;

  background-color: #f5fbf7;
  background-image:
    radial-gradient(1200px 800px at 15% -10%, rgba(46, 217, 160, 0.58), rgba(46,217,160,0) 60%),
    radial-gradient(900px 700px  at 85% 0%,  rgba(255, 194, 120, 0.48), rgba(255,194,120,0) 62%),
    radial-gradient(1000px 900px at 0% 95%,  rgba(137, 170, 255, 0.38), rgba(137,170,255,0) 62%),
    radial-gradient(900px 700px  at 100% 95%, rgba(86, 235, 197, 0.48), rgba(86,235,197,0) 62%),
    linear-gradient(180deg, #eefaf4, #fafffb);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 140% 120%, 120% 100%, 130% 120%, 120% 110%, 100% 100%;
  background-position: 10% -20%, 90% -10%, 0% 100%, 100% 100%, 0% 0%;
  animation: gcCelebrationShift 36s ease-in-out infinite alternate;
}
@keyframes gcCelebrationShift{
  0%   { background-position: 12% -22%, 88% -8%, 2% 102%, 98% 102%, 0% 0%; }
  50%  { background-position: 18% -16%, 78% -6%, -2% 96%, 100% 96%, 0% 0%; }
  100% { background-position: 22% -10%, 70% -2%, -6% 92%, 104% 92%, 0% 0%; }
}
@media (prefers-reduced-motion: reduce){ body.gc{ animation:none; } }

/* ===== Header (dark inverse, no shimmer) ===== */
body.gc header{
  position: relative;
  background: linear-gradient(180deg, #0f1f1c, #0a1613);
  color: #f4fbf9;
  border: var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 28px 24px 22px;
  box-shadow: 0 18px 40px rgba(10,22,19,.35);
  text-align: center;
  overflow: hidden;
}
/* gold ribbon edge on left to match card accents */
body.gc header::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0; width:10px;
  border-top-left-radius: var(--gc-radius);
  border-bottom-left-radius: var(--gc-radius);
  background: linear-gradient(180deg,#f7d882,#d9a94a);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
body.gc header h1{
  margin:0;
  font-size:29px;
  line-height:1.12;
  letter-spacing:.6px;
  font-weight:1000;
  color:#f7fbfa;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
body.gc header p{ margin:12px 0 0; color: rgba(255,255,255,.88); font-size:16px; }


/* ===== Brand link (logo click) ===== */
body.gc .brand-link,
body.gc .brand-link:link,
body.gc .brand-link:visited,
body.gc .brand-link:hover,
body.gc .brand-link:active,
body.gc .brand-link:focus {
  color: inherit !important;          /* stay white in dark header */
  text-decoration: none !important;   /* kill underline globally */
  display: inline-block;
}

body.gc .brand-link:hover {
  opacity: .95;                       /* tiny feedback on hover */
}

body.gc .brand-link:focus-visible {
  outline: 3px solid rgba(255,122,26,.5);
  outline-offset: 3px;
  border-radius: 6px;
}



/* ===== Main Card with LEFT ribbon ===== */
body.gc .card{
  position: relative;
  margin-top:22px;
  background: #ffffff;
  border: var(--gc-border);
  border-radius: var(--gc-radius);
  overflow:hidden;
  box-shadow: var(--gc-shadow);
  padding-left: 8px; /* create gutter for ribbon curve */
}
/* remove any previous top glint if present */
body.gc .card::before{ content:none; }
/* full-height left ribbon */
body.gc .card::after{
  content:"";
  position:absolute; top:0; bottom:0; left:0;
  width:10px;
  background: linear-gradient(180deg, #1db89a, #f7d882, #12a082);
  border-top-left-radius: var(--gc-radius);
  border-bottom-left-radius: var(--gc-radius);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

/* Section titles */
body.gc .label{
  background: linear-gradient(180deg,#fff,#f3eadb);
  color:#1b2a2f;
  text-align:center;
  font-weight:1000;
  letter-spacing:.35px;
  padding:18px 18px;
  border-bottom: 1px solid rgba(20,33,38,.12);
  font-size:19px;
}

/* Address row (light) */
body.gc .value{
  padding:20px 18px;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  border-bottom: 1px solid rgba(20,33,38,.10);
  background: linear-gradient(180deg,#ffffff,#f8f4ed);
}
body.gc .value:last-of-type{ border-bottom:none; }

/* Address pill */
body.gc .address-box{
  background:#ffffff;
  color:#142126;
  border: 3px solid rgba(23,184,151,.45);
  border-radius: 18px;
  padding:14px 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size:16px; font-weight:900;
  letter-spacing:.3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 4px 10px rgba(23,184,151,.10);
}

/* BTC balance row (DARK inverse) */
body.gc .card .value.balance{
  background: linear-gradient(180deg, #0b201a, #081712);
  color:#f4fffb;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
body.gc .card .value.balance #balance{
  color:#ffffff;
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
  font-size:26px; font-weight:1000; letter-spacing:.6px;
}

/* Source line — centered & larger */
body.gc .source{
  color:#6b7c85;
  padding:14px 16px 22px;
  font-size:15px;
  text-align:center;
}

/* ===== Directions panel (match Redeem style) ===== */
body.gc .directions{
  background: linear-gradient(180deg, #0d1929, #09131f);
  color: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 18px;
  margin-top: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  position: relative;
}
body.gc .directions::before{
  content:"";
  position:absolute; left:12px; top:12px; bottom:12px; width:4px;
  background: linear-gradient(180deg, #ffc46b, #ff7a1a);
  border-radius: 4px;
}
body.gc .directions strong{ color:#ffc46b; }
body.gc .directions a{ color:#ffc46b; font-weight:700; text-decoration:none; }
body.gc .directions a:hover{ text-decoration:underline; }

/* (optional small notes under Directions) */
body.gc .directions .note{
  font-size:14px; color:rgba(255,255,255,.85); margin-top:6px; line-height:1.4;
}


body.gc .note {
  margin-top: 20px;
  background: #ffffff;
  border: var(--gc-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(22,20,15,.10);
  color: #222;
}

body.gc .note strong {
  color: #e46c1a; /* subtle warm orange to match theme */
}



/* Footer link */
body.gc a{ color:#0ea989; font-weight:1000; }
body.gc a:hover{ text-decoration: underline; }

/* Status */
body.gc .status{ color:#6e7b84; }
body.gc .status.ok{ color: #17b897; }
body.gc .status.warn{ color: #d29a1a; }
body.gc .status.err{ color: #e36666; }




/* ===== GC Celebration – Final Polish Patch ===== */

/* 1) Softer, richer cards (panels) */
body.gc .card{
  background: linear-gradient(180deg, #fffdfb 0%, #f7f9f7 100%);
  border-radius: 22px;
  box-shadow:
    inset 0 2px 10px rgba(0,0,0,0.05),
    0 6px 22px rgba(0,0,0,0.08);
}

/* 2) Header: premium, but warm */
body.gc header h1{
  letter-spacing: .5px;
  text-shadow: 0 1px 3px rgba(255,255,255,.20);
}
body.gc header p{
  font-weight: 500;
  color: #5f6a6a;
}

/* 3) Wallet address box: more contrast & legibility */
body.gc .address-box{
  background: rgba(255,255,255,0.92);
  color: #111;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: .95rem;
  letter-spacing: .3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  word-break: break-all;
}

/* 4) Balance row: make the value pop even more */
body.gc .value.balance code{
  font-weight: 800;
  letter-spacing: .6px;
}

/* 5) Directions card: softer corners & shadow already present; add tiny lift */
body.gc .directions{
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

/* 6) Footer link: friendly, “stationery” feel */
body.gc .footer a{
  color: #00a884;
  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
}
body.gc .footer a:hover{ text-decoration: underline; }

/* 7) Optional subtle background life (very gentle) */
@keyframes celebrationGlow {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  50%  { filter: hue-rotate(10deg) brightness(1.03); }
  100% { filter: hue-rotate(0deg) brightness(1); }
}
body.gc { animation: celebrationGlow 20s ease-in-out infinite; }

/* ===== End patch ===== */






