body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #0a0a0a;
  color: #fff;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 48px;
  background: #111;
}
header h1 {
  font-size: 2.2rem;
  color: #FFD700;
  margin: 0;
}
nav a {
  color: #FFD700;
  text-decoration: none;
  margin-left: 32px;
  font-weight: 600;
  font-size: 1.1rem;
}
nav {
  display: none;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}
.menu-dropdown {
  position: fixed;
  top: 70px;
  right: 0;
  background: rgba(20, 20, 20, 0.98);
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  padding: 0;
  display: none;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.menu-dropdown.active {
  display: flex;
}
.menu-dropdown a {
  color: #FFD700;
  text-decoration: none;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  font-weight: 600;
  transition: background 0.2s;
  margin-left: 0;
}
.menu-dropdown a:hover {
  background: rgba(255, 215, 0, 0.08);
}
.menu-dropdown a:last-child {
  border-bottom: none;
}
.hero {
  text-align: center;
  padding: 80px 16px 48px 16px;
  background: linear-gradient(135deg, #FFD700 0%, #111 100%);
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #111;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #222;
}
.cta {
  display: inline-block;
  background: #FFD700;
  color: #111;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.cta:hover {
  background: #e6c200;
}
section {
  max-width: 700px;
  margin: 48px auto;
  padding: 24px;
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
section h3 {
  color: #FFD700;
  margin-top: 0;
}
ul {
  padding-left: 20px;
}
.store-badges {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  background: #222;
  color: #fff;
}
button[type="submit"] {
  background: #FFD700;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: #e6c200;
}
footer {
  text-align: center;
  padding: 32px 0 16px 0;
  color: #FFD700;
  background: #111;
  margin-top: 48px;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.footer-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover {
  text-decoration: underline;
}
