
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root{
  --gold1: #f1c27d;
  --gold2: #d4a94a;
  --gold3: #b1862f;
  --text: #ffffff;
  --bg: #0a0a0a;
}

*{ box-sizing: border-box; }

html,body{
  height:100%;
  margin:0;
  background: radial-gradient(1200px 600px at 50% 20%, rgba(255,255,255,0.03), transparent 60%),
              var(--bg);
  color: var(--text);
}

.container{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: clamp(16px, 4vw, 40px);
}

.card{
  text-align:center;
  max-width: 900px;
  width: 100%;
  padding: clamp(20px, 5vw, 48px);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 80px rgba(255,255,255,0.02);
  animation: floatUp 700ms ease-out both;
}

.brand{
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 96px);
  letter-spacing: 0.08em;
  margin: 0 0 10px 0;
  background: linear-gradient(135deg, var(--gold1), var(--gold2) 40%, var(--gold3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 16px rgba(0,0,0,0.35);
  animation: glow 4s ease-in-out infinite;
}

.sub{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0.12em;
  opacity: 0;
  animation: fadeSlide 900ms 200ms ease-out forwards;
}

.line{
  width: 120px;
  height: 1px;
  margin: 18px auto 26px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  opacity: 0;
  animation: fadeIn 700ms 400ms linear forwards;
}

.scan{
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin: 8px 0 18px;
  animation: fadeIn 700ms 650ms linear forwards;
  color: #dcdcdc;
}

.qr-wrap{
  display:inline-block;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  animation: zoomFloat 900ms 800ms ease-out forwards, bob 6s ease-in-out 1400ms infinite;
}

.qr{
  width: clamp(180px, 36vw, 320px);
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.ig{
  margin-top: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 900ms 1200ms ease-out forwards;
}

a.btn{
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

a.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
}

.ig svg{
  width: 22px; height: 22px;
  display:block;
}

/* Animations */
@keyframes glow{
  0%,100%{ filter: drop-shadow(0 0 0 rgba(241, 194, 125, 0.0)); }
  50%{ filter: drop-shadow(0 0 18px rgba(241, 194, 125, 0.34)); }
}
@keyframes fadeSlide{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes zoomFloat{
  from{ opacity:0; transform: translateY(14px) scale(0.94); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}
@keyframes bob{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-6px) scale(1.01); }
}
@keyframes floatUp{
  from{ transform: translateY(14px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}

.footer{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 26px;
}
