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

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #0b0c0f;
  color: #ffffff;
  line-height: 1.5;
}

a {
  color: #1DC942;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: rgba(29, 201, 66, 0.75);
}

.background {
  background-color: #0b0c0f;
  display: flex;
  justify-content: center;
  padding: 32px;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}

.banner {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 32px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

h1 {
  font-size: 40px;
  color: #1DC942;
  margin-bottom: 8px;
}

.subtitle {
  color: #ccc;
  font-size: 17.6px;
  text-align: center;
  margin-bottom: 32px;
}

.requirements {
  background-color: #121317;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 32px;
  width: 100%;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.requirements h2,
.requirements h3 {
  color: #1DC942;
  margin-bottom: 12px;
}

.requirements ul {
  list-style: none;
  padding-left: 0;
}

.requirements li {
  padding-left: 22.4px;
  margin-bottom: 9.6px;
  position: relative;
}

.requirements li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1DC942;
  font-size: 19.2px;
  line-height: 1;
}

.application-form {
  background-color: #121317;
  padding: 32px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.application-form h2 {
  text-align: center;
  color: #1DC942;
  margin-bottom: 16px;
}

.application-form input,
.application-form textarea,
.application-form select {
  background-color: #1c1e24;
  border: 1px solid #2e2f36;
  border-radius: 6px;
  padding: 12.8px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  outline: none;
  border-color: #1DC942;
  box-shadow: 0 0 0 2px rgba(29, 201, 66, 0.3);
}

.application-form button {
  padding: 12.8px;
  background-color: #1DC942;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.application-form button:hover {
  background-color: rgba(29, 201, 66, 0.75);
  transform: translateY(-1px);
}

.application-form button:active {
  transform: scale(0.98);
}

.application-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.application-form select:invalid {
  color: #757575;
}

.consent {
  font-size: 14.4px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.consent input[type="checkbox"] {
  accent-color: #1DC942;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.footer {
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
  color: #555;
  font-size: 14.4px;
  border-top: 1px solid #1f1f1f;
}

.footer p {
  margin-bottom: 8px;
  color: #888;
}

.studio-logo {
  max-height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.studio-logo:hover {
  opacity: 1;
}

.pre-submit-info {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: #111;
  padding: 24px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 1px solid #222;
}

.info-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  filter: brightness(1.2);
  opacity: 0.8;
}

.info-text h3 {
  margin-bottom: 8px;
  font-size: 24px;
  color: #fff;
}

.info-text p {
  margin: 0 0 16px;
  color: #ccc;
  font-size: 16px;
  line-height: 1.4;
}

.download-links a {
  display: inline-block;
  margin-right: 16px;
  text-decoration: none;
  color: #1DC942;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.download-links a:hover {
  opacity: 0.8;
}