.site-header {
  background: #0d1224;
  border-bottom: 1px solid #1f2547;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 22px;
  font-weight: 700;
  color: #6f7cff;
  text-decoration: none;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #eaeaf0;
  font-weight: 500;
}

.nav a:hover {
  color: #6f7cff;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b0f1a;
  color: #eaeaf0;
}

.header {
  text-align: center;
  padding: 40px 20px;
}

.header h1 {
  font-size: 2.4rem;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  padding: 20px;
}

.nav-grid a {
  background: linear-gradient(135deg, #5f5cff, #8b7cff);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
}

.seo-text {
    font-family: 'Inter', sans-serif;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  color: #b9bdd6;
}

.tips {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  display: grid;
  gap: 15px;
}

.tip {
  background: #151a2e;
  padding: 20px;
  border-radius: 16px;
  display: grid;
  gap: 8px;
}

.tip.win {
  border-left: 6px solid #2ecc71;
  background: #0f3325;
}

.tip.loss {
  border-left: 6px solid #e74c3c;
  background: #331010;
}

.league {
  font-size: 13px;
  opacity: 0.7;
}

.match {
  font-size: 18px;
  font-weight: 600;
}

.prediction {
  font-size: 15px;
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.result {
  font-weight: 700;
  text-transform: uppercase;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  opacity: 0.5;
}

.blog-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.blog-card {
  background: #151a2e;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.blog-card h2 {
  margin: 0;
}

.blog-card a {
  text-decoration: none;
  color: #eaeaf0;
}

.blog-card a:hover {
  color: #6f7cff;
}

.blog-date {
  font-size: 14px;
  opacity: 0.6;
}

.blog-post {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}

.blog-post h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.blog-content {
  line-height: 1.8;
  font-size: 17px;
  color: #d8d8e8;
}

