/* Global reset and box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 60px 0 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 16px;
}

/* Navbar Styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 2rem;
  background-color: #1e1e1e;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav .logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #00ff99;
  border-bottom-color: #00ff99;
  transform: scale(1.05);
  outline: none;
}

.menu-toggle {
  display: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: #ddd;
}

/* Responsive nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    max-width: 280px;
    background: #1e1e1e;
    padding: 1.5rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.9);
    border-radius: 0 0 10px 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 1.2rem;
  }
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #232323;
  text-align: center;
  padding: 0 1rem;
  color: #00ff99;
  user-select: none;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,255,153,0.7) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.3rem;
  font-weight: 900;
  text-shadow: 0 0 10px #00ff99;
}

.typing-subtitle {
  font-size: 1.5rem;
  height: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0BDA51;
  min-height: 2rem;
}

.hero-button {
  padding: 14px 32px;
  background-color: #0BDA51;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  color: #121212;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-button:hover,
.hero-button:focus {
  background-color: #09a23c;
  outline: none;
}

.scroll-down {
  margin-top: 2rem;
  font-size: 3rem;
  color: #00ff99;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(15px); }
  60% { transform: translateY(7px); }
}

.social-icons {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  filter: brightness(1) invert(0.8);
  transition: filter 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px #00ff99);
  outline: none;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-news {
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 1rem;
}

.featured-news h2 {
  color: #0BDA51;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px #00ff99;
}

.featured-news article {
  background: #1a1a1a;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px #0BDA51aa;
  color: #ddd;
  text-align: center;
}

.featured-news article h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.featured-news article p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.featured-news article a {
  color: #00ff99;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.featured-news article a:hover,
.featured-news article a:focus {
  border-bottom-color: #00ff99;
  outline: none;
}

.sponsors-carousel {
  background: #111;
  padding: 2rem 1rem;
  margin: 0 auto 60px;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 0 15px #0BDA51aa;
  text-align: center;
}

.sponsors-carousel h2 {
  color: #0BDA51;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 5px #00ff99;
}

.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}

.carousel img {
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.carousel img:hover {
  filter: drop-shadow(0 0 1px #00ff99);
}

.newsletter {
  max-width: 400px;
  margin: 3rem auto;
  background-color: #1e1e1e;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(11, 218, 81, 0.3);
  text-align: center;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.newsletter h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: #0BDA51;
}

.newsletter label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ddd;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 2px solid #333;
  background-color: #121212;
  color: #e0e0e0;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.newsletter input[type="email"]:focus {
  border-color: #0BDA51;
  box-shadow: 0 0 8px #0BDA51;
}

.newsletter button {
  margin-top: 1.2rem;
  width: 100%;
  padding: 0.75rem 0;
  border-radius: 8px;
  border: none;
  background-color: #0BDA51;
  font-size: 1.2rem;
  font-weight: 700;
  color: #121212;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover,
.newsletter button:focus {
  background-color: #09a23c;
  outline: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
  background-color: #111;
  user-select: none;
}

/* Responsive tweaks for mobile */
@media (max-width: 480px) {
  body {
    padding: 40px 10px 0 10px;
    font-size: 14px;
  }

  nav {
    height: 80px;
    padding: 0 1rem;
  }

  .nav-right {
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero {
    height: 400px;
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .typing-subtitle {
    font-size: 1.1rem;
    height: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .scroll-down {
    font-size: 2.2rem;
  }

  .featured-news {
    margin: 40px 0 20px;
    padding: 0 0.5rem;
  }

  .featured-news h2 {
    font-size: 1.6rem;
  }

  .featured-news article {
    padding: 1rem 1.2rem;
  }

  .featured-news article h3 {
    font-size: 1.3rem;
  }

  .featured-news article p {
    font-size: 1rem;
  }

  .sponsors-carousel {
    padding: 1.5rem 0.8rem;
    max-width: 100%;
  }

  .sponsors-carousel h2 {
    font-size: 1.6rem;
  }

  .carousel img {
    height: 60px;
  }

  .newsletter {
    max-width: 100%;
    margin: 2rem 1rem;
    padding: 1.5rem 1.5rem;
  }

  .newsletter h2 {
    font-size: 1.5rem;
  }

  .newsletter label {
    font-size: 0.9rem;
  }

  .newsletter input[type="email"] {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  .newsletter button {
    font-size: 1rem;
    padding: 0.65rem 0;
  }
}

/* News Container */
.news-container {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* News Article Cards */
.news-article {
  background-color: #222222; /* dark card bg */
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border-left: 6px solid #00ff99; /* bright green border */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 255, 153, 0.15);
  transition: box-shadow 0.3s ease;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc; /* light text */
}

.news-article:hover {
  box-shadow: 0 14px 40px rgba(0, 255, 153, 0.3);
}

.news-article h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #00cc77; /* bright green accent */
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.news-article .date {
  font-size: 0.9rem;
  color: #7ccc7a; /* lighter green */
  margin-bottom: 1rem;
}

.news-article p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #a5d6a7; /* lighter green for readability */
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .news-article {
    padding: 1rem 1.5rem;
    max-width: 90%;
  }

  .news-article h2 {
    font-size: 1.6rem;
  }

  .news-article p {
    font-size: 1rem;
  }
}


h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c0ffc0;
  margin-top: 20px; /* subtle spacing */
  margin-bottom: 1rem;
  border-left: 3px solid #c0ffc0;
  padding-left: 0.75rem;
}
.roster-page {
  padding-top: 30px; /* subtle offset from navbar */
}


/* Form Styles */
.application-form {
  max-width: 500px;
  margin: 2rem auto;
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* subtle shadow */
}

.application-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.application-form label {
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}

.application-form input,
.application-form select {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid #333;
  background-color: #222;
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.application-form input:focus,
.application-form select:focus {
  border-color: #8fc0a9; /* soft highlight */
  outline: none;
  background-color: #2a2a2a;
}

/* Submit Button */
.application-form button[type="submit"] {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: none;
  background-color: #2a2a2a;
  color: #e0e0e0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.application-form button[type="submit"]:hover {
  background-color: #3a3a3a;
}

/* Main container */
.roster-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* responsive columns */
  gap: 1.5rem;
}

/* Cards */
.card {
  background-color: #1b1b1b;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 255, 153, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 153, 0.35);
}

/* Profile image */
.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 2px solid #00ff99;
}

/* Name and role */
.name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.role {
  font-size: 0.85rem;
  color: #b0b0b0;
  margin-bottom: 0.5rem;
}

.sub-role {
  font-size: 0.75rem;
  color: #8fc0a9;
}

/* Social icons under role */
.socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.socials i {
  font-size: 1.1rem;
  color: #b0b0b0;
  transition: color 0.2s ease;
}

.socials i:hover {
  color: #00ff99;
}

/* Ensure responsive spacing */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* About Card */
.about-card {
  max-width: 650px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background-color: #222;   /* dark card bg */
  border-left: 6px solid #00ff99;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 255, 153, 0.15);
  transition: box-shadow 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 14px 40px rgba(0, 255, 153, 0.3);
}

.about-content {
  max-width: 540px;
  margin: 0 auto;
  color: #ccc;              /* light gray text */
}

.about-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00cc77;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #bbb;
  max-width: 100%;
  word-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .about-card {
    padding: 1rem 1.5rem;
    max-width: 90%;
  }

  .about-content h1 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/* Form Container */
.application-form {
  max-width: 500px;
  margin: 80px auto;
  padding: 2rem;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 255, 153, 0.15);
}

.application-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #00ff99;
  text-shadow: 0 0 8px rgba(0, 255, 153, 0.4);
}

/* Form Fields */
.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #333;
  border-radius: 10px;
  background: #1e1e1e;
  color: #e6e6e6;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

/* Dropdown text fix */
.form-group select option {
  background: #1e1e1e;
  color: #e6e6e6;
  padding: 0.5rem;
}

/* Focus / hover */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00ff99;
  box-shadow: 0 0 12px rgba(0, 255, 153, 0.4);
}

/* Floating labels */
.form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
  background: transparent;
}

/* Label moves up when field has value */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.8rem;
  color: #00ff99;
  background: #1e1e1e;
  padding: 0 6px;
  border-radius: 4px;
}

/* Button */
.application-form button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #00ff99, #0bd851);
  color: #121212;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.application-form button:hover {
  background: linear-gradient(135deg, #0bd851, #00ffcc);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 255, 153, 0.3);
}

/* Contact Card Styling */
.contact {
  max-width: 650px;
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  background-color: #222;   /* dark card bg */
  border-left: 6px solid #00ff99;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 255, 153, 0.15);
  transition: box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 300px;
}

.contact:hover {
  box-shadow: 0 14px 40px rgba(0, 255, 153, 0.3);
}

.contact h2 {
  color: #00cc77;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.contact-list {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  word-wrap: break-word;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Change all links inside contact to lime */
.contact-list a {
  color: #00ff99;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-list a:hover,
.contact-list a:focus {
  color: #00cc77;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .contact {
    padding: 1rem 1.5rem;
    max-width: 90%;
  }

  .contact h2 {
    font-size: 1.6rem;
  }

  .contact-list {
    font-size: 1rem;
  }
}

/* Sponsors Section */
.sponsors-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
  color: #00ff99; /* changed from #0BDA51 to #00ff99 */
}

.sponsors-container h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00ff99; /* changed */
}

.sponsor-intro {
  font-size: 1.2rem;
  color: #bbb; /* changed from #7ccc7a */
  margin-bottom: 3rem;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 1rem;
}

.sponsor-card {
  background-color: #2b2b2b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 255, 153, 0.3); /* changed shadow to new green */
  transition: transform 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 255, 153, 0.6); /* changed */
}

.sponsor-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.sponsor-card h3 {
  margin: 0.5rem 0;
  color: #00ff99; /* changed from #0BDA51 */
}

.sponsor-card p {
  font-size: 0.95rem;
  color: #bbb; /* changed from #7ccc7a */
}

/* Upcoming Matches Section */
.upcoming-matches {
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 1rem;
}

.upcoming-matches h2 {
  color: #00ff99;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 5px #00ff99;
}

.upcoming-matches {
  background: #121212;
  border: 1px solid #0BDA51aa;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.2rem;
  color: #eee;
  text-align: center;
  box-shadow: 0 0 8px rgba(11, 218, 81, 0.3);
  transition: transform 0.2s ease;
}

.upcoming-matches {
  transform: translateY(-3px);
}

.upcoming-matches {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #00ff99;
}

.upcoming-matches .date {
  font-size: 0.95rem;
  color: #7ccc7a;
  margin-bottom: 0.5rem;
}

.upcoming-matches p {
  margin: 0.4rem 0;
}

.upcoming-matches .game {
  font-size: 0.95rem;       /* same as .date */
  margin-bottom: 0.5rem;    /* same as .date */
  color: #00ff99;           /* brighter green than .date */
}


.match-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.match-card {
  background: #111;
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.match-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.match-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.match-card .date {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

.match-card .teams {
  font-weight: bold;
  margin: 5px 0;
}

.match-card .vs {
  color: #ff5252;
  margin: 0 6px;
}

.match-card .location {
  font-size: 13px;
  color: #aaa;
}