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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at 20% -10%, #0a0a0c 0%, #000 80%);
  color: #d4d4d4;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  z-index: 50;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.navbar h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f5c518;
}

nav a {
  margin-left: 1.2rem;
  text-decoration: none;
  color: #d4d4d4;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #f5c518;
}

.btn {
  background: #f5c518;
  color: #000;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.btn:hover {
  box-shadow: 0 0 18px #f5c51880;
}

.section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.glass {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 40px -12px rgba(0,0,0,0.8);
}

footer {
  margin-top: 6rem;
  border-top: 1px solid rgba(245,197,24,0.2);
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.85rem;
  color: #777;
}

/* Gold particles background */
.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #f5c518;
  border-radius: 50%;
  box-shadow: 0 0 6px #f5c518aa;
  animation: float 10s linear infinite;
}
@keyframes float {
  from { transform: translateY(100vh); opacity: 0; }
  50%  { opacity: 0.7; }
  to   { transform: translateY(-10vh); opacity: 0; }
}

/* Form */
form {
  display: grid;
  gap: 1.2rem;
}
input, textarea {
  width: 100%;
  padding: 0.8rem;
  background: #0a0a0c;
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px;
  color: #d4d4d4;
}
label {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.3rem;
  display: block;
}
