/* =====================================================
   STYLE-10: Indian Premium Fusion — votemichaellai.com
   Dom prefix: ipm | ARCH-B FULLBLEED_CASCADE
   ===================================================== */

:root {
  --ipm-bg: #0D0820;
  --ipm-gold: #FFD700;
  --ipm-saffron: #FF6B35;
  --ipm-purple: #4B0082;
  --ipm-deep-purple: #1A0A35;
  --ipm-card-bg: #160C2E;
  --ipm-border: rgba(255,215,0,0.3);
  --ipm-text: #E8E0F0;
  --ipm-text-muted: #9B8DB0;
  --ipm-jewel-ruby: #9B111E;
  --ipm-jewel-sapphire: #0F52BA;
  --ipm-jewel-emerald: #046307;
  --ipm-jewel-amber: #FFBF00;
  --ipm-shimmer-1: rgba(255,215,0,0.15);
  --ipm-shimmer-2: rgba(255,107,53,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ipm-bg);
  color: var(--ipm-text);
  font-family: 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================== MANDALA BACKGROUNDS ===================== */
.ipm-mandala-bg {
  position: relative;
  overflow: hidden;
}
.ipm-mandala-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 30deg,
    var(--ipm-shimmer-1) 30deg 60deg,
    transparent 60deg 90deg,
    var(--ipm-shimmer-2) 90deg 120deg,
    transparent 120deg 150deg,
    var(--ipm-shimmer-1) 150deg 180deg,
    transparent 180deg 210deg,
    var(--ipm-shimmer-2) 210deg 240deg,
    transparent 240deg 270deg,
    var(--ipm-shimmer-1) 270deg 300deg,
    transparent 300deg 330deg,
    var(--ipm-shimmer-2) 330deg 360deg
  );
  border-radius: 50%;
  animation: ipm-mandala-spin 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.ipm-mandala-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: conic-gradient(
    from 45deg,
    transparent 0deg 45deg,
    var(--ipm-shimmer-1) 45deg 90deg,
    transparent 90deg 135deg,
    var(--ipm-shimmer-2) 135deg 180deg,
    transparent 180deg 225deg,
    var(--ipm-shimmer-1) 225deg 270deg,
    transparent 270deg 315deg,
    var(--ipm-shimmer-2) 315deg 360deg
  );
  border-radius: 50%;
  animation: ipm-mandala-spin 60s linear infinite reverse;
  pointer-events: none;
  z-index: 0;
}
@keyframes ipm-mandala-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===================== GOLDEN SHIMMER ===================== */
@keyframes ipm-shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.ipm-shimmer-text {
  background: linear-gradient(90deg, var(--ipm-gold) 0%, #fff8dc 40%, var(--ipm-saffron) 60%, var(--ipm-gold) 100%);
  background-size: 400px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ipm-shimmer 3s ease-in-out infinite;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

a { color: var(--ipm-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--ipm-saffron); }

/* ===================== LAYOUT ===================== */
.ipm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===================== HEADER ===================== */
.ipm-header {
  background: linear-gradient(135deg, #0D0820 0%, #1A0A35 50%, #0D0820 100%);
  border-bottom: 2px solid var(--ipm-gold);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(255,215,0,0.15);
}
.ipm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ipm-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ipm-gold), var(--ipm-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ipm-nav {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.ipm-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ipm-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.ipm-nav a:hover { color: var(--ipm-gold); border-bottom-color: var(--ipm-gold); }

/* ===================== HERO ===================== */
.ipm-hero {
  background: linear-gradient(135deg, #0D0820 0%, #200A40 40%, #0D0820 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.ipm-hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--ipm-jewel-ruby), var(--ipm-purple));
  border: 1px solid var(--ipm-gold);
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ipm-gold);
  margin-bottom: 20px;
}
.ipm-hero h1 {
  margin-bottom: 20px;
  text-transform: capitalize;
}
.ipm-hero-sub {
  font-size: 1.1rem;
  color: var(--ipm-text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}
.ipm-hero-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ipm-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ipm-text-muted);
}
.ipm-meta-item .icon {
  color: var(--ipm-gold);
  font-size: 1.1rem;
}

/* ===================== CTA BUTTON ===================== */
.ipm-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ipm-gold), var(--ipm-saffron));
  color: #0D0820;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  text-decoration: none;
}
.ipm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
  color: #0D0820;
}
.ipm-btn-outline {
  background: transparent;
  border: 2px solid var(--ipm-gold);
  color: var(--ipm-gold);
  box-shadow: none;
}
.ipm-btn-outline:hover {
  background: linear-gradient(135deg, var(--ipm-gold), var(--ipm-saffron));
  color: #0D0820;
}

/* ===================== TRUST BADGES ===================== */
.ipm-trust-bar {
  background: linear-gradient(90deg, var(--ipm-deep-purple), #1A0A35, var(--ipm-deep-purple));
  border-top: 1px solid var(--ipm-border);
  border-bottom: 1px solid var(--ipm-border);
  padding: 16px 0;
}
.ipm-trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ipm-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ipm-text-muted);
}
.ipm-trust-item .checkmark {
  color: #00E676;
  font-size: 1.1rem;
}

/* ===================== SECTION STYLES ===================== */
.ipm-section {
  padding: 60px 0;
}
.ipm-section-dark {
  background: var(--ipm-deep-purple);
}
.ipm-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.ipm-section-header h2 {
  color: var(--ipm-gold);
  margin-bottom: 12px;
}
.ipm-section-header p {
  color: var(--ipm-text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.ipm-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--ipm-gold), var(--ipm-saffron));
  margin: 16px auto;
  border-radius: 2px;
}

/* ===================== CASINO CARDS (FS-2) ===================== */
.ipm-casino-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ipm-casino-card {
  background: var(--ipm-card-bg);
  border: 1px solid var(--ipm-border);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ipm-casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ipm-gold), var(--ipm-saffron), var(--ipm-purple));
}
.ipm-casino-card:hover {
  border-color: var(--ipm-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.15);
}
.ipm-casino-rank {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ipm-gold), var(--ipm-saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0D0820;
  flex-shrink: 0;
}
.ipm-casino-info h3 {
  font-size: 1.1rem;
  color: var(--ipm-text);
  margin-bottom: 6px;
}
.ipm-casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ipm-tag {
  background: rgba(75,0,130,0.4);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--ipm-gold);
}
.ipm-tag.green { background: rgba(4,99,7,0.4); border-color: rgba(0,230,118,0.3); color: #00E676; }
.ipm-tag.saffron { background: rgba(255,107,53,0.2); border-color: rgba(255,107,53,0.4); color: var(--ipm-saffron); }
.ipm-casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ipm-stars {
  color: var(--ipm-gold);
  font-size: 1rem;
}
.ipm-rating-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ipm-gold);
  font-family: 'Poppins', sans-serif;
}

/* ===================== JEWEL CARDS ===================== */
.ipm-jewel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ipm-jewel-card {
  background: var(--ipm-card-bg);
  border: 1px solid var(--ipm-border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ipm-jewel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--ipm-shimmer-1));
  pointer-events: none;
}
.ipm-jewel-card:hover {
  border-color: var(--ipm-gold);
  box-shadow: 0 8px 30px rgba(255,215,0,0.1);
  transform: translateY(-3px);
}
.ipm-jewel-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.ipm-jewel-card h3 {
  color: var(--ipm-gold);
  margin-bottom: 12px;
}
.ipm-jewel-card p {
  color: var(--ipm-text-muted);
  font-size: 0.95rem;
}

/* ===================== FESTIVE BORDER ===================== */
.ipm-festive-box {
  border: 2px solid transparent;
  border-radius: 16px;
  background: 
    linear-gradient(var(--ipm-card-bg), var(--ipm-card-bg)) padding-box,
    linear-gradient(135deg, var(--ipm-gold), var(--ipm-saffron), var(--ipm-purple), var(--ipm-gold)) border-box;
  padding: 32px;
}

/* ===================== TABLES ===================== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ipm-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--ipm-border);
}
table {
  width: 100%;
  border-collapse: collapse;
}
thead {
  background: linear-gradient(90deg, var(--ipm-purple), #2D0060);
}
thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ipm-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid rgba(255,215,0,0.08);
  transition: background 0.2s;
}
tbody tr:hover { background: rgba(255,215,0,0.04); }
tbody td {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--ipm-text);
  vertical-align: middle;
}
.ipm-yes { color: #00E676; font-weight: 600; }
.ipm-no { color: #FF5252; }
.ipm-warn { color: var(--ipm-saffron); }

/* ===================== WIDGETS ===================== */
.ipm-widget {
  background: var(--ipm-card-bg);
  border: 1px solid var(--ipm-border);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}
.ipm-widget h3 {
  color: var(--ipm-gold);
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.ipm-widget-desc {
  color: var(--ipm-text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Safety Quiz */
.ipm-quiz-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ipm-text);
  margin-bottom: 16px;
}
.ipm-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ipm-quiz-option {
  background: rgba(75,0,130,0.3);
  border: 1px solid var(--ipm-border);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ipm-text);
  transition: all 0.3s;
  text-align: left;
  width: 100%;
}
.ipm-quiz-option:hover { border-color: var(--ipm-gold); background: rgba(255,215,0,0.08); }
.ipm-quiz-option.correct { border-color: #00E676; background: rgba(0,230,118,0.1); color: #00E676; }
.ipm-quiz-option.wrong { border-color: #FF5252; background: rgba(255,82,82,0.1); color: #FF5252; }
.ipm-quiz-feedback {
  display: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 16px;
}
.ipm-quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.ipm-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,215,0,0.2);
  border: 1px solid var(--ipm-border);
}
.ipm-progress-dot.done { background: var(--ipm-gold); }
.ipm-progress-dot.active { background: var(--ipm-saffron); }

/* License Checker */
.ipm-checker-form {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ipm-input {
  flex: 1;
  min-width: 200px;
  background: rgba(75,0,130,0.2);
  border: 1px solid var(--ipm-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--ipm-text);
  font-size: 0.95rem;
  font-family: 'Noto Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.ipm-input:focus { border-color: var(--ipm-gold); }
.ipm-input::placeholder { color: var(--ipm-text-muted); }
.ipm-checker-result {
  display: none;
  padding: 20px;
  border-radius: 12px;
  background: rgba(75,0,130,0.2);
  border: 1px solid var(--ipm-border);
}
.ipm-checker-result.show { display: block; }

/* Bonus Calculator */
.ipm-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.ipm-calc-label {
  font-size: 0.85rem;
  color: var(--ipm-text-muted);
  margin-bottom: 6px;
}
.ipm-calc-result {
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,107,53,0.1));
  border: 1px solid var(--ipm-gold);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.ipm-calc-result .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ipm-gold);
  font-family: 'Poppins', sans-serif;
}
.ipm-calc-result .label { color: var(--ipm-text-muted); font-size: 0.85rem; }
.ipm-range-input {
  width: 100%;
  accent-color: var(--ipm-gold);
  cursor: pointer;
  height: 6px;
  border-radius: 3px;
}
.ipm-range-val {
  color: var(--ipm-gold);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 4px;
}

/* Verification Checker */
.ipm-verify-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ipm-verify-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(75,0,130,0.15);
  border: 1px solid rgba(255,215,0,0.1);
  cursor: pointer;
  transition: all 0.3s;
}
.ipm-verify-step:hover { border-color: var(--ipm-gold); }
.ipm-verify-step.checked { border-color: #00E676; background: rgba(0,230,118,0.08); }
.ipm-verify-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ipm-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ipm-gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.ipm-verify-step.checked .ipm-verify-num {
  background: #00E676;
  color: #0D0820;
}
.ipm-verify-step.checked .ipm-verify-num::after { content: '✓'; }
.ipm-verify-step:not(.checked) .ipm-verify-num::after { content: attr(data-num); }

/* ===================== WARNING BOX ===================== */
.ipm-warning-box {
  background: rgba(155,17,30,0.15);
  border: 2px solid rgba(155,17,30,0.6);
  border-left: 6px solid var(--ipm-saffron);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}
.ipm-warning-box h3 {
  color: var(--ipm-saffron);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ipm-warning-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ipm-warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ipm-text);
}
.ipm-warning-list li::before { content: '⚠️'; flex-shrink: 0; }

/* ===================== INFO BOX ===================== */
.ipm-info-box {
  background: rgba(15,82,186,0.15);
  border: 1px solid rgba(15,82,186,0.4);
  border-left: 4px solid #0F52BA;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.ipm-success-box {
  background: rgba(4,99,7,0.15);
  border: 1px solid rgba(4,99,7,0.4);
  border-left: 4px solid #00E676;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

/* ===================== FAQ ===================== */
.ipm-faq-item {
  border: 1px solid var(--ipm-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.ipm-faq-q {
  padding: 18px 24px;
  background: var(--ipm-card-bg);
  cursor: pointer;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--ipm-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  font-size: 0.95rem;
}
.ipm-faq-q:hover { background: rgba(255,215,0,0.06); }
.ipm-faq-q.open { color: var(--ipm-gold); }
.ipm-faq-icon { color: var(--ipm-gold); font-size: 1.2rem; transition: transform 0.3s; }
.ipm-faq-q.open .ipm-faq-icon { transform: rotate(45deg); }
.ipm-faq-a {
  display: none;
  padding: 20px 24px;
  background: rgba(75,0,130,0.1);
  color: var(--ipm-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid var(--ipm-border);
}

/* ===================== AUTHOR CARD ===================== */
.ipm-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ipm-card-bg);
  border: 1px solid var(--ipm-border);
  border-radius: 16px;
  padding: 24px;
  margin: 40px 0;
}
.ipm-author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--ipm-gold);
  object-fit: cover;
  flex-shrink: 0;
}
.ipm-author-info h4 { color: var(--ipm-gold); margin-bottom: 4px; }
.ipm-author-info p { color: var(--ipm-text-muted); font-size: 0.9rem; }

/* ===================== FOOTER ===================== */
.ipm-footer {
  background: linear-gradient(180deg, #0A0618 0%, #060310 100%);
  border-top: 2px solid var(--ipm-border);
  padding: 48px 0 24px;
}
.ipm-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.ipm-footer-col h4 {
  color: var(--ipm-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.ipm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ipm-footer-links a { color: var(--ipm-text-muted); font-size: 0.9rem; }
.ipm-footer-links a:hover { color: var(--ipm-gold); }
.ipm-footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.1);
  padding-top: 24px;
  text-align: center;
  color: var(--ipm-text-muted);
  font-size: 0.8rem;
  line-height: 1.8;
}
.ipm-responsible-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.ipm-resp-badge {
  background: rgba(75,0,130,0.3);
  border: 1px solid var(--ipm-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ipm-text-muted);
}

/* ===================== BREADCRUMB ===================== */
.ipm-breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--ipm-text-muted);
}
.ipm-breadcrumb a { color: var(--ipm-text-muted); }
.ipm-breadcrumb span { color: var(--ipm-gold); }

/* ===================== CHECKLIST ===================== */
.ipm-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ipm-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ipm-text);
  line-height: 1.6;
}
.ipm-checklist li::before {
  content: '✦';
  color: var(--ipm-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== PROS/CONS ===================== */
.ipm-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ipm-pros, .ipm-cons {
  background: var(--ipm-card-bg);
  border-radius: 12px;
  padding: 20px;
}
.ipm-pros { border: 1px solid rgba(0,230,118,0.2); }
.ipm-cons { border: 1px solid rgba(255,82,82,0.2); }
.ipm-pros h4 { color: #00E676; margin-bottom: 12px; }
.ipm-cons h4 { color: #FF5252; margin-bottom: 12px; }
.ipm-pros ul, .ipm-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ipm-pros li::before { content: '✓ '; color: #00E676; font-weight: 700; }
.ipm-cons li::before { content: '✗ '; color: #FF5252; font-weight: 700; }
.ipm-pros li, .ipm-cons li { font-size: 0.88rem; color: var(--ipm-text); }

/* ===================== SCORE BAR ===================== */
.ipm-score-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  height: 8px;
  margin: 6px 0 12px;
  overflow: hidden;
}
.ipm-score-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ipm-gold), var(--ipm-saffron));
  transition: width 0.8s ease;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .ipm-casino-card {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }
  .ipm-casino-rating {
    grid-column: 2;
    flex-direction: row;
    justify-content: flex-start;
  }
  .ipm-pros-cons { grid-template-columns: 1fr; }
  .ipm-calc-grid { grid-template-columns: 1fr; }
  .ipm-nav { gap: 16px; }
  .ipm-hero { padding: 50px 0 40px; }
  .ipm-author-card { flex-direction: column; text-align: center; }
  .ipm-checker-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .ipm-hero-meta { gap: 16px; }
  .ipm-trust-items { gap: 20px; }
  .ipm-jewel-grid { grid-template-columns: 1fr; }
}

/* ===================== UTILITIES ===================== */
.ipm-text-gold { color: var(--ipm-gold); }
.ipm-text-saffron { color: var(--ipm-saffron); }
.ipm-text-muted { color: var(--ipm-text-muted); }
.ipm-mt-0 { margin-top: 0; }
.ipm-mb-16 { margin-bottom: 16px; }
.ipm-mb-24 { margin-bottom: 24px; }
.ipm-mb-32 { margin-bottom: 32px; }
.ipm-text-center { text-align: center; }
.ipm-bold { font-weight: 700; }
strong { font-weight: 700; color: var(--ipm-text); }

/* ===================== GOOGLE FONTS FALLBACK ===================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Noto+Sans:wght@400;600&display=swap');

/* ===================== FEATURED SNIPPET BLOCKS ===================== */
.fs-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ipm-border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}
.fs-block.fs-paragraph p {
  line-height: 1.8;
  color: var(--ipm-text-muted);
}
.fs-block.fs-list ul {
  margin: 0;
  color: var(--ipm-text-muted);
}
.fs-block.fs-list li {
  padding: 4px 0;
}
table.fs-block {
  border-radius: 0;
  border: none;
}
