:root{
  --bg: #050505;
  --card: rgba(16,16,16,.72);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --accent: #c86a2a; /* fire */
  --accent2:#ff7a1a;
  --shadow: 0 30px 80px rgba(0,0,0,.65);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);

  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(200,106,42,.22), rgba(0,0,0,0) 55%),
    radial-gradient(900px 600px at 20% 110%, rgba(255,122,26,.16), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.92)),
    url("bg.jpeg?v=3") center/cover no-repeat fixed,
    #000;
}

.page{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:56px 18px;
}

.card{
  width:min(560px, 100%);
  border:1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

/* HERO IMAGE — use RELATIVE so it works on custom domain + GitHub Pages */
.hero{
  height: 210px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.92)),
    url("hero.jpeg?v=3") center/cover no-repeat;
}

.header{
  display:flex;
  gap:14px;
  padding: 18px 18px 12px;
  align-items:center;
}

.badge{
  width:46px; height:46px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:800;
  letter-spacing:.06em;
  color:#fff;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,122,26,.55), rgba(200,106,42,.12) 55%, rgba(0,0,0,.85) 100%);
  border:1px solid rgba(255,122,26,.20);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.title{
  margin:0;
  font-size: 28px;
  letter-spacing:.14em;
  font-weight: 900;
}

.tagline{
  margin:6px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

.links{
  padding: 10px 14px 12px;
  display:grid;
  gap:12px;
}

.link{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-decoration:none;
  color: var(--text);
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
  overflow:hidden;
}

/* Fire glow + subtle animated flicker on hover */
.link::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 120px at 15% 50%, rgba(255,122,26,.18), rgba(0,0,0,0) 60%),
    radial-gradient(420px 120px at 85% 50%, rgba(200,106,42,.14), rgba(0,0,0,0) 60%);
  opacity:0;
  transition: opacity .16s ease;
  pointer-events:none;
}

@keyframes fireFlicker{
  0%   { transform: translateY(0px);   opacity:.55; }
  50%  { transform: translateY(-1px);  opacity:.75; }
  100% { transform: translateY(0px);   opacity:.55; }
}

.link:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,26,.28);
  background: rgba(255,255,255,.06);
  box-shadow:
    0 12px 40px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,122,26,.12),
    0 0 26px rgba(255,122,26,.10);
}

.link:hover::after{
  opacity:1;
  animation: fireFlicker .9s infinite ease-in-out;
}

.left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
  position:relative;
  z-index:1;
}

.icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  opacity:.95;
}
.icon svg{
  width:26px;
  height:26px;
  display:block;
}

/* Icon glow on hover */
.link:hover .icon svg{
  filter: drop-shadow(0 0 10px rgba(255,122,26,.25));
}

.name{
  font-weight: 800;
  letter-spacing:.02em;
}

.pill{
  position:relative;
  z-index:1;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing:.04em;
  color: rgba(255,255,255,.90);
  border: 1px solid rgba(255,122,26,.25);
  background: rgba(200,106,42,.10);
}

.follow{
  padding: 10px 18px 0;
}

.sectionTitle{
  margin: 8px 0 10px;
  font-size: 12px;
  letter-spacing:.18em;
  color: rgba(255,255,255,.62);
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.chip{
  text-decoration:none;
  color: rgba(255,255,255,.88);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: border-color .12s ease, transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,26,.26);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 18px rgba(255,122,26,.08);
}

.footer{
  padding: 14px 18px 18px;
}

.email{
  display:inline-block;
  margin-top: 2px;
  font-weight: 800;
  color: var(--accent2);
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,122,26,.35);
  padding-bottom: 2px;
}
.email:hover{
  border-bottom-color: rgba(255,122,26,.75);
}

.copyright{
  margin-top: 14px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

/* QR FLOAT — fixed bottom-right ALWAYS (follows while scrolling) */
.qr-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: grid;
  gap: 8px;
  text-decoration: none;
  user-select: none;
}

.qr-label{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  text-align: right;
}

.qr-float img{
  width: 110px;
  height: 110px;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
}

/* Hide on small screens (phones already ARE mobile) */
@media (max-width: 520px){
  .qr-float{ display:none; }
}
