* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  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;
}

header h1 {
  font-size: 28px;
  color: #ffcc00;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #555;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(to right, #ffffff, #f1f1f1);
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Records Section */
.records {
  padding: 4rem) 0;
  background-color: #ffffff;
}

.records h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.record-card {
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  /* transition: transform 0.3s ease; */

  cursor: pointer;
}


.record-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.record-info {
  padding: 1rem;
}

.record-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}


/* Live Updates */
.live-updates {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.live-updates h2 {
  color: #222;
  margin-bottom: 10px;
}

/* Matches */
.top-matches {
  background-color: #ffffff;
  padding: 60px 0;
}

.top-matches h2 {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}

.match-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #f4f4f4;
  padding: 20px;
  width: 250px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s;
   border-left: 3px solid #e6b800;
}

.card:hover {
  transform: translateY(-1px);
}

.card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}



/* About */
.about {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.about h2 {
  color: #222;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}

footer .container{
  display: flex;
  justify-content: center;
  align-items: center;
}


footer p {
  color: #555;
  margin-bottom: 20px;
}
