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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #e3e3e3;
  background: radial-gradient(circle at center, #0b0b0b 0%, #000000 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10, 10, 10, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header h2 {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #d4b483;
}

header a {
  color: #dcdcdc;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 400;
  transition: color 0.3s ease;
}

header a:hover {
  color: #d4b483;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  position: relative;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  letter-spacing: 1px;
  color: #f0e6d2;
  text-shadow: 0 0 30px rgba(255, 230, 200, 0.3);
}

.hero p {
  max-width: 600px;
  margin-top: 15px;
  font-size: 1.2rem;
  color: #bfbfbf;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

button {
  background: linear-gradient(90deg, #d4b483, #9a6b44);
  color: #1a1a1a;
  padding: 15px 45px;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 25px rgba(212, 180, 131, 0.4);
}

button:hover {
  background: linear-gradient(90deg, #e0c58b, #b27b52);
  box-shadow: 0 0 40px rgba(212, 180, 131, 0.6);
}

main {
  position: relative;
  z-index: 5;
  padding: 120px 60px 80px;
  max-width: 900px;
  margin: auto;
  background: rgba(15, 15, 15, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

main h1 {
  font-family: 'Cinzel', serif;
  color: #d4b483;
  text-shadow: 0 0 20px rgba(212, 180, 131, 0.4);
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "✦ ";
  color: #d4b483;
}