* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1117;
  color: #e6edf3;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background-color: #161b22;
  padding: 20px 0;
}

header h1 {
  float: left;
  color: #58a6ff;
  margin-left: 20px;
}

nav {
  float: right;
  margin-right: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #e6edf3;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  color: #58a6ff;
}

header::after {
  content: "";
  display: table;
  clear: both;
}









/* Hero Section */
 .hero {
  background: url("./images/banne.webp") no-repeat center center/cover;
  object-fit: cover;
  background-size: 100% 100%;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.buttons .btn {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.buttons .btn:hover {
  background-color: #e03e00;
} 



/* Section */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #58a6ff;
}



/* News Section */
.news {
  padding: 60px 0;
 background-color: #161b22;
}

.news h2 {
  text-align: center;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.news-grid article {
 background-color: #0d1117;
  padding: 15px;
  border-radius: 5px;
}

.news-grid img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.news-grid h3 {
  margin-bottom: 10px;
}

.news-grid p {
  font-size: 0.9em;
}









/* Matches */
.match-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.match-card {
  background: #161b22;
  padding: 20px;
  border-left: 4px solid #58a6ff;
  border-radius: 8px;
  width: 300px;
}

/* Bowlers */

#bowlers{
  background-color: #161b22;
}
.bowler-list {
  list-style: none;
  font-size: 1.1rem;
  padding-left: 20px;
}

.bowler-list li {
  margin-bottom: 10px;
  padding-left: 10px;
}



/* Footer */
footer {
  background-color: #0d1117;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #8b949e;
}
