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

:root {
  --bg-color: #050000;
  --surface-color: #0A0A0A;
  --border-color: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #888888;
  --accent-color: #FF0033;
  --accent-glow: rgba(255, 0, 51, 0.3);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

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

a:hover {
  color: #ff3355;
}

/* Header */
header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: rgba(5, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 5%;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent-glow);
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(to right, #FFFFFF, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.cta-button {
  background-color: var(--accent-color);
  color: #fff;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
  color: #fff;
}

/* Legal Pages */
.legal-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.legal-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-container p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.legal-container ul {
  color: var(--text-secondary);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 5%;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  header {
    flex-direction: column;
    gap: 1rem;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Floating Background Icons */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  opacity: 0.15;
  animation: floatAnim 15s infinite linear;
}

.float-icon.icon-1 {
  width: 60px;
  top: 15%;
  left: 10%;
  animation-duration: 25s;
}

.float-icon.icon-2 {
  width: 40px;
  top: 60%;
  left: 80%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.float-icon.icon-3 {
  width: 80px;
  top: 80%;
  left: 20%;
  animation-duration: 30s;
  animation-delay: -10s;
}

.float-icon.icon-4 {
  width: 30px;
  top: 25%;
  left: 70%;
  animation-duration: 12s;
  animation-delay: -2s;
}

.float-icon.icon-5 {
  width: 50px;
  top: 40%;
  left: 40%;
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-50px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(20px) rotate(240deg) scale(0.9);
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
  }
}
