:root {
  --bg: #0e0e0e;
  --text: #f0f0f0;
  --accent: #e6007e;
  --font-main: 'Inter', sans-serif;
  --font-brand: 'Orbitron', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

.backtotop {
  padding-top: 2em;
}

.backtotop a {
  color: #fff;
  text-decoration: none;
}

.backtotop a:hover {
  color: #ff3399;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero .logo {
  text-align: center;
  width: 300px;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-family: var(--font-brand);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 1px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #ff3399;
}

main section {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #ccc;
}

.section-link {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.section-link:hover {
  border-color: var(--accent);
}

footer {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 0.9rem;
}
footer .logo {
  text-align: center;
  width: 150px;
  height: auto;
  margin-bottom: 1em;
}

.social-links {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.social-links a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: var(--accent);
}

.button-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
}

.button-list li a {
  display: block;
  background-color: #e6007e;
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 1px;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-list li a:hover {
  background-color: #fff;
  color: #ff3399;
  transform: translateY(-2px);
}

.button-list li a:active {
  background-color: #cc0066;
  transform: scale(0.98);
}


/* Responsive */
@media (
