@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Yesteryear&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

body {
  position: relative;
  background-color: #0e1122;
}

body::before {
  content: '';
  position: fixed;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.5;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f55654;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #f99b1d;
  font-weight: 500;
  transition: color 0.3s;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

nav a:hover {
  color: #007bff;
}

nav a.active {
  color: #f55654;
  font-weight: 700;
  border-bottom: 2px solid #f55654;
  padding-bottom: 2px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

h1 {
  font-size: 28px;
  margin-bottom: -15px;
  color: #f55654;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ccc;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #f55654;
  text-decoration: none;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #0056b3;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #f55654;
  margin: 3px 0;
  transition: 0.3s;
}

.card {
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  margin: 20px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bg-purple {
  background-color: #f55654;
  color: white;
}

.border-purple {
  /* border: 2px solid #f55654; */
}

.bg-transparent {
  background-color: transparent;
  color: white;
}

.networks-row {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin-top: 20px;
}

.network-item svg {
  fill: #f55654;
  width: 30px;
  height: 30px;
  transition: fill 0.3s;
}

/* align footer to bottom */
footer {
  color: #f99b1d;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 40px;
}

footer .footer-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  display: flex;
  justify-content: center;
}

iframe {
  aspect-ratio: 16 / 9;
  width: 100% !important;
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    position: static;
    transform: none;
    font-size: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #0e1122;
    border-left: 2px solid #f55654;
    padding: 80px 30px;
    transition: right 0.3s;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    font-size: 18px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  main {
    padding: 60px 20px;
  }
}
