:root {
  --fpl-purple: #37003c;
  --fpl-pink: #ff2882;
  --fpl-green: #00ff87;
  --fpl-light-purple: #461d4b;
  --fpl-gradient: linear-gradient(45deg, #00ff87 0%, #05f0ff 100%);
}

@font-face {
  font-family: 'Radikal';
  src: url('fonts/Radikal.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Radikal', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--fpl-purple);
  color: white;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: 
    linear-gradient(135deg, transparent 0%, var(--fpl-purple) 100%),
    linear-gradient(45deg, var(--fpl-green) 0%, transparent 40%);
  overflow: hidden;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 2rem 0;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--fpl-gradient);
  border-radius: 2px;
}

h2 {
  font-size: 2rem;
  color: var(--fpl-green);
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 135, 0.1);
}

/* Content Section Styles */
.content-section {
  background: rgba(70, 29, 75, 0.8);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--fpl-green);
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: white;
  font-family: 'Radikal', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fpl-green);
  background: rgba(255, 255, 255, 0.1);
}

.submit-button {
  background: var(--fpl-gradient);
  border: none;
  padding: 1rem 2rem;
  color: white;
  font-family: 'Radikal', sans-serif;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 135, 0.3);
}

/* Twitter Link */
.twitter-link {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: var(--fpl-gradient);
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 2rem;
}

.twitter-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.twitter-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 135, 0.3);
}

/* Sponsor circles */
.sponsor-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 4.5rem;
  right: 2rem;
  z-index: 2;
}

.sponsor-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fpl-purple);
  border: 2px solid var(--fpl-green);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sponsor-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: var(--fpl-gradient);
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.sponsor-circle:hover::before {
  opacity: 1;
}

/* Footer */
.footer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu {
  display: flex;
  gap: 1rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--fpl-green);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  h1, h2 {
    text-align: center;
  }

  h1 {
    display: block;
    text-align: center;
    width: 100%;
  }

  h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .sponsor-container {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    width: 90%;
    margin: 1rem auto;
    justify-items: center;
    position: relative;
    top: 0;
    right: 0;
  }

  .sponsor-circle {
    width: 35px;
    height: 35px;
  }

  .twitter-link {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    max-width: fit-content;
  }

  .content-section {
    padding: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .sponsor-circle {
    width: 30px;
    height: 30px;
  }

  .content-section {
    padding: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .submit-button {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

/* Thank you message styles */
.thanks-message {
  text-align: center;
  padding: 2rem 0;
}

.thanks-message p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.return-home {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: var(--fpl-gradient);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.return-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 135, 0.3);
}

select#subject {
  background-color: var(--fpl-light-purple);
  color: white;
  border: 1px solid var(--fpl-green);
  border-radius: 8px;
  padding: 0.8rem;
  width: 100%;
  cursor: pointer;
}

select#subject option {
  background-color: var(--fpl-purple);
  color: white;
}

/* Style for the selected option */
select#subject option:checked {
  background-color: var(--fpl-light-purple);
}

/* Style for hover state */
select#subject option:hover {
  background-color: var(--fpl-light-purple);
} 