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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    #8a6f33;
  --bg:          #0c0c0e;
  --bg-card:     #131316;
  --text:        #f0ead6;
  --text-muted:  #7a7060;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Subtle noise texture overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Radial gold glow behind the card */
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 64px 56px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.05),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(201,168,76,0.12);
  min-width: 340px;
  text-align: center;

  /* entry animation */
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* Monogram circle */
.monogram {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 1px;
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}

/* Thin golden divider */
.divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Name */
.name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22px, 5vw, 28px);
  color: var(--text);
  letter-spacing: 1.5px;
  line-height: 1.2;
}

/* Tagline */
.tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -10px;
}

/* LinkedIn button */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 13px 32px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.linkedin-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c0c0e;
  box-shadow: 0 0 30px rgba(201,168,76,0.25);
  transform: translateY(-1px);
}

.linkedin-btn:active {
  transform: translateY(0);
}

.linkedin-btn svg {
  transition: transform 0.3s ease;
}

.linkedin-btn:hover svg {
  transform: scale(1.15);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 48px 32px;
    min-width: unset;
    width: calc(100vw - 48px);
  }
}
