* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
header .container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

header h1 {
  font-size: 28px;
  color: #008000;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #333;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #008000;
}

/* Hero */

.hero {
  background:url(./images/premium.avif) ;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background-color: #008000;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #006600;
}



/* Betting Markets Section */
#betting-markets {
  padding: 3rem 2rem;
  background: #f8f9fa;
  max-width: 1200px;
  margin: 0 auto;
}

#betting-markets h2 {
  text-align: center;
   color: #008000;
  margin-bottom: 2rem;
  font-size: 25px;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.market-card {
  background: #f8f9fa;
  padding: 2rem;
  text-align: center;

  border: 1px solid #e0e0e0;

  position: relative;
}



.market-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.market-card h3 {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 0.8rem;
}

.market-card p {
  color: black;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.market-stats {
  background: #ff6b3587;
  color: white;
  padding: 0.4rem 0.8rem;
 
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
}









/* About Section */
.about {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
  color: #008000;
}





/* Footer */
footer {
  background-color: #eaeaea;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

footer p {
  color: #555;
}










/* Live Scores Section */
.scores {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.scores h2 {
  color: #008000;
  margin-bottom: 30px;
}

.score-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.score-card {
  background-color: #f4f4f4;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 300px;
}

.score-card h3 {
  color: #333;
  margin-bottom: 10px;
}

.score-card p {
  color: #555;
}