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

:root {
  --bg: #141311;
  --surface: rgba(33, 31, 29, 0.6);
  --border: rgba(76, 69, 57, 0.6);
  --gold: #FFB340;
  --gold-light: #FFDDB1;
  --gold-glow: rgba(255, 179, 64, 0.5);
  --text: #E8E2D9;
  --muted: #988F80;
  --radius: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Background Ambient Glows */
body::before, body::after {
  content: '';
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.2;
}

body::before {
  top: -10vw;
  left: -10vw;
  background: var(--gold);
}

body::after {
  bottom: -20vw;
  right: -10vw;
  background: #D97706;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  flex: 1;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: 'Outfit', sans-serif;
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* Header */
header {
  text-align: center;
  padding: 60px 0 40px;
  animation: fadeInDown 0.8s ease-out;
}

header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 24px;
}

/* Glass Panels */
.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.glass-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.3);
}

.glass-panel h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-panel p {
  margin-bottom: 16px;
}

.glass-panel p:last-child {
  margin-bottom: 0;
}

.glass-panel ul {
  list-style: none;
}

.glass-panel ul li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.glass-panel ul li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1A0A00;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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



/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  .container {
    padding: 20px 16px 60px;
  }
  header {
    padding: 40px 0 20px;
  }
  .glass-panel {
    padding: 24px 16px;
  }
  nav {
    padding: 16px;
  }
  .nav-links {
    gap: 16px;
  }
  body::before, body::after {
    width: 80vw;
    height: 80vw;
  }
}
