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

:root {
  --bg-color: #050505;
  --text-primary: #EAEAEA;
  --text-secondary: #A0A0A0;
  --gold-primary: #C5A059;
  --gold-glow: rgba(197, 160, 89, 0.3);
  --glass-bg: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(197, 160, 89, 0.15);
  --neon-subtle: #8A2BE2;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  margin-left: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

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

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.3;
  z-index: -1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFF, var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
}

section {
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--gold-primary);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px var(--gold-glow);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tech-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.tech-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.tech-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.partnership {
  background: linear-gradient(180deg, transparent, rgba(197, 160, 89, 0.05), transparent);
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.ambassador-img {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, #111, #222);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  font-family: 'Cinzel', serif;
  position: relative;
  overflow: hidden;
}

.ambassador-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, #000 100%);
}

.form-group {
  margin-bottom: 25px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

button[type="submit"] {
  width: 100%;
  cursor: pointer;
  background: var(--gold-primary);
  color: #000;
  border: none;
  padding: 15px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: #EAEAEA;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(255,255,255,0.1); }
  to { text-shadow: 0 0 20px var(--gold-glow); }
}

@media (max-width: 900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  nav {
    padding: 20px;
  }
  .nav-links {
    display: none;
  }
}
