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

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Header */
header {
  height: 100px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header nav .logo a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  column-gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  transition: color .25s ease;
}

nav ul li a:hover {
  color: #0ba2c0;
}

nav .menu {
  display: flex;
  align-items: center;
  column-gap: 48px;
}

nav .menu .menu-button {
  color: #0ba2c0;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 56px;
  transition: all .25s ease;
}

nav .menu .menu-button:hover {
  background-color: #0ba2c0;
  color: white;
}

/* Content */
.content {
  padding: 100px 0;
  text-align: center;
}

.content h1 {
  font-size: 60px;
  line-height: 1.2;
  word-break: break-word;
}

.content p {
  font-size: 24px;
  margin-top: 32px;
}

.content .links {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  column-gap: 16px;
  flex-wrap: wrap;
}

.content .links a {
  background-color: white;
  padding: 20px;
  width: 280px;
  color: black;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  border-radius: 56px;
  transition: all .25s ease-in;
}

.content .links a:hover {
  background-color: #0ba2c0;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}

.form-wrapper {
  max-width: 450px;
  margin: auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-wrapper form input,
.form-wrapper form button {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 14px;
  margin-bottom: 14px;
  border: none;
  outline: none;
}

.form-wrapper form input {
  background-color: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.3s ease;
}

.form-wrapper form input:focus {
  box-shadow: 0 0 0 3px #0ba2c0;
}

.form-wrapper form button {
  background-color: #0ba2c0;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-wrapper form button:hover {
  background-color: #0888a6;
}

.signup-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-button:hover {
  background-color: white;
  color: #0ba2c0;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.button-wrapper {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

#ip-warning {
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 36px;
  }

  .content p {
    font-size: 16px;
  }

  .content .links a {
    width: 100%;
  }

  .menu .menu-button {
    display: none;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .content {
    padding-top: 50px;
  }

  .content .links {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }

  .content .links a {
    padding: 14px;
  }
}
