/* 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;
}

.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 h4 {
  color: #FACC15;
  font-size: 1.6rem;
  margin-top: 30px;
}

.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 {
  margin-top: 40px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.related-blogs h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.blog-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.blog-card {
  display: block;
  padding: 15px;
  background: var(--gradient-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.blog-card h4 {
  font-size: 1rem;
  font-weight: 500;
}

.blog-card:hover {
  background: var(--gradient-gold);
  color: var(--dark);
  border-color: var(--primary-dark);
  transform: translateY(-4px);
}

/* ----------------- 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);
}
