: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);
}

/* Privacy specific styles */
.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.privacy-section h3 {
  color: var(--fpl-green);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.privacy-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.privacy-section p:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

/* 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, h3 {
    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;
  }

  .privacy-section h3 {
    font-size: 1.1rem;
  }

  .privacy-section p {
    font-size: 0.9rem;
    padding: 0.6rem;
    line-height: 1.5;
  }
} 