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

/* Background Pattern */
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23090964" fill-opacity="0.03" fill-rule="evenodd"/%3E%3C/svg%3E');
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.button,
nav a,
.logo span {
  font-family: "Josefin Sans", sans-serif;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.glow-box h1 {
  color: white;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 3rem 0;
}

.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.text-column,
.image-column {
  flex: 1;
    width: 10vw;
}

.three-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

/* Marquee */
.marquee-container {
  background-color: #ee3342;
  color: white;
  padding: 0.5rem 0;
  font-family: "Josefin Sans", sans-serif;
}

marquee {
  font-size: 1rem;
}

/* Header */
header {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  max-width: 13vh;
}

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

nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #ee3342;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.button.primary {
  background-color: #ee3342;
  color: white;
  border: none;
}

.button.primary:hover {
  background-color: #d62c3a;
}

.button.outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.button.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #090964, rgba(9, 9, 100, 0.7));
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  height: 50vh;
}


.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.welcome {
  align-content: center;
    text-align: center;
}

/* Sign Up Section */
.signup {
  background-color: #f8f8f8;
  text-align: center;
}

.signup-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1rem;
  gap: 0.5rem;
}

.signup-form input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #090964;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
}

.blink-text {
  color: #ee3342;
  font-size: 2rem;
  margin-top: 0.5rem;
  animation: blink 1s step-end infinite;
  font-family: "Josefin Sans", sans-serif;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* About Section */
.about {
  background-color: white;
}

.about img {
  width: 100%;
  height: auto;
  display: block;
}

/* Video Section */
.video {
  background-color: #f8f8f8;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

/* Gameplay Section */
.gameplay {
  background-color: #090964;
  color: white;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
}

.feature-number {
  width: 3rem;
  height: 3rem;
  background-color: #ee3342;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  background-color: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.team-photo {
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
  background-color: rgba(9, 9, 100, 0.1);
  width: 15rem;
  height: 15rem;
}

.role {
  color: #ee3342;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Josefin Sans", sans-serif;
}

/* Contact Section */
.contact {
  background-color: #090964;
  color: white;
  text-align: center;
}

.email-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.email-link a {
  color: white;
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
}

.email-link a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Open Sans", sans-serif;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Visitor Counter */
.visitor-counter {
  background-color: white;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  text-align: center;
}

.counter-box {
  display: inline-block;
  background-color: black;
  color: #00ff00;
  font-family: monospace;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: white;
  border-top: 1px solid #ddd;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.copyright {
  font-size: 0.9rem;
  color: #666;
}

.footer-extra {
  text-align: center;
}

.love-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.love-text span {
  color: #ee3342;
}

.browser-text {
  font-family: monospace;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.web-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Neocities Special Effects */
.pixel-border {
  box-shadow: -3px -3px 0 0 #000, 3px -3px 0 0 #000, -3px 3px 0 0 #000, 3px 3px 0 0 #000;
  padding: 1rem;
  background-color: white;
}

.glow-box {
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.glow-text {
  text-shadow: 0 0 5px #ee3342, 0 0 10px #ee3342;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    margin: 1rem 0;
  }

  .two-columns,
  .three-columns {
    flex-direction: column;
  }

  .signup-form {
    flex-direction: column;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

