/* Blog Page CSS */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.page-hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #111;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: #FACC15;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.article-meta {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.article-meta strong {
  color: #fff;
}

.breadcrumb {
  background: #111;
  color: #aaa;
  font-size: 0.95rem;
  padding: 12px 20px;
}

.breadcrumb a {
  color: #FACC15;
  text-decoration: none;
  margin: 0 5px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.section-blog {
  padding: 60px 20px;
  background-color: #000;
}

.full-content h1,
.full-content h2,
.full-content h3,
.full-content h4 {
  color: #FACC15; /* Golden yellow */
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 700;
}

/* Size hierarchy */
.full-content h1 {
  font-size: 2.4rem;
}

.full-content h2 {
  font-size: 2rem;
}

.full-content h3 {
  font-size: 1.8rem;
}

.full-content h4 {
  font-size: 1.6rem;
}


.full-content p,
.full-content li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.full-content ul,
.full-content ol {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.full-content a {
  color: #FACC15;
  text-decoration: none;
}

.full-content a:hover {
  text-decoration: underline;
}

.related-posts {
  margin-top: 50px;
  border-top: 1px solid #222;
  padding-top: 30px;
}

.related-posts h3 {
  font-size: 1.8rem;
  color: #FACC15;
  margin-bottom: 15px;
}

.related-posts ul {
  list-style: none;
  padding-left: 0;
}

.related-posts li {
  margin-bottom: 10px;
}

.related-posts a {
  color: #1DB954;
  text-decoration: none;
}

.related-posts a:hover {
  text-decoration: underline;
}

/* Blog Section */
.blog-section {
  background: var(--bg, #121212);
  color: var(--text, #f0f0f0);
  padding: 3rem 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.6));
  margin-bottom: 2rem;
}

.blog-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold, linear-gradient(135deg, #D4AF37 0%, #FFD700 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted, #a0a0a0);
}

/* Groups */
.groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem; /* ✅ separates from schedule */
}

.group h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary, #FFD700);
  text-align: center;
}

.group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.group ul li {
  background: var(--card-bg, #1a1a1a);
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-dark, #D4AF37);
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group ul li strong {
  color: var(--primary, #FFD700);
}

.group ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

/* Schedule */
.schedule {
  margin-top: 2rem;
}

.schedule h3 {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary, #FFD700);
}

.schedule table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg, #1a1a1a);
  border-radius: 0.8rem;
  overflow: hidden;
}

.schedule th, 
.schedule td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color, #333333);
}

.schedule th {
  background: var(--gradient-gold, linear-gradient(135deg, #D4AF37 0%, #FFD700 100%));
  color: #000;
  font-weight: bold;
}

.schedule tr:hover {
  background: rgba(255, 215, 0, 0.1);
}
/* Tournament Highlights Section */
.tournament-highlights {
  background: var(--card-bg, #1a1a1a);
  color: var(--text, #f0f0f0);
  padding: 50px 20px;
  border-top: 1px solid var(--border-color, #333);
}

.tournament-highlights h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary, #FFD700);
  margin-bottom: 30px;
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-card {
  background: var(--dark, #0a0a0a);
  border: 1px solid var(--border-color, #333);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0,0,0,0.6));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.highlight-card h3 {
  color: var(--secondary, #00BFFF);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 1rem;
  color: var(--text-muted, #a0a0a0);
  line-height: 1.5;
}

.highlight-note {
  margin-top: 30px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text, #f0f0f0);
  line-height: 1.6;
}
/* Key Matchups Section */
.key-matchups {
  background: var(--bg, #121212);
  color: var(--text, #f0f0f0);
  padding: 50px 20px;
}

.key-matchups h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary, #FFD700);
}

.key-matchups p {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-muted, #a0a0a0);
  font-size: 1rem;
  line-height: 1.6;
}

.matchup-card {
  background: var(--card-bg, #1a1a1a);
  border: 1px solid var(--border-color, #333);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease-in-out;
}

.matchup-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary, #FFD700);
}

.matchup-card h3 {
  font-size: 1.3rem;
  color: var(--secondary, #00BFFF);
  margin-bottom: 10px;
}

.matchup-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text, #f0f0f0);
}

.matchup-card .highlight {
  color: var(--primary, #FFD700);
  font-weight: bold;
}
.highlights {
  background: #121212;
  color: #f0f0f0;
  padding: 50px 20px;
  border-top: 2px solid var(--primary-dark);
}

.highlights h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.highlight-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.highlight-list li {
  background: var(--card-bg);
  border-left: 5px solid var(--primary);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-list li:hover {
  transform: translateY(-5px);
  background: #1e1e1e;
}

.highlight-list strong {
  color: var(--primary);
}
.mahadev-transform {
  background: #121212;
  color: var(--text);
  padding: 60px 20px;
  border-top: 2px solid var(--primary-dark);
}

.mahadev-transform h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.mahadev-transform .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #1e1e1e;
}

.feature-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}
.asia-cup-experience {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg);
  color: var(--text);
}

.asia-cup-experience h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.asia-cup-experience p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.experience-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.experience-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transform: translateY(-6px);
}

.experience-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.experience-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.responsible-betting {
  padding: 60px 20px;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.responsible-betting h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.responsible-betting p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.responsible-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.responsible-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.responsible-item:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.responsible-item .icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.responsible-item h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.responsible-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.closing-text {
  font-style: italic;
  color: var(--secondary);
  font-size: 1.1rem;
}

.betting-strategies {
    margin: 40px 0;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
  }

  .betting-strategies h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
  }

  .betting-strategies p {
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .strategy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
  }

  .strategy-list li:last-child {
    border-bottom: none;
  }

  .strategy-list .icon {
    font-size: 1.4rem;
    color: var(--primary-dark);
    min-width: 28px;
    text-align: center;
  }

  .strategy-list strong {
    color: var(--primary);
  }
  /* Global section styling */
section {
  padding: 3rem 2rem;
  margin: 2rem 0;
  border-radius: 1.5rem;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  color: var(--text);
}

/* Headings */
section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: center;
  font-weight: 700;
}

/* Paragraphs */
section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: justify;
}

/* ----------------- Global Appeal Section ----------------- */
.appeal-list {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  list-style: none;
}

.appeal-list li {
  margin: 0.6rem 0;
  font-size: 1.05rem;
  padding: 0.7rem 1rem;
  border-left: 4px solid var(--primary);
  background: rgba(255, 215, 0, 0.05);
  border-radius: 0.5rem;
  transition: 0.3s;
}

.appeal-list li:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateX(5px);
}

/* ----------------- Mahadev Standout Section ----------------- */
.standout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.standout-item {
  background: var(--gradient-dark);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

.standout-item:hover {
  transform: translateY(-6px);
  background: var(--gradient-gold);
  color: var(--dark);
}

.standout-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.standout-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ----------------- Conclusion Section ----------------- */
.conclusion {
  border-top: 2px solid var(--border-color);
  background: linear-gradient(135deg, #1a1a1a, #121212);
}

.conclusion p {
  text-align: center;
  font-size: 1rem;
}

.conclusion strong {
  color: var(--primary);
}

.responsible-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.8rem;
  background: rgba(255, 0, 0, 0.08);
  color: #ff6b6b;
  font-weight: 600;
  font-size: 0.95rem;
  
 
}

/* ===== Related Blogs Section (Unique Names) ===== */
.mb-related-blogs {
  background: var(--card-bg, #1a1a1a);
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0,0,0,0.6));
  margin-top: 50px;
}

.mb-related-blogs h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary, #FFD700);
  text-align: center;
  position: relative;
}

.mb-related-blogs h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-dark, #D4AF37);
  margin: 10px auto 0;
  border-radius: 2px;
}

.mb-blog-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.mb-blog-card {
  display: block;
  padding: 20px;
  background: var(--bg, #121212);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text, #f0f0f0);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.mb-blog-card h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  color: var(--text, #f0f0f0);
  transition: color 0.3s ease;
}

/* Hover Effects */
.mb-blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary, #FFD700);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.mb-blog-card:hover h4 {
  color: var(--primary, #FFD700);
}


/* ----------------- Mahadev tags-section ----------------- */
.tags-section {
  margin-top: 30px;
  padding: 15px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tags-section h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-list a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.9rem;
  background: var(--gradient-dark);
  color: var(--text);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tags-list a:hover {
  background: var(--gradient-gold);
  color: var(--dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.login-issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.issue-box {
  background: var(--card-bg, #1a1a1a);
  border: 1px solid var(--border-color, #333);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.issue-box h4 {
  color: var(--primary, #FFD700);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.issue-box p {
  color: var(--text-muted, #ccc);
  font-size: 0.95rem;
  line-height: 1.6;
}

.issue-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

/* Table Container */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-family: 'Arial', sans-serif;
  background-color: #1a1a1a; /* dark card background */
  color: #f0f0f0; /* light text */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Table Header */
table thead tr {
  background: linear-gradient(135deg, #FFD700, #D4AF37); /* gold gradient header */
  color: #0a0a0a; /* dark text for contrast */
  text-align: left;
  font-weight: bold;
}

table thead th {
  padding: 15px;
  font-size: 16px;
}

/* Table Body */
table tbody tr {
  border-bottom: 1px solid #333333;
  transition: background 0.3s ease;
}

table tbody tr:nth-child(even) {
  background-color: #121212; /* alternating row color */
}

table tbody tr:hover {
  background-color: #FFD700; /* gold hover effect */
  color: #0a0a0a;
}

table tbody td {
  padding: 15px;
  font-size: 15px;
  vertical-align: top;
}

/* Links in Table */
table a {
  color: #00BFFF; /* secondary color */
  text-decoration: none;
  font-weight: 500;
}

table a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive Table for Mobile */
@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    display: none;
  }

  tbody tr {
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding: 10px;
  }

  tbody td {
    padding: 10px;
    position: relative;
    padding-left: 50%;
    text-align: left;
  }

  tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 15px;
    font-weight: bold;
    color: #FFD700;
  }
}

.recent-blogs {
  padding: 50px 0;
  background: #121212;
  color: #f0f0f0;
}

.recent-blogs h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.blogs-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 calc(25% - 15px); /* 4 cards in a row with gaps */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFD700;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.blog-content {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.blog-content h3 a {
  color: #FACC15;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .blog-card {
    flex: 1 1 calc(50% - 15px); /* 2 cards per row on medium screens */
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 1 1 100%; /* 1 card per row on small screens */
  }
}


