:root {
  --primary: #0a0a0a;
  --secondary: #1e3a8a;
  --background: #000000;
  --footer-bg: #0a0a0a;
  --accent: #d4af37;
  --section-bg-1: #1e3a8a;
  --section-bg-2: #0a0a0a;
  --section-bg-3: #d4af37;
  --text-light: #ffffff;
  --text-dark: #0a0a0a;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --border-radius: 0;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  --metal-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%);
}

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

body {
  background-color: var(--background);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  background: var(--metal-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--accent);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--accent);
  background-color: transparent;
  color: var(--accent);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover {
  color: var(--text-dark);
}

.btn:hover:before {
  left: 0;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
  color: var(--text-dark);
}

.section-bg-3 h1,
.section-bg-3 h2,
.section-bg-3 h3,
.section-bg-3 h4,
.section-bg-3 h5,
.section-bg-3 h6 {
  color: var(--text-dark);
}

.card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  padding: 2rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.metal-accent {
  position: relative;
}

.metal-accent:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--metal-gradient);
  z-index: -1;
}

footer {
  background-color: var(--footer-bg);
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@keyframes shine {
  0% {
    background-position: -100%;
  }
  100% {
    background-position: 100%;
  }
}

.shine-effect {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  background-size: 200% 100%;
  animation: shine 3s infinite;
}