
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color:  aliceblue;
  color: #333; 
  overflow-x: hidden;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  padding: 10px 15px;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #007BFF;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
  width: 200px;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  color: black;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}


.dropdown:hover .dropdown-menu {
  display: block;
}

nav ul li a:hover {
  color: lightblue; 
  transform: scale(1.1); 
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:  #003366;
  color: #fff;
  padding: 1rem 2rem;
}

.welcome {
  text-align: center;
  color:#003366;
  padding: 3rem 1rem;
  animation: fadeIn 1.5s ease-in-out;
  margin-bottom: 10px;
}

.welcome-button{
  background-color:#ff0; 
  color:black;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.welcome-button:hover {
  background-color: #f90;
  transform: 0.3s  ease;
  transform: translateY(-5px);
}



.info-section .image img {
  max-width:700px;
  max-height: 400px; 
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}
.info-section .image img:hover {
  transform: scale(1.05);
}


.highlight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-in-out;
}

.highlight-content .image {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.highlight-content .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.highlight-content .image img:hover {
  transform: scale(1.1); 
  filter: brightness(1.2); 
}

.highlight-content .text {
  flex: 1;
  margin-left: 2rem;
}

.highlight-content .text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.highlight-content .text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.highlight-content .text .highlight-btn {
  background-color: #ff0;
  color: #333;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-content .text .highlight-btn:hover {
  background-color: #f90;
  transform: translateY(-5px); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}


.player-highlight {
  padding: 5rem 1rem;
  margin-top: 40px;
  
}

.slide-content {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.text {
  padding-left: 10px;
  width: 50%;
  color: black;
}

.text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.text p {
  font-size: 16px;
}

.leagues {
  padding: 2rem;
  text-align: center;
  
}

.league-items {
  display: flex;
  justify-content: space-between; 
  gap: 10px; 
  margin-top: 1rem;
}

.league {
  align-items:center;
  width: 28%; 
  text-align: center;
  padding: 15px;
  background: #ffffff; 
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.league:hover {
  transform: scale(1.08); 
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4); 
}

.league img {
  width: 100%; 
  height: 400px; 
  object-fit: cover; 
 
}
.league img:hover {
  filter: brightness(1.2); 
}

.league p {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.4rem; 
  color: #151515; 
}

.trending-players {
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trending-players h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.trending-players p {
  font-size: 1.2rem;
  color: #555;
  margin-top: 1rem;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 1000px; 
  margin: 0 auto;
  overflow: hidden;
  background-color: blue; 
  padding: 3rem 0;  
  border-radius: 12px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none; 
  width: 100%;
  height: auto;
}

.slide img {
  width: 80%; 
  height: auto;
  max-width: 600px; 
  border-radius: 12px; 
  object-fit: cover;
  transition: transform 0.3s ease-in-out, opacity 1s ease-in-out;
  margin: 0 auto;  
}

.slide.active {
  display: block; 
  animation: fadeIn 1s ease-in-out; 
}

.slideshow-dots {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #333; 
}

.videos {
  position: relative;
  padding: 3rem;
  color: rgb(165, 134, 134);
  overflow: hidden;
}

.videos h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 500px; 
  background-color: rgba(0, 0, 0, 0.5); 
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
}

.description {
  position: relative;
  z-index: 1; 
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6); 
  border-radius: 10px;
}

.description h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.description p {
  font-size: 1.1rem;
  line-height: 1.5;
}

footer {
  background-color: #333;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.subscribe-box {
  flex: 1;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column; 
}

.subscribe-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; 
}
.subscribe-content form {
  display: flex;
  flex-direction: column; 
  margin-bottom: 1rem;
}

.subscribe-content input {
  margin: 0.5rem 0;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
}

.subscribe-content button {
  background-color: #00bcd4;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 300px;
  margin-top: 1rem;
}

.subscribe-content button:hover {
  background-color: #007f8c;
}


.social-icons {
  margin-top: 1rem;
}

.social-icon {
  display: block;
  font-size: 1.2rem;
  color: white;
  margin: 0.5rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #00bcd4;
}

.footer-links {
  margin-top: 2rem;
  text-align: center;
}

.footer-links a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: #00bcd4;
}

p {
  margin-top: 2rem;
  font-size: 0.9rem;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: aliceblue;
}

/* Navigation Bar */
nav {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.page-title {
  background-color: #b4b2b2;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

.page-title h1 {
  color: #2c3035;
  margin: 0;
  font-size: 32px;
}


.players {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.players h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 20px;
 
}


.category {
  margin-bottom: 40px;
  text-align: center;
}

.category h3 {
  color: #003366;
  font-size: 26px;
  margin-bottom: 20px;

}

.player-row {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}
.player-row2{
 text-align: center;
 margin-left: 44px;
 margin-top: 40px;
}
.player-card {
  background-color: #003366;
  border: 1px solid #ddd;
  border-radius: 
  text-align: center;
  padding-bottom: 15px;
  width: 300px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.player-card:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
 
}

.player-card img {
  width: 300px;
  height: auto;
 

}

.player-card p {
  margin: 10px 0 0;
  font-weight: bold;
  font-size: 18px;
  color: white;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.social-media {
  text-align: left;
}

.social-media p {
  margin: 0 0 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer-links {
  text-align: left;
}

.footer-links p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 5px;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
}

footer p {
  margin: 10px 0 0;
  color: #aaa;
}


@media screen and (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }
  
  .subscribe-box, .social-media-box {
      text-align: center;
  }

  .subscribe-content form {
      margin-right: 0;
  }
  
  .social-media-box h2 {
      margin-top: 1rem; 
  }
}.elite-soccer * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.elite-soccer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #8398a1;
}

.elite-container {
  display: flex;
  width: 80%;
  max-width: 1200px;
  background-color: #8fa4a2;
  border: 1px solid #8ca8a7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.elite-left-section {
  flex: 1;
  padding: 40px;
}

.elite-left-section h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.elite-left-section p {
  font-size: 14px;
  margin-bottom: 20px;
}

.elite-left-section form {
  display: flex;
  flex-direction: column;
}

.elite-left-section label {
  font-size: 14px;
  margin-bottom: 5px;
}

.elite-left-section input[type="email"],
.elite-left-section input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.elite-left-section button {
  padding: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 15px;
}

.elite-left-section button:hover {
  background-color: #333;
}

.elite-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.elite-options a {
  color: #000;
  text-decoration: none;
}

.elite-options a:hover {
  text-decoration: underline;
}

.elite-signup-link {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

.elite-signup-link a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.elite-signup-link a:hover {
  text-decoration: underline;
}

.elite-right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0e0e0;
}

.elite-right-section img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}


