@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&family=Montserrat:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

h1, .main-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

.site-footer {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 400;
  margin-top: 24px;
  padding: 16px 0 0 0;
  font-size: 0.95em;
  color: #888;
  text-align: center;
  border-top: 1px solid #222;
  background: transparent;
}

body {
  background-color: #0f0f0f;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 30px;
  text-align: center;
}

.logo {
  width: 400px;
  max-width: 95vw;
  height: auto;
  margin-bottom: 32px;
  transition: width 0.3s;
}

.main-text {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.sub-text {
  font-size: 1rem;
  font-weight: 400;
  color: #aaaaaa;
  margin-bottom: 30px;
  line-height: 1.5;
}

.main-button {
  background-color: #90FBFF;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main-button:hover {
  background-color: #90FBFF;
  transform: scale(1.05);
}

.main-button:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .logo {
    width: 250px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 15px;
  }
  .logo {
    width: 160px;
    margin-bottom: 18px;
  }
  .main-text {
    font-size: 1.8rem;
  }
  .sub-text {
    font-size: 0.9rem;
  }
  .main-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
  .site-footer {
    font-size: 0.8em;
    padding: 10px 0 0 0;
  }
}
