/* ==========================================================================
   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 (Green #198754)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #198754; /* same green as your CTA */
  color: #fff;
  font-size: 16px;
  padding: 10px 18px;
  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, transform 0.2s ease;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

/* Replace Font Awesome icon with PNG */
.whatsapp-float img {
  width: 20px;      /* same size as previous icon */
  height: 20px;
  display: block;
}

/* Text styling remains */
.whatsapp-float span {
  color: #fff; /* white text */
}

/* Hover state */
.whatsapp-float:hover {
  background-color: #157347; /* darker green for hover */
  transform: translateY(-2px);
}

/* Active (clicked) state */
.whatsapp-float:active {
  background-color: #0f5132; /* deepest green for active */
  transform: scale(0.96);
}



/* ==========================================================================
   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 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dark); /* gold variant */
  color: #000; /* black text for strong contrast */
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.main-cta-button:hover {
  background: var(--primary);
  color: #000; /* ensure text remains readable */
  transform: translateY(-2px);
}


.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&amp;auto=format&amp;fit=crop&amp;w=1200&amp;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;
}

/* Accessible Links */
.section-popular-searches a {
  color: #FACC15;
  text-decoration: underline;  /* Makes links stand out */
  font-weight: 600;            /* Adds visibility */
}

.section-popular-searches a:hover {
  color: #FFD700;              /* Brighter gold on hover */
  text-decoration: none;       /* Removes underline on hover */
}


/* 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;
}


.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;
}

/* Author/Expert Section */
.mbid-author-section {
  padding: 3rem 1rem;
  background: var(--card-bg);
  color: var(--text);
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
}

.mbid-author-container {
  max-width: 900px;
  margin: 0 auto;
}

.mbid-author-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mbid-author-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto 2rem;
}

.mbid-author-link {
  color: var(--primary-dark);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mbid-author-link:hover {
  color: var(--secondary);
}

.mbid-author-profile {
  margin-top: 2rem;
}

.mbid-author-image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mbid-author-name {
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary);
}

.mbid-author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials Section */
.mbid-testimonials-section {
  padding: 4rem 1rem;
  background-color: var(--card-bg);
  color: var(--text);
  text-align: center;
}

.mbid-testimonials-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.mbid-testimonials-text {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.mbid-testimonials-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.mbid-testimonial-card {
  background-color: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbid-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.mbid-testimonial-comment {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.mbid-testimonial-user {
  font-weight: bold;
  color: var(--primary);
}

/* 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;
}

/* General Container */
.mbidv2-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  line-height: 1.7;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
}

.mbidv2-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mbidv2-container p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.mbidv2-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.mbidv2-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.mbidv2-container ul li {
  margin-bottom: 0.5rem;
}

/* Links */
.mbidv2-link {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.3s;
}

.mbidv2-link:hover {
  color: var(--primary);
}

/* Internal Links Box */
.mbidv2-internal-links {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.mbidv2-internal-links p {
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.mbidv2-internal-links ul {
  list-style-type: disc;
}

.mbidv2-internal-links ul li {
  margin-bottom: 0.5rem;
}

/* Author Section */
.mbidv2-author-section {
  background-color: var(--bg);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text);
}

.mbidv2-author-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mbidv2-author-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.mbidv2-author-profile {
  display: inline-block;
  text-align: center;
}

.mbidv2-author-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
}

.mbidv2-author-name {
  font-weight: 700;
  color: var(--primary);
}

.mbidv2-author-role {
  font-size: 0.95rem;
  color: var(--secondary);
}
.mbidv2-trust-section {
  background: var(--card-bg);
  padding: 3rem 1rem;
  color: var(--text);
}

.mbidv2-trust-title {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.mbidv2-trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mbidv2-trust-card {
  background-color: var(--bg);
  padding: 1.8rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbidv2-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.mbidv2-trust-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.mbidv2-trust-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* ===== Mahadev Book App Expanded Section ===== */
.mbid-app-section-expanded {
  background: var(--bg); /* dark background for contrast */
  color: var(--text);
  padding: 4rem 1rem;
}

.mbid-app-container-expanded {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.mbid-app-title-expanded {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.mbid-app-text-expanded {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

/* ===== App Benefits Cards ===== */
.mbid-app-benefits-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.mbid-app-card-expanded {
  background: var(--bg);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mbid-app-card-expanded:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
}

.mbid-app-card-expanded h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.mbid-app-card-expanded p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== App Download Button ===== */
.mbid-app-download-expanded {
  text-align: center;
  margin-bottom: 3rem;
}

.mbid-app-btn-expanded {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.125rem;
  color: var(--dark);
  background: var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mbid-app-btn-expanded:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* ===== FAQ Section ===== */
.mbid-app-faq-expanded h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.mbid-app-faq-expanded ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.mbid-app-faq-expanded li {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mbid-app-faq-expanded li strong {
  color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mbid-app-title-expanded {
    font-size: 2rem;
  }
  
  .mbid-app-card-expanded {
    padding: 1.2rem;
  }
  
  .mbid-app-btn-expanded {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}

/* 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);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .obi-get-id-content {
    flex-direction: column;
    gap: 20px;
  }

  .obi-get-id h2 {
    font-size: 1.5rem;
  }

  .obi-get-id-text {
    font-size: 0.95rem;
  }

  .obi-get-id-text ul {
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .obi-get-id {
    padding: 30px 15px;
  }

  .obi-get-id h2 {
    font-size: 1.3rem;
  }

  .obi-get-id-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.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;
}

/* EEAT Section */
.eeat-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.eeat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.eeat-section h2 {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.eeat-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d4af37;
  border-radius: 2px;
}

.eeat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.eeat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.eeat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #d4af37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.eeat-card:hover::before {
  transform: scaleX(1);
}

.eeat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.eeat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: #d4af37;
  transition: all 0.3s ease;
}

.eeat-card:hover .eeat-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.eeat-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.eeat-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Features Section */
.section-features {
  padding: 100px 0;
  background: #121212;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d4af37;
  border-radius: 2px;
}

.section-title p {
  color: #aaa;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 109, 56, 0.2) 0%, rgba(13, 82, 39, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 109, 56, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #d4af37;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(212, 175, 55, 0.3);
  transform: scale(1.1);
}

.feature-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #aaa;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding: 30px 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  text-align: center;
}

.trust-badge i {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.trust-badge:hover i {
  transform: translateY(-5px);
}

.trust-badge span {
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .eeat-section, .section-features {
    padding: 60px 0;
  }
  
  .eeat-section h2, .section-title h2 {
    font-size: 2.2rem;
  }
  
  .trust-badges {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .eeat-section h2, .section-title h2 {
    font-size: 2rem;
  }
  
  .eeat-grid, .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .trust-badges {
    gap: 25px;
    margin-top: 40px;
  }
  
  .trust-badge {
    max-width: 150px;
  }
  
  .trust-badge i {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .eeat-section, .section-features {
    padding: 50px 0;
  }
  
  .eeat-section h2, .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1.1rem;
  }
  
  .eeat-card, .feature-card {
    padding: 25px 20px;
  }
  
  .eeat-icon, .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .trust-badges {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badge {
    max-width: 100%;
    flex-direction: row;
    gap: 15px;
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
  }
  
  .trust-badge i {
    margin-bottom: 0;
    font-size: 2rem;
  }
}

/* HERO SECTION - Mahadev Online Book */
#hero-mahadev-online-book {
  background-color: var(--bg);
  padding: 3rem 1.5rem;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
}

#hero-mahadev-online-book .container {
  max-width: 1200px;
  margin: 0 auto;
}

#hero-mahadev-online-book h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary);
}

#hero-mahadev-online-book p.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
}

#hero-mahadev-online-book a {
  color: var(--primary);
  text-decoration: underline;
}

#hero-mahadev-online-book a:hover {
  text-decoration: none;
  color: var(--primary-dark);
}

#hero-mahadev-online-book h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

#hero-mahadev-online-book ul,
#hero-mahadev-online-book ol {
  padding-left: 1.5rem;
  color: var(--text);
}

#hero-mahadev-online-book li {
  margin-bottom: 0.5rem;
}

#hero-mahadev-online-book aside {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

#hero-mahadev-online-book aside h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Equal height and full-width for both buttons */
#hero-mahadev-online-book .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

/* Make both buttons outline style */
#hero-mahadev-online-book .btn-primary,
#hero-mahadev-online-book .btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

#hero-mahadev-online-book .btn-primary:hover,
#hero-mahadev-online-book .btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--dark);
}

/* Responsive Layout */
@media (min-width: 1024px) {
  #hero-mahadev-online-book .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }

  #hero-mahadev-online-book h1 {
    font-size: 3rem;
  }
}
/* === ABOUT SECTION: #about-mahadev-online-book ===
   Uses site design tokens from :root for full consistency
------------------------------------------------------- */

#about-mahadev-online-book {
  background: var(--bg);
  color: var(--text);
  padding: 3rem 1.5rem;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container sizing (keeps content centered and readable) */
#about-mahadev-online-book .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section heading */
#about-mahadev-online-book h2 {
  color: var(--primary);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Sub-headings */
#about-mahadev-online-book h3 {
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.125rem);
  margin-top: 1.25rem;
  margin-bottom: .75rem;
  font-weight: 700;
}

/* Paragraphs & lead copy */
#about-mahadev-online-book p {
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  margin-bottom: 1rem;
  max-width: 80ch;
}

/* Slightly emphasized lead */
#about-mahadev-online-book p.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Links (consistent gold primary) */
#about-mahadev-online-book a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

#about-mahadev-online-book a:hover,
#about-mahadev-online-book a:focus {
  color: var(--primary-dark);
  outline: none;
  text-decoration-color: var(--primary-dark);
}

/* Lists */
#about-mahadev-online-book ul,
#about-mahadev-online-book ol {
  color: var(--text);
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

#about-mahadev-online-book li {
  margin-bottom: .6rem;
  line-height: 1.6;
}

/* Accent callout / quote style (use for "The Journey So Far" etc.) */
#about-mahadev-online-book blockquote,
#about-mahadev-online-book .callout {
  background: linear-gradient(180deg, rgba(255,215,0,0.03), rgba(212,175,55,0.01));
  border: 1px solid var(--border-color);
  color: var(--text);
  padding: 1rem 1.1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 1rem 0;
  font-style: normal;
}

/* Strong / emphasized text */
#about-mahadev-online-book strong {
  color: var(--primary);
  font-weight: 700;
}

/* Small helper text */
#about-mahadev-online-book .muted,
#about-mahadev-online-book small {
  color: var(--text-muted);
  font-size: .925rem;
}

/* Optional feature grid (apply .feature-grid to the UL if you want a two-column layout) */
#about-mahadev-online-book .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: .5rem;
}

/* Accessibility: focus styles for keyboard users */
#about-mahadev-online-book a:focus {
  box-shadow: 0 0 0 3px rgba(255,215,0,0.14);
  border-radius: 4px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  #about-mahadev-online-book {
    padding: 2rem 1rem;
  }
  #about-mahadev-online-book h2 {
    font-size: 1.45rem;
  }
  #about-mahadev-online-book p {
    font-size: 0.98rem;
    max-width: 100%;
  }
}

/* HOW MAHADEV ONLINE BOOK WORKS - Unique Styling */
#how-mahadev-online-book {
  background: linear-gradient(135deg, var(--bg) 0%, #1e1e1e 100%);
  color: var(--text);
  padding: 4rem 1.5rem;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

#how-mahadev-online-book .intro {
  font-size: 1.125rem;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

#how-mahadev-online-book a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
}

#how-mahadev-online-book a:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Quote Styling */
#how-mahadev-online-book blockquote {
  background: rgba(255, 255, 0, 0.08);
  border-left: 5px solid var(--yellow);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 0.5rem;
}

/* Steps Layout */
#how-mahadev-online-book .steps {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

#how-mahadev-online-book .step {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#how-mahadev-online-book .step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Number Badge */
#how-mahadev-online-book .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Step Headings */
#how-mahadev-online-book .step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Step Lists */
#how-mahadev-online-book .step ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  list-style: none;
}

#how-mahadev-online-book .step ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

#how-mahadev-online-book .step ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
   color: var(--primary);
}

/* Tip Box */
#how-mahadev-online-book .tip-box {
  background: rgba(255, 255, 0, 0.08);
  border-left: 4px solid var(--yellow);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

/* Extra Info Section */
#how-mahadev-online-book .extra-info {
  margin-top: 3rem;
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

#how-mahadev-online-book .extra-info h3 {
  color: var(--yellow);
  margin-top: 1.5rem;
}

#how-mahadev-online-book .extra-info ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

/* CTA Button */
#how-mahadev-online-book .cta {
  text-align: center;
  margin-top: 3rem;
}

#how-mahadev-online-book .btn-gold {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  box-shadow: var(--shadow);
}

#how-mahadev-online-book .btn-gold:hover {
  background: linear-gradient(135deg, #ffe34f 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}


/* Responsive Grid */
@media (min-width: 768px) {
  #how-mahadev-online-book .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  #how-mahadev-online-book .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Headings Yellow Color */
#how-mahadev-online-book h1,
#how-mahadev-online-book h2,
#how-mahadev-online-book h3 {
  color: var(--primary);
}
/* === RESPONSIBLE GAMING (Unique Premium Style) === */
#responsible-gaming {
  background: linear-gradient(145deg, #1a1a1a, #262626);
  color: #eaeaea;
  padding: 5rem 1.5rem;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

#responsible-gaming h2 {
  color: #FFD700;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

#responsible-gaming .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: #cfcfcf;
  line-height: 1.6;
}

/* Guidelines Grid */
.rg-guidelines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.guideline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.guideline:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.25);
}

.guideline i {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.guideline:hover i {
  transform: scale(1.2);
}

.guideline h3 {
  color: #FFD700;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.guideline p {
  color: #d4d4d4;
  line-height: 1.6;
}

/* Additional Resources Box */
.rg-extra {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #FFD700;
  padding: 1.5rem;
  border-radius: 0.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.05);
}

.rg-extra h3 {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.rg-extra a {
  color: #FFD700;
  font-weight: 600;
  text-decoration: underline;
}

.rg-extra a:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  #responsible-gaming {
    padding: 3rem 1rem;
  }
  .guideline {
    padding: 1.5rem;
  }
}

/* === BENEFITS SECTION (3D Floating Cards) === */
#mahadev-benefits {
  background: var(--bg);
  color: var(--text);
  padding: 5rem 2rem;
  text-align: center;
}

#mahadev-benefits h2 {
  color: var(--primary);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

#mahadev-benefits .intro {
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Keep all links yellow */
#mahadev-benefits a {
  color: var(--primary);
  text-decoration: underline;
}

#mahadev-benefits a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}
/* Complete Guide Section */
#complete-guide-mahadev {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 4rem 1.5rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

/* Container */
#complete-guide-mahadev .container {
  max-width: 100%;
  padding: 0 1rem;
}

/* Section Title */
#complete-guide-mahadev h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.8);
}

/* Lead Paragraph */
#complete-guide-mahadev p.lead {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 3rem auto;
  text-align: center;
  line-height: 1.65;
  font-style: italic;
}

/* Headings H3 and H4 */
#complete-guide-mahadev h3 {
  color: var(--primary);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--primary);
  padding-left: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

#complete-guide-mahadev h4 {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-style: italic;
  text-shadow: 0 0 3px rgba(212, 175, 55, 0.6);
}

/* Paragraphs */
#complete-guide-mahadev p {
  margin-bottom: 1.4rem;
  color: var(--text);
  font-weight: 400;
}

/* Lists (ul, ol) */
#complete-guide-mahadev ul,
#complete-guide-mahadev ol {
  padding-left: 1.5rem;
  margin-bottom: 1.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

#complete-guide-mahadev ul li,
#complete-guide-mahadev ol li {
  margin-bottom: 0.9rem;
  line-height: 1.5;
  position: relative;
}

/* Custom list markers for ul */
#complete-guide-mahadev ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: 900;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}

/* Custom list markers for ol */
#complete-guide-mahadev ol {
  counter-reset: section-counter;
}

#complete-guide-mahadev ol li {
  counter-increment: section-counter;
}

#complete-guide-mahadev ol li::before {
  content: counter(section-counter) ".";
  color: var(--primary);
  font-weight: 800;
  margin-right: 0.6rem;
}

/* Links */
#complete-guide-mahadev a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.25s ease;
}

#complete-guide-mahadev a:hover,
#complete-guide-mahadev a:focus {
  color: var(--primary-dark);
  text-decoration: none;
  outline: none;
}

/* CTA Button */
#complete-guide-mahadev .cta {
  margin-top: 3rem;
  text-align: center;
}

#complete-guide-mahadev .btn-primary {
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

#complete-guide-mahadev .btn-primary:hover,
#complete-guide-mahadev .btn-primary:focus {
  background: var(--primary-dark);
  color: var(--light);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.9);
  transform: translateY(-3px);
  outline: none;
}

/* Back to Table of Contents Link */
#complete-guide-mahadev .back-to-toc {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

#complete-guide-mahadev .back-to-toc:hover,
#complete-guide-mahadev .back-to-toc:focus {
  color: var(--primary-dark);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  #complete-guide-mahadev {
    padding: 3rem 1rem;
  }

  #complete-guide-mahadev h2 {
    font-size: 2rem;
  }

  #complete-guide-mahadev h3 {
    font-size: 1.5rem;
  }

  #complete-guide-mahadev h4 {
    font-size: 1.1rem;
  }
}
/* ---------- Mahadev Book ID Section Styling ---------- */
.mahaid-section {
  background: var(--bg);
  color: var(--text);
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mahaid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 50px;
}

.mahaid-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.mahaid-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 40px;
}

.mahaid-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}

.mahaid-subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-dark);
  margin-top: 5px;
  border-radius: 2px;
}

.mahaid-list,
.mahaid-list-numbered {
  margin-left: 20px;
  margin-bottom: 20px;
}

.mahaid-list li,
.mahaid-list-numbered li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.mahaid-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1rem;
}

.mahaid-list-numbered li::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary);
}

.mahaid-list-numbered {
  counter-reset: li;
}

.mahaid-device {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mahaid-device:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.mahaid-device p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.mahaid-device a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mahaid-device a:hover {
  color: var(--primary-dark);
}

/* Responsive Grid for Desktop and Tablet */
@media (min-width: 768px) {
  .mahaid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Single column for mobile */
@media (max-width: 767px) {
  .mahaid-title {
    font-size: 2rem;
  }

  .mahaid-subtitle {
    font-size: 1.5rem;
  }
}

/* Gradient text highlight inside paragraphs */
.mahaid-intro strong,
.mahaid-device strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Optional: smooth fade-in animation for each card */
.mahaid-device {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- Popular Betting Markets Section Styling ---------- */
.mahaid-markets {
  background: var(--dark);
  color: var(--light);
  padding: 70px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.mahaid-markets .mahaid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Section Title */
.mahaid-markets .mahaid-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  position: relative;
  margin-bottom: 20px;
}

.mahaid-markets .mahaid-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  display: block;
  margin: 15px auto 0 auto;
  border-radius: 3px;
}

/* Intro Paragraph */
.mahaid-markets .mahaid-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
}

/* Grid for all cards */
.mahaid-markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Individual Market Cards */
.mahaid-markets .mahaid-market {
  background: var(--bg);
  border-left: 5px solid var(--primary);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, border-left 0.3s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay effect on hover */
.mahaid-markets .mahaid-market::before {
  content: '';
  position: absolute;
  top: 0; left: -50%;
  width: 200%;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0.05;
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.mahaid-markets .mahaid-market:hover::before {
  opacity: 0.15;
  transform: skewX(-10deg);
}

/* Card hover effect */
.mahaid-markets .mahaid-market:hover {
  transform: translateY(-10px) scale(1.03);
  border-left: 5px solid var(--primary-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

/* Market Subtitle */
.mahaid-markets .mahaid-subtitle {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Paragraph and List Styling */
.mahaid-markets .mahaid-market p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.mahaid-markets .mahaid-list {
  list-style: none;
  padding-left: 0;
}

.mahaid-markets .mahaid-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  transition: color 0.3s ease;
}

.mahaid-markets .mahaid-list li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Links inside market cards */
.mahaid-markets .mahaid-market a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mahaid-markets .mahaid-market a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Gradient highlight for strong text */
.mahaid-markets .mahaid-market strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .mahaid-markets .mahaid-title {
    font-size: 2rem;
  }

  .mahaid-markets .mahaid-subtitle {
    font-size: 1.4rem;
  }

  .mahaid-markets .mahaid-intro {
    font-size: 1rem;
    text-align: justify;
  }
}

/* Fade-in animation for cards */
.mahaid-markets .mahaid-market {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Team Section */
.team-section {
  background: var(--bg);
  padding: 60px 20px;
  text-align: center;
  color: var(--text);
}

.team-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-section .section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Team Member Card */
.team-member {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
  border-color: var(--primary);
}

.team-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--primary-dark);
  object-fit: cover;
  background: var(--dark);
}

/* Text */
.team-member h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 10px 0 5px;
}

.team-member .title {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 12px;
  font-weight: 500;
}

.team-member .bio {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Credentials */
.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.credential-badge {
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
  transition: background 0.3s ease;
}

.credential-badge:hover {
  background: var(--primary-dark);
  color: var(--light);
}
/* Press Section */
.press-section {
  padding: 60px 20px;
  background: var(--bg, #121212);
  color: var(--text, #f0f0f0);
  text-align: center;
}

.press-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary, #FFD700);
}

.press-section p {
  color: var(--text-muted, #a0a0a0);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Recognition Grid */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.recognition-item {
  background: var(--card-bg, #1a1a1a);
  border: 1px solid var(--border-color, #333);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0,0,0,0.6));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.recognition-item i {
  font-size: 3rem;
  color: var(--primary, #FFD700);
  margin-bottom: 15px;
}

.recognition-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--light, #fff);
}

.recognition-item p {
  font-size: 0.95rem;
  color: var(--gray, #aaa);
}

/* Media Mentions */
.media-mentions h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary, #FFD700);
}

.media-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logos i {
  font-size: 2.5rem;
  color: var(--secondary, #00BFFF);
  transition: color 0.3s ease;
}

.media-logos i:hover {
  color: var(--primary-dark, #D4AF37);
}

/* Media Mentions */
.media-mentions {
  margin-top: 40px;
}

.media-mentions h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logos img {
  max-height: 40px;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%);
}

.media-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0);
}
/* Knowledge Section */
.knowledge-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 70px 20px;
  text-align: center;
  color: var(--text);
  position: relative;
}

.knowledge-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.knowledge-section .section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Knowledge Grid */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

/* Knowledge Card */
.knowledge-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  border: 1px solid var(--border-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.knowledge-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Icon Styling */
.knowledge-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.knowledge-card:hover .knowledge-icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--secondary);
}

.knowledge-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.knowledge-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Link Button */
.knowledge-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.knowledge-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Webinar CTA */
.webinar-cta {
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 5px 25px rgba(212,175,55,0.4);
}

.webinar-cta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.webinar-cta p {
  font-size: 1rem;
  margin-bottom: 18px;
}

.webinar-cta .btn-primary {
  background: var(--dark);
  color: var(--primary);
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.webinar-cta .btn-primary:hover {
  background: var(--primary-dark);
  color: var(--light);
}
/* Compliance Section */
.compliance-section {
  background: #101010;
  padding: 70px 20px;
  color: var(--text);
  border-top: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
}

.compliance-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Compliance Grid */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* Info Box */
.compliance-info {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.compliance-info h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.compliance-info p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.compliance-info ul {
  list-style: none;
  padding: 0;
}

.compliance-info li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.compliance-info li::before {
  content: "✔";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* ================================
   Compliance & Responsible Gaming
================================ */
.compliance-section {
  background: var(--gradient-dark);
  color: var(--text);
  padding: 60px 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.compliance-section h2 {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.compliance-info h3,
.compliance-certificates h3,
.responsible-gaming h3 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.compliance-info p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.compliance-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compliance-info ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.compliance-info ul li::before {
  content: "✔";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Certificates */
.compliance-certificates .certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.certificate {
  background: var(--card-bg);
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.certificate:hover {
  transform: translateY(-5px);
}

.certificate i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.certificate p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Responsible Gaming */
.responsible-gaming {
  margin-top: 60px;
  text-align: center;
}

.responsible-gaming p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.responsible-feature {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.responsible-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.responsible-feature i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.responsible-feature h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.responsible-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.support-text {
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== HERO SECTION STYLING ===== */
.oci-hero {
  background: var(--gradient-dark, linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%));
  color: var(--text, #f0f0f0);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oci-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headline */
.oci-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary, #FFD700);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Sub-heading */
.oci-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted, #a0a0a0);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.oci-btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--gradient-gold, linear-gradient(135deg, #D4AF37, #FFD700));
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.6));
}

.oci-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Extended Content */
.oci-hero-content {
  margin-top: 3rem;
  text-align: left;
  background: var(--card-bg, #1a1a1a);
  border: 1px solid var(--border-color, #333333);
  border-radius: 20px;
  padding: 2.5rem;
  line-height: 1.8;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.6));
}

.oci-hero-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text, #f0f0f0);
}

.oci-hero-content a {
  color: var(--primary, #FFD700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.oci-hero-content a:hover {
  border-bottom: 1px solid var(--primary, #FFD700);
  color: var(--primary-dark, #D4AF37);
}

/* Responsive */
@media (max-width: 992px) {
  .oci-hero-title {
    font-size: 2rem;
  }
  .oci-hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .oci-hero {
    padding: 3rem 1rem;
  }
  .oci-hero-title {
    font-size: 1.7rem;
  }
  .oci-hero-content {
    padding: 1.5rem;
  }
}

.section-blog {
  padding: 60px 20px;
  background: #121212;
  color: #f0f0f0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-image {
  position: relative;
}
.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}
.category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FACC15;
  color: #000;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.blog-content {
  padding: 20px;
}
.blog-content h3 {
  color: #FACC15;
  margin: 10px 0;
}
.blog-content .excerpt {
  margin: 15px 0;
}
.read-more-btn {
  color: #FACC15;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.read-more-btn i {
  margin-left: 5px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  background: #1a1a1a;
  border: 1px solid #FACC15;
  color: #FACC15;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}
.page-btn.active {
  background: #FACC15;
  color: #000;
}
.page-btn:hover {
  background: #FACC15;
  color: #000;
}

.mahadev-id-section {
  background: var(--gradient-dark);
  padding: 50px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 40px auto;
}

.mahadev-id-container {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
}

.mahadev-id-container h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.mahadev-id-container p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.mahadev-id-container a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mahadev-id-container a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.mahadev-id-container strong {
  color: var(--light);
  font-weight: 700;
}

.mahadevbook-security {
  background: var(--gradient-dark, linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%));
  color: var(--text, #f0f0f0);
  padding: 60px 20px;
}

.mahadevbook-security-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mahadevbook-security-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.mahadevbook-security-text h2 {
  font-size: 2rem;
  color: var(--primary, #FFD700);
  margin-bottom: 20px;
  line-height: 1.3;
}

.mahadevbook-security-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-muted, #a0a0a0);
}

.mahadevbook-security-text a {
  color: var(--secondary, #00BFFF);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mahadevbook-security-text a:hover {
  color: var(--primary-dark, #D4AF37);
}

.mahadevbook-security-icon img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow, 0 4px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.mahadevbook-security-icon img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .mahadevbook-security-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .mahadevbook-security-icon {
    order: -1;
  }
}
.mahadevbook-security2 {
  padding: 60px 20px;
  background: var(--gradient-dark);
  color: var(--text);
}

.mahadevbook-security2-container {
  max-width: 1200px;
  margin: auto;
}

.mahadevbook-security2-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.mahadevbook-security2-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.mahadevbook-security2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mahadevbook-security2-list li {
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mahadevbook-security2-list li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.mahadevbook-security2-icon img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 900px) {
  .mahadevbook-security2-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mahadevbook-security2-list li {
    justify-content: flex-start;
  }
}
.mahadevbook-security2-list a {
  color: var(--primary); /* Yellow link */
  text-decoration: none;
  white-space: nowrap; /* Prevents Mahadev and Book from splitting into two lines */
  font-weight: 600;
}

.mahadevbook-security2-list a:hover {
  text-decoration: underline;
  color: var(--primary-dark); /* Slightly darker gold on hover */
}

.recent-blogs2-wrapper {
  padding: 40px 20px;
  background-color: #121212;
  text-align: center;
}

.recent-blogs2-wrapper h2 {
  font-size: 2rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Grid Container */
.recent-blogs2-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 20px;
  justify-items: center;
}

/* Blog Card */
.recent-blogs2-card {
  width: 100%;
  max-width: 280px;
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-blogs2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

.recent-blogs2-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #333;
}

.recent-blogs2-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFD700;
  color: #0a0a0a;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.recent-blogs2-content {
  padding: 12px 15px;
}

.recent-blogs2-date {
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-bottom: 6px;
  display: block;
}

.recent-blogs2-content h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.recent-blogs2-content a {
  color: #FFD700;
  font-weight: 600;
  text-decoration: none;
}

.recent-blogs2-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1200px) {
  .recent-blogs2-container {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  }
}

@media (max-width: 992px) {
  .recent-blogs2-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 600px) {
  .recent-blogs2-container {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}
.homepage-section {
  padding: 50px 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
  text-align: center;
  border-radius: 12px;
  margin: 40px 0;
}

.homepage-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.homepage-section h2 {
  color: #FFD700;
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.homepage-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}

.homepage-section .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background-color: #FFD700;
  color: #0a0a0a;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.homepage-section .cta-button:hover {
  background-color: #D4AF37;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .homepage-section h2 {
    font-size: 1.8rem;
  }

  .homepage-section p {
    font-size: 1rem;
  }

  .homepage-section .cta-button {
    padding: 12px 25px;
  }
}

/* Compliance Section Styles */
.compliance {
  background: var(--card-bg);
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
}

.compliance h2 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 15px;
}

.compliance p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0;
}

.compliance a {
  color: var(--primary); /* Changed to yellow */
  text-decoration: none;
  font-weight: 500;
}

.compliance a:hover {
  color: var(--primary-dark); /* Darker gold on hover */
}

.age-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 6px;
  font-size: 13px;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .compliance {
    padding: 25px 15px;
    margin: 25px 0;
  }

  .compliance h2 {
    font-size: 18px;
  }

  .compliance p {
    font-size: 14px;
    line-height: 1.6;
  }

  .age-badge {
    padding: 2px 6px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .compliance {
    padding: 20px 10px;
    margin: 20px 0;
  }

  .compliance h2 {
    font-size: 16px;
  }

  .compliance p {
    font-size: 13px;
    line-height: 1.5;
  }

  .age-badge {
    padding: 2px 5px;
    font-size: 11px;
  }
}
.hero-cta {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;    /* center horizontally */
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Primary Gold Button */
.cta-btn.primary {
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  text-align: center;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.8);
  background: var(--primary-dark);
  color: var(--light);
}

/* Secondary WhatsApp Button */
.cta-btn.secondary {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}
.section-cta {
  text-align: center;
  margin: 60px auto;
  padding: 50px 30px;
  background: var(--card-bg);
  border-radius: 2xl;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.section-cta h2 {
  font-size: 26px;
  color: var(--gradient-gold);
  margin: 0;
  font-weight: 700;
}

.section-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
}

/* Primary CTA Button (Gold) */
.section-cta .cta-btn.primary {
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease-in-out;
}

.section-cta .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.8);
  background: var(--primary-dark);
  color: var(--light);
}
.why-choose-cta {
  text-align: center;
  margin: 60px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 2xl;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.why-choose-cta h2 {
  font-size: 26px;
  color: var(--gradient-gold);
  margin: 0;
  font-weight: 700;
}

.why-choose-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
}

/* Primary CTA Button */
.why-choose-cta .cta-btn.primary {
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease-in-out;
}

.why-choose-cta .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.8);
  background: var(--primary-dark);
  color: var(--light);
}
.footer-cta {
  text-align: center;
  margin: 60px auto 40px auto;
  padding: 50px 30px;
  background: var(--card-bg);
  border-radius: 2xl;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-cta h2 {
  font-size: 26px;
  color: var(--gradient-gold);
  margin: 0;
  font-weight: 700;
}

.footer-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
}

/* Primary CTA Button */
.footer-cta .cta-btn.primary {
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease-in-out;
}

.footer-cta .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.8);
  background: var(--primary-dark);
  color: var(--light);
}
/* ==============================
   ID Setup Guide Section
================================ */
.id-setup-guide {
  background: var(--card-bg);
  color: var(--text);
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 40px auto;
  max-width: 900px;
}

.id-setup-guide h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.id-setup-guide p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  text-align: center;
}

/* Links inside section */
.id-setup-guide a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}
.id-setup-guide a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.id-setup-guide .setup-steps {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.id-setup-guide .setup-steps li {
  background: var(--bg);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-dark);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.id-setup-guide .setup-steps li strong {
  color: var(--primary);
}
.id-setup-guide .setup-steps li:hover {
  background: var(--dark);
  transform: translateX(5px);
}

/* CTA Button */
.id-setup-guide .cta-btn {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: bold;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.id-setup-guide .cta-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ==============================
   Guide Section
================================ */
.guide-section {
  background: var(--gradient-dark);
  color: var(--text);
  padding: 60px 20px;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 1100px;
}
.guide-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.guide-section .section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.guide-section .section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.guide-content h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  color: var(--primary);
}
.guide-content h4 {
  font-size: 1.2rem;
  margin-top: 20px;
  color: var(--secondary);
}
.guide-content p,
.guide-content ul {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.guide-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}
.guide-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.strategy-cards {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.strategy-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.strategy-card:hover {
  transform: translateY(-5px);
}

/* ==============================
   Responsive Design
================================ */
@media (max-width: 768px) {
  .id-setup-guide,
  .guide-section {
    padding: 30px 15px;
  }
  .id-setup-guide h2,
  .guide-section .section-title h2 {
    font-size: 1.5rem;
  }
  .strategy-cards {
    flex-direction: column;
    gap: 20px;
  }
  .strategy-card {
    flex: 1 1 100%;
    padding: 15px;
  }
}
/* ==============================
   Comparison Section
================================ */
.comparison-section {
  background: var(--card-bg);
  color: var(--text);
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 50px auto;
  max-width: 1200px;
}

.comparison-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-section .section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.comparison-section .section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.comparison-card {
  background: var(--bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.comparison-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.comparison-card strong {
  color: var(--primary);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* CTA Button */
.comparison-cta {
  text-align: center;
  margin-top: 25px;
}

.comparison-cta .cta-btn {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: bold;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.comparison-cta .cta-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ==============================
   Responsive Design
================================ */
@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 15px;
  }

  .comparison-section .section-title h2 {
    font-size: 1.5rem;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* ==============================
   Trusted Across India Section
================================ */
.trusted-section {
  background: var(--gradient-dark);
  color: var(--text);
  padding: 60px 20px;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 1200px;
}

.trusted-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.trusted-section .section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.trusted-section .section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.trusted-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.city-card {
  background: var(--card-bg);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.city-card:hover {
  transform: translateY(-5px);
}

/* Testimonials */
.trusted-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--primary);
}

/* CTA Button */
.trusted-cta {
  text-align: center;
}

.trusted-cta .cta-btn {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: bold;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.trusted-cta .cta-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ==============================
   Responsive Design
================================ */
@media (max-width: 768px) {
  .trusted-section {
    padding: 40px 15px;
  }

  .trusted-section .section-title h2 {
    font-size: 1.5rem;
  }

  .trusted-testimonials {
    grid-template-columns: 1fr;
  }

  .city-card {
    flex: 1 1 45%;
    text-align: center;
  }
}

/* ==============================
   Mahadev Book WhatsApp Number Section
================================ */
.whatsapp-section {
  background: var(--card-bg);
  color: var(--text);
  padding: 60px 20px;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 900px;
  text-align: center;
  box-shadow: var(--shadow);
}

.whatsapp-section .section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.whatsapp-section .section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.whatsapp-contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.whatsapp-contact p a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-contact p a:hover {
  text-decoration: underline;
}

/* CTA Button */
.whatsapp-contact .cta-btn.secondary {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-contact .cta-btn.secondary:hover {
  background: #25D366;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-section {
    padding: 40px 15px;
  }

  .whatsapp-section .section-title h2 {
    font-size: 1.5rem;
  }
}
/* Default: hide on desktop */
.mobile-menu-btn {
  display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    display: block;
    height: 3px;
    background-color: var(--primary, #FFD700); /* Mahadev Book gold */
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Optional toggle animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hide full navbar until toggled */
  .navbar {
    display: none;
  }
  .navbar.open {
    display: block;
  }
}
/* ⚡ Modern Mahadev Book Reviews */
.reviews-modern {
  background: var(--gradient-dark);
  padding: 100px 20px;
  text-align: center;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.reviews-modern .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.reviews-modern .section-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 🔹 Responsive Image Grid */
.reviews-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: center;
  padding: 0 10px;
}

.review-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 380px;
  cursor: pointer;
}

.review-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(255,215,0,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.review-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.review-item:hover::before {
  opacity: 1;
}

.review-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.review-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* 🌙 Responsive Design */
@media (max-width: 768px) {
  .reviews-modern {
    padding: 60px 15px;
  }
  .reviews-modern .section-title {
    font-size: 1.8rem;
  }
  .reviews-modern .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }
}