/* ==========================================================================
   Mahadev Book Premium Black Theme v2
   Updated for keyword-rich content (Login, ID, App, Registration, Official Site)
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #FFD700;
  --primary-dark: #D4AF37;
  --secondary: #00BFFF;
  --dark: #0a0a0a;
  --light: #f0f0f0;
  --gray: #a0a0a0;
  --border: #2a2a2a;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  --bg: #121212;
  --card-bg: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --border-color: #333333;
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
}

/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
}

p, li, a, span {
  overflow-wrap: anywhere;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

section {
  padding-block: 80px;
}

@media (max-width: 768px) {
  section {
    padding-block: 60px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding-block: 12px;
  padding-inline: clamp(16px, 3vw, 28px);
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  white-space: normal;              /* allow wrapping */
  word-break: break-word;           /* safety for long keyword labels */
}

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

/* Auth Button Variants (header) */
.btn-login {
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding-block: 8px;
  padding-inline: clamp(12px, 2.5vw, 20px);
}

.btn-register {
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding-block: 8px;
  padding-inline: clamp(12px, 2.5vw, 20px);
}

/* ---------- Section Headings ---------- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--light);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  translate: -50% 0;
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.section-title p {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 30px auto 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.navbar {
  flex: 1 1 auto;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.navbar a:hover {
  color: var(--primary);
}

/* Remove hardcoded active class from HTML */
.navbar a.active {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}
.navbar ul li a.active {
  color: var(--primary);
  background-color: rgba(250, 204, 21, 0.1); /* Optional: matches your hover effect */
  font-weight: 600;
}
.menu-list a.active {
  background-color: rgba(250, 204, 21, 0.1);
  border-radius: 6px;
  color: var(--primary);
  font-weight: 700;
}



/* Add this to set active state based on current page */
.navbar a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 0 auto;
}

.auth-buttons .btn {
  font-size: 14px;
  padding: 8px 14px;
  white-space: nowrap;
  min-width: max-content;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--light);
  order: 3;
}

/* ----- Header Responsive ----- */
@media (max-width: 1100px) {
  .navbar ul {
    gap: 12px;
  }
  
  .auth-buttons .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .navbar ul {
    gap: 10px;
    font-size: 14px;
  }
  
  .auth-buttons {
    gap: 8px;
  }
  
  .auth-buttons .btn {
    padding: 7px 10px;
    font-size: 12px;
  }
}


/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--gradient-dark);
  color: white;
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1 1 480px;
  min-width: 280px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light);
}

.hero-content p {
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 30px;
  color: #cbd5e1;
}

.hero-content p span {
  color: var(--primary);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--light);
}

.feature-item i {
  color: var(--primary);
  font-size: 20px;
}

.hero-image {
  flex: 1 1 400px;
  padding: 20px;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,300px), 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--light);
}

.feature-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   SPORTS INSIGHTS GRID
   ========================================================================== */
.sports-betting {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.sports-betting::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(0, 191, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,250px), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sport-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sport-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sport-card:hover img {
  transform: scale(1.05);
}

.sport-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sport-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--light);
}

.sport-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.5;
}

/* ==========================================================================
   STRATEGY HUB (casino-section reused)
   ========================================================================== */
.casino-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.casino-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.casino-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.casino-content {
  flex: 1 1 480px;
  min-width: 280px;
}

.casino-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
  color: var(--light);
}

.casino-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 25px;
}

.casino-features {
  list-style: none;
  margin-bottom: 30px;
}

.casino-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
  font-size: 16px;
  line-height: 1.6;
}

.casino-features i {
  color: var(--primary);
}

.casino-image {
  flex: 1 1 400px;
  position: relative;
}

.casino-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.casino-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 191, 255, 0.2);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
  height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  min-width: min(450px, 90%);
  border: 1px solid var(--border);
  position: relative;
  scroll-snap-align: start;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(255, 215, 0, 0.1);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.user-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.user-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--light);
}

.user-info span {
  color: var(--gray);
  font-size: 14px;
}

.testimonial-text p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--gray);
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.rating {
  color: var(--primary);
}

/* ==========================================================================
   CTA + FAQ PREVIEW (home page)
   ========================================================================== */
.cta-section {
  background: var(--gradient-dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 15px;
  color: var(--light);
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--gray);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cta {
  background: var(--gradient-gold);
  color: #1a1a1a;
  font-weight: 600;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

/* --- Scoped FAQ list inside CTA section --- */
.cta-section .faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.cta-section .faq-list .faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.cta-section .faq-list .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.cta-section .faq-list .faq-item h3 {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.cta-section .faq-list .faq-item h3::before {
  content: '\f059';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  color: var(--primary);
  font-size: 22px;
}

.cta-section .faq-list .faq-item p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.cta-section .faq-list .faq-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.cta-section .faq-list .faq-item a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   GLOBAL FAQ ACCORDION (inner FAQ page)
   ========================================================================== */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 40px;
}

.group-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.faq-accordion .faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: var(--bg);
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
  padding: 20px;
  max-height: 1000px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--light);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  outline: none;
}

/* ==========================================================================
   CONTACT INFO BLOCKS
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-box {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  height: fit-content;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-chat {
  background-color: #25D366;
  color: #ffffff;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  white-space: normal;
}

.btn-chat:hover {
  background-color: #1ebd5a;
  transform: translateY(-2px);
}

/* ==========================================================================
   STRATEGY LIST ITEMS
   ========================================================================== */
.strategy-list {
  list-style-type: none;
  margin: 20px 0;
}

.strategy-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px dashed var(--border-color);
  position: relative;
  line-height: 1.6;
}

.strategy-list li:last-child {
  border-bottom: none;
}

.strategy-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary);
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--gradient-dark);
  color: white;
  padding-block: 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  color: var(--light);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-hero p {
  font-size: 20px;
  color: #cbd5e1;
}

/* ==========================================================================
   TIMELINE (About Page)
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  inset-block: 0;
  width: 4px;
  background: var(--primary);
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-year {
  width: 100px;
  height: 100px;
  background: var(--primary);
  color: #1a1a1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.timeline-content {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  width: calc(50% - 30px);
  margin-top: 10px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary);
}

.timeline-content p {
  color: var(--gray);
}

/* ==========================================================================
   TEAM GRID
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,250px), 1fr));
  gap: 30px;
}

.team-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5px;
  background: var(--gradient-gold);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--primary);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--light);
}

.team-card p {
  color: var(--gray);
  margin-bottom: 15px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.team-social a:hover {
  background: var(--primary);
  color: #1a1a1a;
  transform: translateY(-3px);
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-weight: 500;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-gold);
  color: #1a1a1a;
  border-color: var(--primary);
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.featured-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.featured-content {
  padding: 30px;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 14px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,350px), 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 22px;
  margin: 15px 0;
  color: var(--light);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
}

.read-more:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-btn {
  display: grid;
  place-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.page-btn.active,
.page-btn:hover {
  background: var(--gradient-gold);
  color: #1a1a1a;
  border-color: var(--primary);
}

/* ==========================================================================
   PREDICTION CARDS (inner predictions page)
   ========================================================================== */
.prediction-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,380px), 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.prediction-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid var(--border);
  position: relative;
  animation: fadeIn 0.8s;
}

.prediction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.prediction-header {
  padding: 20px;
  background: #1e1e1e;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.match-date {
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.league-badge {
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 16px;
  flex-wrap: wrap;
}

.team {
  text-align: center;
  width: 40%;
  min-width: 140px;
}

.team-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #1e1e1e;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--primary);
  border: 2px solid var(--border);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.team-name {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--light);
  font-size: 16px;
}

.team-form {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.form-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
  color: white;
}

.form-win  { background: #10b981; }
.form-loss { background: #ef4444; }
.form-draw { background: #f59e0b; }

.vs {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #0a0a0a;
  color: #cbd5e1;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,250px), 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer .logo {
  margin-bottom: 20px;
}

.footer .logo span {
  color: var(--primary);
}

.footer-col h3 {
  color: var(--light);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.footer p {
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--gray);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: #1a1a1a;
  border-radius: 50%;
  color: var(--light);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.social-links a:hover {
  background-color: var(--primary);
  color: #1a1a1a;
  transform: translateY(-3px);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--gray);
}

.contact-info i {
  color: var(--primary);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 25px;
  text-align: center;
  font-size: 14px;
  color: var(--gray);
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 30px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: normal;
}

.whatsapp-float i {
  font-size: 20px;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  color: white;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .casino-section .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .casino-content {
    text-align: center;
  }

  .casino-features li {
    justify-content: center;
  }

  .timeline::before {
    left: 30px;
    translate: 0 0;
  }

  .timeline-item {
    flex-direction: column;
    margin-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: -70px;
    top: 0;
    width: 80px;
    height: 80px;
  }

  .timeline-content {
    width: 100%;
    margin: 0;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-image {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .auth-buttons {
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-features {
    gap: 16px;
  }

  .testimonial-card {
    min-width: 85%;
    padding: 24px;
  }

  .cta-section .faq-list .faq-item {
    padding: 20px;
  }

  .cta-section .faq-list .faq-item h3 {
    font-size: 18px;
    padding-left: 25px;
  }

  .cta-section .faq-list .faq-item h3::before {
    font-size: 18px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 15px;
    padding-block: 10px;
  }

.auth-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;          /* fixed height */
  line-height: 1;        /* align text vertically */
  padding: 0 20px;
}


  .hero-buttons {
    gap: 12px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section-title p {
    font-size: 17px;
  }

  .feature-card {
    padding: 24px;
  }
}


/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs .container {
  display: flex;
}

.breadcrumbs ul {
  display: flex;
  list-style: none;
  gap: 10px;
  font-size: 16px;
}

.breadcrumbs ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--gray);
  margin-left: 10px;
}

/* Mission Section */
.mission-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.mission-statement {
  font-size: 18px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stats Section */
.stats-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1;
}

.stat-label {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 15px;
  font-weight: 600;
}

.stat-desc {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Timeline Responsive Adjustments */
@media (max-width: 1024px) {
  .timeline::before {
    left: 30px;
    translate: 0 0;
  }

  .timeline-item {
    flex-direction: column;
    margin-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: -70px;
    top: 0;
    width: 80px;
    height: 80px;
  }

  .timeline-content {
    width: 100%;
    margin: 0;
  }
}

/* Team Bio Text */
.team-bio {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
  .page-hero {
    padding-block: 60px;
  }
  
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
  
  .page-hero p {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs ul {
    font-size: 14px;
  }
  
  .timeline-year {
    width: 70px;
    height: 70px;
    font-size: 20px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .stat-card {
    padding: 20px;
  }
}

/* Stats Counter Animation */
.stat-number {
  display: block;
}
/* ==========================================================================
   PREDICTIONS PAGE SPECIFIC STYLES
   ========================================================================== */

/* Prediction Filters */
.predictions-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.predictions-filters .filter-btn {
  padding: 10px 25px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-weight: 500;
  color: var(--light);
  cursor: pointer;
  transition: all 0.3s;
}

.predictions-filters .filter-btn.active,
.predictions-filters .filter-btn:hover {
  background: var(--gradient-gold);
  color: #1a1a1a;
  border-color: var(--primary);
}

/* Prediction Card Styling */
.prediction-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
}

.prediction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.prediction-header {
  padding: 20px;
  background: #1e1e1e;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.match-date {
  color: var(--gray);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.league-badge {
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.prediction-content {
  padding: 25px;
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 16px;
  flex-wrap: wrap;
}

.team {
  text-align: center;
  width: 40%;
  min-width: 140px;
  flex-grow: 1;
}

.team-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #1e1e1e;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--primary);
  border: 2px solid var(--border);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.team-name {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--light);
  font-size: 16px;
}

.team-form {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.form-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
  color: white;
}

.form-win  { background: #10b981; }
.form-loss { background: #ef4444; }
.form-draw { background: #f59e0b; }

.vs {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  min-width: 50px;
  text-align: center;
}

.prediction-details {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  border-left: 3px solid var(--primary);
}

.prediction-title {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prediction-text {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.confidence-meter {
  margin-top: 20px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray);
}

.meter-bar {
  height: 8px;
  background: #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.key-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.stat-box {
  background: rgba(30, 30, 30, 0.6);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
}

/* How It Works Section */
.how-it-works {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 60%, rgba(0, 191, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-10px);
}


.step-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5px;
  background: var(--gradient-gold);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #1a1a1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--light);
}

.step-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Performance Section */
.performance-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.performance-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.performance-section .stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.performance-section .stat-card::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.performance-section .stat-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1;
}

.performance-section .stat-label {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .team {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .vs {
    width: 100%;
    margin: 10px 0;
  }
  
  .prediction-content {
    padding: 20px;
  }
  
  .step-card {
    padding: 25px;
  }
  
  .performance-section .stat-value {
    font-size: 36px;
  }
  
  .performance-section .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .predictions-filters .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .prediction-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .team-logo {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .team-name {
    font-size: 15px;
  }
  
  .prediction-title {
    font-size: 16px;
  }
  
  .prediction-text {
    font-size: 14px;
  }
  
  .key-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .stat-box {
    padding: 12px;
  }
  
  .stat-value {
    font-size: 18px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .step-card {
    padding: 20px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}


/* FAQ Search */
.faq-search {
    margin-bottom: 40px;
    text-align: center;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background: var(--card-bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-box button {
    background: var(--gradient-gold);
    color: #1a1a1a;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.faq-search p {
    color: var(--gray);
    font-size: 16px;
}

.faq-search a {
    color: var(--primary);
    text-decoration: none;
}

.faq-search a:hover {
    text-decoration: underline;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-weight: 500;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--gradient-gold);
    color: #1a1a1a;
    border-color: var(--primary);
}

/* Points System */
.points-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
    margin: 20px 0;
}

.point-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-card::before {
    content: '';
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 4px;
    background: var(--gradient-gold);
}

.point-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light);
}

.points {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.points-label {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.features {
    list-style: none;
}

.features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--gray);
}

.features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.guarantee-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* FAQ Section Styling */
.section-faq {
    background-color: var(--bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.faq-group {
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease;
}

.group-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.faq-accordion .faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: var(--bg);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #151515;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 1000px;
    color: var(--text-muted);
    line-height: 1.7;
    animation: fadeIn 0.5s ease;
}

/* CTA Section */
.section-cta {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
}

.section-cta h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 15px;
    color: var(--light);
}

.section-cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-answer.active {
        padding: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
    
    .point-card {
        padding: 20px;
    }
    
    .points {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .search-box {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .search-box input {
        padding: 12px 20px;
    }
    
    .search-box button {
        padding: 12px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .points-system {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Contact Section */
.section-contact {
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 4px;
    background: var(--gradient-gold);
}

.contact-form h3 {
    font-size: clamp(24px, 3vw, 28px);
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--light);
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.4rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-gold);
    color: #1a1a1a;
    display: inline-block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.5s;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 100%;
}

/* Support Team Section */
.support-team {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.support-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 60%, rgba(0, 191, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    translate: -50% 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 30px auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.team-member::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.member-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: grid;
    place-items: center;
    font-size: 32px;
    color: var(--primary);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--light);
}

.team-member p {
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Section Adjustments */
.section-faq .section-header {
    margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.8rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .member-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}


/* ==========================================================================
   STRATEGY PAGE SPECIFIC STYLES
   ========================================================================== */

/* Sports Grid Styling */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sport-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
}

.sport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sport-header {
  background: rgba(26, 26, 26, 0.8);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--border);
}

.sport-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--primary);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.sport-title {
  font-size: 22px;
  color: var(--light);
  font-weight: 600;
}

.sport-content {
  padding: 25px;
}

.sport-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
}

.sport-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

/* Featured Strategy Styling */
.featured-strategy {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.strategy-content {
  flex: 1 1 500px;
  min-width: 300px;
}

.strategy-content h2 {
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: 20px;
  color: var(--light);
}

.strategy-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

.strategy-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--light);
}

.gold-text {
  color: var(--primary);
  font-weight: 700;
}

.strategy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
}

.strategy-visual {
  flex: 1 1 400px;
  min-width: 300px;
}

.tactical-board {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.field {
  position: relative;
  background: #1e5631;
  background: linear-gradient(to bottom, #1e5631 0%, #4c9a2a 100%);
  border: 3px solid #d4af37;
  border-radius: 10px;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.player {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.player.home {
  background: var(--primary);
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.player.away {
  background: #1a1a1a;
  border: 2px solid var(--primary);
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .featured-strategy {
    flex-direction: column;
  }
  
  .strategy-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .sport-card {
    padding: 20px;
  }
  
  .featured-strategy {
    padding: 30px;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .field {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .sport-header {
    padding: 15px;
  }
  
  .sport-content {
    padding: 20px;
  }
  
  .featured-strategy {
    padding: 20px;
  }
  
  .tactical-board {
    padding: 15px;
  }
  
  .player {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 0.8rem 1.2rem;
    }
    
    .submit-btn {
        padding: 13px;
        font-size: 16px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding-inline: 15px;
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    font-size: 24px;
  }

  /* Navbar toggle behavior */
  .navbar {
    position: absolute;
    top: 100%; /* right below header */
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    z-index: 99;
    display: none;
    animation: slideDown 0.3s ease forwards;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .navbar ul li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  /* Auth buttons always visible below header */
  .auth-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
  }

  .auth-buttons .btn {
    font-size: 10px;
    padding: 10px 10px;
    max-width: 300px;
    height: auto;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  section:first-of-type {
    margin-top: 20px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    translate: 0 -10px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}


.centered-button-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.main-cta-button {
  background-color: #25D366;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.main-cta-button i {
  margin-right: 10px;
  font-size: 20px;
}

.main-cta-button:hover {
  background-color: #1ebc59;
}

/* Blog Expanded Full Page View */
.blog-card.expanded {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.blog-card.expanded .full-content {
  display: block !important;
}

.blog-card.expanded .excerpt {
  display: none !important;
}

.blog-card.expanded .read-more {
  display: none !important;
}
.keyword-section {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
              url('https://images.unsplash.com/photo-1569516449775-ae252b5f4b28?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
  padding: 60px 0;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 215, 0, 0.2); /* Gold border */
}

.keyword-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.keyword-section h2 {
  color: var(--primary); /* Gold color */
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-family: 'Montserrat', sans-serif;
}

.keyword-section p {
  color: #f5f5f5;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  background: rgba(10, 10, 10, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary); /* Gold border */
}

.keyword-section a {
  color: var(--primary); /* Gold color */
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.keyword-section a:hover {
  color: var(--primary-dark); /* Darker gold */
  text-decoration: underline;
}

.keyword-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary); /* Gold color */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.keyword-section a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .keyword-section h2 {
    font-size: 1.8rem;
  }
  
  .keyword-section p {
    font-size: 1rem;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .keyword-section {
    padding: 40px 0;
  }
  
  .keyword-section h2 {
    font-size: 1.5rem;
  }
  
  .keyword-section p {
    padding: 15px;
    text-align: left;
  }
}


/* Mahadev Book Guide Styles */
.mahadev-guide {
  background-color: var(--bg);
  color: var(--text);
  padding: 40px 0;
}

.guide-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.guide-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.guide-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

.intro-block p,
.content-section p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: var(--light);
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.feature-grid li {
  background: rgba(26, 26, 26, 0.6);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  list-style: none;
}

.step-guide {
  margin: 25px 0;
}

.step-guide li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  list-style: none;
}

.step-number {
  background: var(--gradient-gold);
  color: #1a1a1a;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 16px;
}

.step-content {
  flex: 1;
  padding-top: 5px;
}

.step-content strong {
  color: var(--light);
}


.tip-list {
  padding-left: 20px;
  margin: 25px 0;
}

.tip-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
  position: relative;
  padding-left: 25px;
}

.tip-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 20px;
}

.platform-link {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px dashed var(--primary);
}

.platform-link:hover {
  border-bottom-style: solid;
}

.conclusion-block h3.section-title {
  margin-top: 50px;
}

.action-container {
  text-align: center;
  margin-top: 30px;
}

.action-button {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1a1a1a !important;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 1.1rem;
  transition: all 0.4s;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .guide-container {
    padding: 25px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .step-guide li {
    flex-direction: column;
    gap: 10px;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 6px;
  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

.gold365-landing {
  padding: 60px 20px;
}


.content {
  flex: 1 1 600px;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.content .highlight {
  color: #FACC15;
}

.content h2 {
  font-size: 1.8rem;
  color: #FACC15;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content ul {
  padding-left: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.content ul li {
  list-style: disc;
}

.cta-button button {
  background-color: #198754;
  color: #fff;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button button:hover {
  background-color: #157347;
}

.note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #ccc;
}

.image {
  flex: 1 1 450px;
  text-align: center;
}

.image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.image p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #bbb;
}
/* ==========================================================================
   Laser247 - Mahadev Book Theme
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #FFD700;
  --primary-dark: #D4AF37;
  --secondary: #00BFFF;
  --dark: #0a0a0a;
  --light: #f0f0f0;
  --gray: #a0a0a0;
  --border: #2a2a2a;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  --bg: #121212;
  --card-bg: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --border-color: #333333;
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
}

/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
}

p, li, a, span {
  overflow-wrap: anywhere;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

section {
  padding-block: 80px;
}

@media (max-width: 768px) {
  section {
    padding-block: 60px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding-block: 12px;
  padding-inline: clamp(16px, 3vw, 28px);
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  white-space: normal;
  word-break: break-word;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* ---------- Header ---------- */
.header {
  background-color: rgba(10, 10, 10, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: clamp(12px, 1.5vw, 20px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a.active {
  color: var(--primary);
  font-weight: 600;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--gradient-dark);
  color: white;
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light);
}

.hero h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--primary);
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 30px;
  color: #cbd5e1;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,300px), 1fr));
  gap: 30px;
}

.feature {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.feature h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--light);
}

.feature p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Why Choose Section ---------- */
.why-choose h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--light);
  position: relative;
  display: inline-block;
}

.why-choose h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  translate: -50% 0;
  width: 80px;
  height: 3px;
  background: var(--primary);
}

/* ---------- FAQ Section ---------- */
.faqs h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--light);
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}

.disclaimer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ---------- Footer ---------- */
.footer {
  background-color: #0a0a0a;
  color: #cbd5e1;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 15px;
  color: var(--gray);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,250px), 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.links-column h3 {
  color: var(--light);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}

.links-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.links-column ul {
  list-style: none;
}

.links-column ul li {
  margin-bottom: 12px;
}

.links-column ul a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-column ul a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.copyright {
  border-top: 1px solid var(--border);
  padding-block: 25px;
  text-align: center;
  font-size: 14px;
  color: var(--gray);
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero .container {
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Betting App Page Specific Styles
   (Header, Footer and Navbar styles excluded as already exist)
   ========================================================================== */

/* ---------- Hero Section ---------- */
.page-hero {
  background: var(--gradient-dark);
  padding-block: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  color: var(--light);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-hero p {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Features Section ---------- */
.section-features {
  background-color: var(--bg);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary);
}

/* ---------- How It Works Section ---------- */
.how-it-works {
  background: var(--gradient-dark);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
}

.step-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5px;
  background: var(--gradient-gold);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #1a1a1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* ---------- Bonus Section ---------- */
.bonus-section {
  background-color: var(--bg);
  position: relative;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
}

.bonus-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5px;
  background: var(--gradient-gold);
}

.bonus-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary);
}

.bonus-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
  line-height: 1;
}

/* ---------- Steps Section ---------- */
.steps-section {
  background: var(--gradient-dark);
  position: relative;
}

.step-container {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number-circle {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #1a1a1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.step-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 15px;
}


/* ---------- FAQ Section ---------- */
.faq-section {
  background-color: var(--bg);
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: var(--bg);
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
  padding: 20px;
  max-height: 1000px;
}

/* ---------- Keyword Section ---------- */
.keyword-section {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9));
  padding: 60px 0;
  border-radius: 10px;
  margin: 40px 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.keyword-section h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
}

.keyword-section p {
  background: rgba(10, 10, 10, 0.7);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.keyword-section a {
  color: var(--primary);
  font-weight: 600;
}

/* ---------- Popular Searches ---------- */
.popular-searches {
  background: var(--card-bg);
  padding: 40px 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 40px 0;
}

.popular-searches h2 {
  text-align: center;
  margin-bottom: 25px;
}

/* ---------- Mobile Responsiveness ---------- */
@media (max-width: 768px) {
  .process-steps,
  .bonus-cards,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .keyword-section p {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding-block: 60px;
  }
  
  .feature-card,
  .step-card,
  .bonus-card,
  .step {
    padding: 20px;
  }
}
.step-card a {
  color: #ffcc00; /* Yellow */
}

.steps-section a {
  color: #ffcc00; /* Yellow */
}

.section-story a {
  color: #ffcc00; /* Yellow */
}

.mahadev-app-info {
  padding: 50px 0;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.8;
}

.mahadev-app-info .section-title h2 {
  color: #ffcc00;
  font-size: 32px;
}

.mahadev-app-info ul {
  list-style: none;
  padding-left: 0;
}

.mahadev-app-info ul li {
  margin: 10px 0;
  font-size: 16px;
}

.mahadev-app-info ul li i {
  color: #ffcc00;
  margin-right: 8px;
}

.mahadev-app-info a {
  color: #ffcc00;
  text-decoration: underline;
}

.mahadev-app-info a:hover {
  color: #ffc107;
}
/* Popular Searches Section */
.section-popular-searches {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

.section-popular-searches .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-popular-searches h2 {
  color: #FACC15;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-popular-searches p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.9;
  padding: 0 10px;
}

.section-popular-searches a {
  color: #FACC15;
  text-decoration: none;
}

.section-popular-searches a:hover {
  text-decoration: underline;
  color: #ffc107;
}

/* Payment Section Styling */
body {
  background-color: #000;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.payment-section {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.payment-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.payment-section p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.payment-item {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.payment-item:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.payment-item img {
  height: 40px;
  margin-bottom: 10px;
}

.payment-label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 480px) {
  .payment-item {
    width: 100px;
    height: 100px;
  }

  .payment-item img {
    height: 30px;
  }

  .payment-label {
    font-size: 12px;
  }
}

/* Terms Page Scoped Styles */

body.terms-body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.terms-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.terms-heading {
  font-size: 2.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-align: center;
}

.terms-updated {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.terms-section {
  margin-bottom: 28px;
}

.terms-section h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
}

.terms-section p {
  line-height: 1.7;
  color: var(--text);
}

.terms-section a {
  color: var(--primary);
}

.terms-updated a {
  color: var(--primary);
}

.terms-section a:hover {
  color: var(--primary-dark);
}

.markets-two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.markets-two-column h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.markets-two-column p {
  color: var(--text-muted);
  line-height: 1.5;
}
/* Guide Section Base */
.guide-section {
  background: var(--bg);
  padding: 60px 20px;
  color: var(--text);
}

.guide-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.guide-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.guide-section .section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.guide-section .section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Guide Content */
.guide-content h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-top: 30px;
}

.guide-content p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.6;
  color: var(--text);
}

.guide-content ul {
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

.guide-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* Strategy Cards */
.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.strategy-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.strategy-card h4 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.strategy-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.ipl-benefits-section {
  background: var(--bg);
  color: var(--text);
  padding: 60px 20px;
}

.ipl-benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Grid Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--card-bg);
  padding: 25px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.cta-buttons a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 10px;
  transition: background 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--dark);
  border-color: var(--primary-dark);
}

.content a {
  color:#FFD700; /* This uses your yellow (#FFD700) */

}

/* Container */
.mbid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.mbid-hero {
  background: var(--gradient-gold);
  color: var(--dark);
  text-align: center;
  padding: 4rem 1rem;
}
.mbid-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.mbid-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.mbid-btn-primary {
  background-color: var(--primary-dark);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease;
}
.mbid-btn-primary:hover {
  background-color: var(--primary);
}

/* Section Base */
.mbid-section {
  background-color: var(--bg);
  color: var(--text);
  padding: 4rem 1rem;
}
.mbid-section-alt {
  background-color: var(--card-bg);
}

/* Section Titles */
.mbid-section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
}

/* Paragraphs & Lists */
.mbid-section p,
.mbid-section ul,
.mbid-section ol {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.mbid-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.mbid-section li {
  margin-bottom: 0.75rem;
}

/* Steps */
.mbid-steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.mbid-step {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}
.mbid-step h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Internal Links Block */
.mbid-internal-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
.mbid-internal-links p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.mbid-internal-links ul {
  list-style: none;
  padding-left: 0;
}
.mbid-internal-links li {
  margin-bottom: 0.5rem;
}
.mbid-internal-links a {
  color: var(--primary);
  text-decoration: underline;
}

/* CTA */
.mbid-cta {
  text-align: center;
  margin-top: 3rem;
}
.mbid-cta h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* FAQ Styles */
.mbid-faq-container {
  margin-top: 2rem;
}
.mbid-faq-item {
  background-color: var(--card-bg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}
.mbid-faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.mbid-faq-item ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

/* Links */
a {
  color: var(--secondary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Hero Section - Online Betting ID */
.obi-hero {
  background: var(--gradient-dark);
  padding: 80px 20px 60px;
  color: var(--text);
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-color);
}

.obi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.obi-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.obi-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.obi-hero ul {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px;
  padding-left: 20px;
}

.obi-hero ul li {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text-muted);
  position: relative;
  padding-left: 25px;
}

.obi-hero ul li::before {
  content: "\f058"; /* FontAwesome check-circle icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Button */
.obi-btn-primary {
  display: inline-block;
  background: var(--gradient-gold);
  color: #000;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.obi-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
/* Section: What is an Online Betting ID */
.obi-what-is-id {
  background-color: var(--card-bg);
  padding: 60px 20px;
  color: var(--text);
  border-bottom: 1px solid var(--border-color);
}

.obi-what-is-id .obi-container {
  max-width: 1100px;
  margin: 0 auto;
}

.obi-what-is-id h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.obi-what-is-id h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 30px 0 15px;
  font-weight: 600;
}

.obi-what-is-id p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.obi-what-is-id ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.obi-what-is-id ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--text);
  position: relative;
  padding-left: 25px;
}

.obi-what-is-id ul li::before {
  content: "\f111"; /* Font Awesome solid dot icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 0.6rem;
}
/* Section: How to Get Your Online Betting ID */
.obi-how-to-get-id {
  background: var(--bg);
  color: var(--text);
  padding: 60px 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.obi-how-to-get-id .obi-container {
  max-width: 1200px;
  margin: 0 auto;
}

.obi-how-to-get-id h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.obi-how-to-get-id h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.obi-how-to-get-id p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.obi-how-to-get-id ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.obi-how-to-get-id ul li {
  list-style: disc;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.obi-how-to-get-id a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.obi-how-to-get-id a:hover {
  color: var(--primary-dark);
}
.obi-how-to-get-id a {
  color: #FFD700; /* This is your yellow color: #FFD700 */

}

/* Features & Benefits Section */
.obi-features-benefits {
  background: var(--bg);
  padding: 60px 20px;
  color: var(--text);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.obi-features-benefits .obi-container {
  max-width: 1200px;
  margin: 0 auto;
}

.obi-features-benefits h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.obi-features-benefits h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.obi-features-benefits h3::before {
  content: "\f00c"; /* Font Awesome check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary);
  font-size: 1rem;
}

.obi-features-benefits p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.obi-features-benefits a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.obi-features-benefits a:hover {
  color: var(--primary-dark);
}
.obi-why-verified-id {
  background: var(--bg);
  padding: 60px 20px;
  color: var(--text);
}

.obi-why-verified-id .obi-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.obi-why-verified-id h2 {
  grid-column: 1 / -1;
  font-size: 2.25rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.obi-why-verified-id p {
  background: var(--card-bg);
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  line-height: 1.7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obi-why-verified-id p:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.15);
}

.obi-why-verified-id a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.obi-why-verified-id a:hover {
  color: var(--primary-dark);
}
.obi-benefits {
  background: var(--bg);
  padding: 60px 20px;
  color: var(--text);
}

.obi-benefits .obi-container {
  max-width: 1280px;
  margin: 0 auto;
}

.obi-benefits h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
}

.obi-benefits .obi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.obi-benefits .obi-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obi-benefits .obi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.15);
}

.obi-benefits a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.obi-benefits a:hover {
  color: var(--primary-dark);
}
.obi-benefits {
  background-color: var(--bg);
  padding: 60px 20px;
  color: var(--text);
}

.obi-benefits .obi-container {
  max-width: 1200px;
  margin: auto;
}

.obi-benefits h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary);
}

.obi-benefit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
}

.obi-benefit-row.reverse {
  flex-direction: row-reverse;
}

.obi-benefit-text {
  flex: 1;
  min-width: 300px;
}

.obi-benefit-text h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.obi-benefit-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.obi-benefit-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  min-width: 60px;
  text-align: center;
}

.obi-benefits a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.obi-benefits a:hover {
  color: var(--primary-dark);
}
.obi-get-id {
  background: var(--card-bg);
  padding: 60px 20px;
  color: var(--text);
  position: relative;
}

.obi-get-id-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.obi-get-id h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: left;
  border-left: 5px solid var(--primary);
  padding-left: 16px;
}

.obi-get-id-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.obi-get-id-text p {
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.obi-get-id-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.obi-get-id-text a:hover {
  color: var(--primary-dark);
}

.obi-security {
  background: var(--card-bg);
  padding: 100px 20px;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.obi-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 10px var(--primary);
}

.obi-security-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.obi-security-grid {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.obi-security-text {
  flex: 2;
}

.obi-security-icon {
  flex: 1;
  text-align: center;
}

.obi-security-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
}

.obi-security-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.obi-security-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.obi-security-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.obi-security-text a:hover {
  color: var(--primary-dark);
}

.obi-security-icon img {
  width: 100%;
  max-width: 340px;
  margin-top: 20px;
  border-radius: 16px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
  transition: transform 0.3s ease;
}

.obi-security-icon img:hover {
  transform: scale(1.05);
}
/* MahadevBook Hero Section */
.mahadevbook-hero {
  background: var(--gradient-dark);
  color: var(--text);
  padding: 80px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.mahadevbook-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.3;
}

.hero-intro,
.hero-paragraph {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-paragraph strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-paragraph a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.hero-paragraph a:hover {
  color: var(--primary-dark);
}

.hero-features {
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 1rem;
  list-style: none;
}

.hero-features li {
  margin-bottom: 12px;
  padding-left: 1.5em;
  position: relative;
  font-size: 1rem;
}

.hero-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.hero-cta {
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* WHY MAHADEVBOOK SECTION STYLES */
.why-mahadevbook {
  background: linear-gradient(135deg, #111111, #1c1c1c);
  padding: 80px 20px;
  color: #f5f5f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-mahadevbook .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-mahadevbook h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(to right, #FFD700, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-mahadevbook h2 a {
  color: #FFD700;
  text-decoration: none;
}

.why-mahadevbook .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.why-mahadevbook .why-item {
  background-color: #1f1f1f;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.why-mahadevbook .why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.why-mahadevbook .why-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-mahadevbook .why-item i {
  color: #FFD700;
  font-size: 1.3rem;
}

.why-mahadevbook .why-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 16px;
}

.why-mahadevbook .why-item a {
  color: #FFD700;
  text-decoration: underline;
}

.why-mahadevbook .why-item a:hover {
  color: #ffffff;
}

.why-mahadevbook .why-footer {
  margin-top: 60px;
  text-align: center;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-mahadevbook .why-footer a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.why-mahadevbook .why-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .why-mahadevbook h2 {
    font-size: 2rem;
  }

  .why-mahadevbook .why-item h3 {
    font-size: 1.3rem;
  }

  .why-mahadevbook .why-item p {
    font-size: 0.95rem;
  }
}
.mahadevbook-features {
  background: var(--bg);
  color: var(--text);
  padding: 80px 20px;
}

.mahadevbook-features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mahadevbook-features-container h2 {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary);
}

.mahadevbook-features-container > p,
.mahadevbook-feature-summary {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.mahadevbook-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mahadevbook-feature-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  text-align: center;
  border: 1px solid var(--border-color);
}

.mahadevbook-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.mahadevbook-feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.mahadevbook-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.mahadevbook-feature-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .mahadevbook-features-container h2 {
    font-size: 2.2rem;
  }

  .mahadevbook-feature-card {
    padding: 20px;
  }
}
.mahadevbook-trust {
  background: var(--gradient-dark);
  padding: 60px 20px;
  color: var(--text);
}

.mahadevbook-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.mahadevbook-trust h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.mahadevbook-trust-intro {
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto 50px auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.mahadevbook-trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.mahadevbook-trust-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mahadevbook-trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.mahadevbook-trust-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.mahadevbook-trust-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.mahadevbook-trust-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mahadevbook-trust-summary {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  text-align: left;
}

.mahadevbook-trust-summary p {
  margin-bottom: 20px;
}

.mahadevbook-trust a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.mahadevbook-trust a:hover {
  color: var(--primary-dark);
}

/* MahadevBook Evolution Section */

.mahadevbook-evolution-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
}

.mahadevbook-evolution-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mahadevbook-evolution-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 1px;
}

.mahadevbook-evolution-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.mahadevbook-evolution-highlight {
  color: #FFD700;
  font-weight: bold;
}

.mahadevbook-evolution-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mahadevbook-evolution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.mahadevbook-evolution-subheading {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mahadevbook-evolution-title {
    font-size: 2rem;
  }

  .mahadevbook-evolution-content {
    font-size: 1rem;
  }

  .mahadevbook-evolution-subheading {
    font-size: 1.3rem;
  }
}
/* MahadevBook How-To Section Styles */
.mahadevbook-howto-section {
  background-color: #111;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.mahadevbook-howto-container {
  max-width: 1100px;
  margin: auto;
}

.mahadevbook-howto-title {
  font-size: 2.4rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.mahadevbook-howto-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #FFD700;
  margin: 12px auto 0;
}

.mahadevbook-howto-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  color: #ccc;
}

.mahadevbook-howto-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.mahadevbook-howto-link:hover {
  color: #fff;
}

/* Steps Style */
.mahadevbook-howto-step {
  background: #1a1a1a;
  border-left: 5px solid #FFD700;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease;
}
.mahadevbook-howto-step:hover {
  transform: translateY(-3px);
}

.mahadevbook-howto-step h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.mahadevbook-howto-step p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Closing Paragraph */
.mahadevbook-howto-closing {
  margin-top: 50px;
  background: #1e1e1e;
  padding: 25px 30px;
  border-radius: 8px;
  border-top: 4px solid #FFD700;
}

.mahadevbook-howto-closing p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 16px;
}
.mahadevbook-howto-closing a {
  color: #FFD700;
  font-weight: 600;
  text-decoration: underline;
}
.mahadevbook-howto-closing a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .mahadevbook-howto-step,
  .mahadevbook-howto-closing {
    padding: 20px;
  }

  .mahadevbook-howto-title {
    font-size: 2rem;
  }

  .mahadevbook-howto-step h3 {
    font-size: 1.3rem;
  }
}
.mahadevbook-games {
  background: #1a1a1a;
  color: var(--text);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.games-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.games-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.games-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.game-block {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.game-block:hover {
  transform: translateY(-8px);
}

.game-block img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.game-block h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.game-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mahadevbook-note {
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--gray);
}
.mahadevbook-testimonials {
  background: var(--bg);
  padding: 60px 20px;
  color: var(--text);
}

.mahadevbook-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mahadevbook-testimonials-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.mahadevbook-testimonials-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

.mahadevbook-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mahadevbook-testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.mahadevbook-testimonial-card:hover {
  transform: translateY(-5px);
}

.mahadevbook-testimonial-card i {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.mahadevbook-testimonial-card h3 {
  margin: 10px 0 8px;
  color: var(--primary);
  font-size: 1.2rem;
}

.mahadevbook-testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mahadevbook-testimonials-footer {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
}

.mahadevbook-testimonials-footer a {
  color: var(--primary);
  text-decoration: underline;
}
.mahadevbook-faq-section {
  background: var(--card-bg, #1a1a1a);
  color: var(--text, #f0f0f0);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.mahadevbook-faq-container {
  max-width: 900px;
  margin: auto;
}

.mahadevbook-faq-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mahadevbook-faq-item {
  border-bottom: 1px solid var(--border-color, #333);
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.mahadevbook-faq-toggle {
  display: none;
}

.mahadevbook-faq-question {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding: 15px 20px;
  background-color: var(--dark, #0a0a0a);
  border-radius: 8px;
  transition: background 0.3s;
}

.mahadevbook-faq-question:hover {
  background-color: var(--primary-dark, #D4AF37);
  color: #000;
}

.mahadevbook-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.mahadevbook-faq-toggle:checked + .mahadevbook-faq-question::after {
  transform: rotate(45deg);
}

.mahadevbook-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.3s;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted, #a0a0a0);
}

.mahadevbook-faq-toggle:checked + .mahadevbook-faq-question + .mahadevbook-faq-answer {
  max-height: 400px;
  padding: 15px 20px;
}
