:root{
  --gold:#d4af67;
  --gold-light:#ead7aa;
  --gold-dark:#a98338;
  --black:#0d0d0f;
  --black-soft:#17171b;
  --white:#ffffff;
  --off-white:#f8f5ef;
  --champagne:#efe5d1;
  --text:#eae6de;
  --muted:#b8b0a3;
  --line:rgba(212,175,103,.28);
  --shadow:0 24px 70px rgba(0,0,0,.45);
}

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

html,body{
  width:100%;
  min-height:100%;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(212,175,103,.12), transparent 30%),
    linear-gradient(180deg, #050506 0%, #0d0d0f 45%, #141419 100%);
  color:var(--text);
  padding:24px;
}

.page-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 10%, rgba(234,215,170,.08), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(212,175,103,.06), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.03), transparent 22%);
  z-index:0;
}

.card{
  position:relative;
  z-index:1;
  width:100%;
  max-width:500px;
  margin:0 auto;
  border-radius:34px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    linear-gradient(180deg, #101014 0%, #16161b 100%);
  border:1px solid rgba(212,175,103,.18);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.hero{
  position:relative;
  min-height:340px;
  padding:26px 24px 110px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.55)),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(212,175,103,.16), transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.48));
  pointer-events:none;
}

.hero-top,
.hero-content{
  position:relative;
  z-index:2;
}

.hero-top{
  display:flex;
  justify-content:center;
}

.hero-logo{
  width:100%;
  max-width:340px;
  display:block;
  filter:
    drop-shadow(0 10px 25px rgba(0,0,0,.45))
    drop-shadow(0 0 20px rgba(212,175,103,.10));
}

.premium-badge{
  display:inline-block;
  margin-bottom:14px;
  padding:9px 14px;
  border:1px solid rgba(234,215,170,.35);
  border-radius:999px;
  background:rgba(0,0,0,.22);
  color:var(--gold-light);
  font-size:11px;
  letter-spacing:1.7px;
  text-transform:uppercase;
}

.hero h1{
  font-size:34px;
  line-height:1.05;
  color:var(--white);
  margin-bottom:10px;
  text-shadow:0 4px 20px rgba(0,0,0,.35);
}

.hero-subtitle{
  font-size:15px;
  color:var(--champagne);
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-weight:700;
}

.profile-section{
  position:relative;
  margin-top:-82px;
  display:flex;
  justify-content:center;
  z-index:3;
}

.profile-frame{
  width:164px;
  height:164px;
  border-radius:50%;
  padding:8px;
  background:
    linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  box-shadow:
    0 16px 30px rgba(0,0,0,.35),
    0 0 0 8px rgba(255,255,255,.02);
}

.profile-photo{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  display:block;
  border:5px solid rgba(14,14,17,.85);
}

.content{
  padding:28px 28px 30px;
  text-align:center;
}

.section-heading{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:18px;
}

.section-heading h2{
  font-size:20px;
  font-weight:700;
  color:var(--gold-light);
}

.mini-line{
  width:42px;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

.description{
  max-width:380px;
  margin:0 auto 24px;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}

.main-cta{
  margin-bottom:18px;
}

.btn{
  display:inline-block;
  width:100%;
  text-decoration:none;
  border-radius:18px;
  padding:16px 20px;
  font-weight:700;
  font-size:15px;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  opacity:.98;
}

.btn-gold{
  color:#111;
  background:
    linear-gradient(180deg, #f0ddb2 0%, #d4af67 55%, #b88e46 100%);
  box-shadow:
    0 14px 30px rgba(212,175,103,.22),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.actions-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:8px;
}

.action-card{
  text-decoration:none;
  color:var(--off-white);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(212,175,103,.16);
  border-radius:22px;
  min-height:112px;
  padding:18px 12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.action-card:hover{
  transform:translateY(-3px);
  border-color:rgba(234,215,170,.36);
  box-shadow:0 16px 28px rgba(0,0,0,.22);
}

.action-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(180deg, rgba(240,221,178,.14), rgba(212,175,103,.18));
  border:1px solid rgba(212,175,103,.24);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.action-icon svg{
  width:26px;
  height:26px;
  fill:var(--gold-light);
  display:block;
}

.action-card span{
  font-size:13px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.luxury-box{
  margin-top:22px;
  padding:22px 18px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(212,175,103,.08), rgba(255,255,255,.02));
  border:1px solid rgba(212,175,103,.14);
}

.luxury-box h3{
  margin-bottom:10px;
  font-size:18px;
  color:var(--gold-light);
}

.luxury-box p{
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.qr-section{
  padding:28px 28px 30px;
  border-top:1px solid rgba(212,175,103,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
  text-align:center;
}

.qr-title{
  color:var(--gold-light);
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.qr-desc{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin-bottom:18px;
}

.qr-box{
  width:150px;
  height:150px;
  margin:0 auto 14px;
  border-radius:20px;
  padding:10px;
  background:linear-gradient(180deg, #fffefb, #f1ebdf);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}

.qr-box img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  border-radius:12px;
}

.site-link{
  color:var(--gold);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  word-break:break-word;
}

.footer{
  padding:0 28px 28px;
  text-align:center;
}

.footer small{
  color:#938a7a;
  font-size:12px;
}

@media (max-width:520px){
  body{
    padding:14px;
  }

  .hero{
    min-height:320px;
    padding:20px 18px 105px;
  }

  .hero-logo{
    max-width:300px;
  }

  .hero h1{
    font-size:30px;
  }

  .profile-frame{
    width:150px;
    height:150px;
  }

  .content{
    padding:24px 18px 26px;
  }

  .qr-section{
    padding:24px 18px 26px;
  }

  .section-heading h2{
    font-size:18px;
  }

  .description{
    font-size:15px;
  }

  .action-card{
    min-height:102px;
  }
}