/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* BODY + BACKGROUND */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,169,73,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(168,127,44,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(212,169,73,0.08) 0%, transparent 60%),
    #0a0a0a;
  position: relative;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  color: #faf6ec;
}

/* Subtle Pattern Overlay (gold dots instead of blue plus) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a949' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Soft noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* CARD */
.text-box {
  position: relative;
  z-index: 1;
  background: #faf6ec;
  color: #2a241a;
  padding: 44px 42px;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  margin: auto;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212,169,73,0.25),
    0 0 80px rgba(212,169,73,0.08);
  border-top: 3px solid #d4a949;
}

.listbox {
  border-left: 3px solid #d4a949;
  margin-left: 25px;
  line-height: 1.4;
  padding-left: 12px;
  font-size: 1.1rem;
}

/* TEXT */
h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #0a0a0a;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(212,169,73,0.35);
  padding-bottom: 14px;
  margin-bottom: 22px;
}

h2, h3 {
  color: #0a0a0a;
  margin-top: 1.4em;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3a3328;
}

/* LINKS */
a {
  color: #a87f2c;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(212, 169, 73, 0.35);
  transition: all 0.2s ease;
}

a:hover {
  color: #0a0a0a;
  border-bottom: 2px solid #d4a949;
}

a:active {
  opacity: 0.7;
}

/* BUTTON STYLE */
.button {
  display: inline-block;
  background: linear-gradient(135deg, #a87f2c 0%, #f5d97b 50%, #d4a949 100%);
  background-size: 200% 100%;
  color: #0a0a0a;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: none;
  box-shadow: 0 4px 18px rgba(212,169,73,0.35);
  transition: background-position 0.4s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.button:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,169,73,0.5);
  color: #0a0a0a;
  border-bottom: none;
}

.button:active {
  transform: scale(0.98);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .text-box {
    padding: 28px 22px;
  }
  h1 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
}
