body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #cc0000, #000000);
  background-image: url("bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

li {
  text-align: left;
}

form input, form button {
  /*display: block;*/
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

form button {
  background-color: #cc0000;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

form button:hover {
  background-color: #990000;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-height: 98%;
  max-width: 650px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin-left: 12px;
  margin-right: 12px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.captcha-box img {
  border: 1px solid #ccc;
  height: 40px;
}

.captcha-box button {
  background: #eee;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  color: black;
}

.captcha-box button:hover {
  color: white;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid #ccc;  
}

.checkbox-wrapper input[type="checkbox"] {
  transform: scale(2.0);
  cursor: pointer;
  width: auto;
  margin-left: 12px;
  margin-top: 3px;
}

.checkbox-wrapper label {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-content {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.modal button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Audi F1 Styles */
.wm-subtitle {
  font-size: 0.6em;
  color: #cc0000;
  display: block;
  margin-top: 5px;
}

h1 {
  line-height: 1.2;
}

.container h1 {
  font-size: 1.8rem;
}

/* Soccer ball animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ball {
  display: inline-block;
  animation: bounce 2s infinite;
  font-size: 3rem;
}
