@import url('css2');

:root {
  --red: #d60000;
  --gold: #ffcc00;
}

body {
  font-family: 'ZCOOL KuaiLe', sans-serif;
  background: var(--red);
  color: white;
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  z-index: 100;
}

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

.logo img {
  height: 40px;
  width: 40px;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--red));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.hero-links {
  display: inline-flex;
  gap: 12px;
}

.hero-link {
  display: inline-block;
  padding: 12px 18px;
  background: rgba(0,0,0,0.35);
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-link:hover {
  transform: translateY(-1px);
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.5);
}

.hero-link.primary {
  background: var(--gold);
  color: #900;
  border-color: var(--gold);
}

.hero-link.primary:hover {
  background: #ffe066;
}

.content-section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.content-section h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.content-section.alt {
  background: #b00000;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.step {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 12px;
  width: 200px;
}

.number {
  font-size: 1.5rem;
  background: var(--gold);
  color: #900;
  border-radius: 50%;
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 10px;
}

footer {
  padding: 20px;
  text-align: center;
  background: #900;
  font-size: 0.9rem;
}
