/* =============================================
   96M Online Casino Malaysia - Stylesheet
   Primary: #0524DD | Accent: #FF8A00 | Base: White
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0524dd;
  --primary-light: #1a3aff;
  --primary-dark: #0318a8;
  --accent: #FF8A00;
  --accent-light: #FFA033;
  --accent-dark: #cc6f00;
  --bg-dark: #ffffff;
  --bg-card: #f4f6ff;
  --bg-card-hover: #e8eeff;
  --bg-nav: #ffffff;
  --text-primary: #0a0a1a;
  --text-secondary: #3a4060;
  --text-muted: #7a85a8;
  --border: rgba(5, 36, 221, 0.15);
  --border-accent: rgba(255, 138, 0, 0.3);
  --shadow-blue: 0 0 30px rgba(5, 36, 221, 0.2);
  --shadow-orange: 0 0 20px rgba(255, 138, 0, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.text-accent { color: var(--accent); }
.text-primary-color { color: var(--primary-light); }
.text-center { text-align: center; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(5, 36, 221, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(5, 36, 221, 0.08);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  box-shadow: var(--shadow-orange);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(5, 36, 221, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 138, 0, 0.07) 0%, transparent 50%),
    #ffffff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(5, 36, 221, 0.07) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-badge::before {
  content: '●';
  color: #00cc77;
  font-size: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(5, 36, 221, 0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 30px rgba(5, 36, 221, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 138, 0, 0.3);
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 30px rgba(255, 138, 0, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* --- Section Headings --- */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3, .card h4 {
  margin-bottom: 0.75rem;
}

/* --- Game Cards --- */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-orange);
}

.game-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), rgba(5, 36, 221, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-img img {
  transform: scale(1.06);
}

.game-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  z-index: 1;
}

.game-card-body {
  padding: 1.5rem;
}

.game-card-tag {
  display: inline-block;
  background: rgba(255, 138, 0, 0.12);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.game-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* --- Feature List --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 138, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.feature-text p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* --- Steps --- */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.step:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.step-number {
  counter-increment: step;
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(5, 36, 221, 0.3);
}

.step-content h4 {
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Provider Badges --- */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.provider-badge {
  padding: 0.6rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.provider-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 138, 0, 0.05);
}

/* --- Bonus Banner --- */
.bonus-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, rgba(255, 138, 0, 0.15) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 138, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.bonus-amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 138, 0, 0.4);
  margin-bottom: 0.5rem;
}

.bonus-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.bonus-banner p {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td {
  background: rgba(5, 36, 221, 0.04);
  color: var(--text-primary);
}

/* --- Info Boxes --- */
.info-box {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box.accent {
  border-left-color: var(--accent);
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* --- FAQ --- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(5, 36, 221, 0.08);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 130px 0 60px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(5, 36, 221, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 138, 0, 0.06) 0%, transparent 50%),
    #ffffff;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(5, 36, 221, 0.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep { color: var(--text-muted); }

/* --- Highlight Strip --- */
.highlight-strip {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent), var(--primary), var(--primary-dark));
  padding: 1rem 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strip-item::before {
  content: '★';
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  border-top: 3px solid var(--accent);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand .nav-logo-text span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.65);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.footer-disclaimer {
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar .container {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(5, 36, 221, 0.1);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bonus-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }
}

/* --- Utility --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-hot {
  background: #ff4444;
  color: #fff;
}

.badge-new {
  background: #00cc77;
  color: #fff;
}

.badge-popular {
  background: var(--accent);
  color: #fff;
}

/* --- Decorative elements --- */
.glow-blue {
  box-shadow: 0 0 40px rgba(5, 36, 221, 0.2);
}

.glow-orange {
  box-shadow: 0 0 40px rgba(255, 138, 0, 0.2);
}

.border-gradient {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

/* --- Two column content layout --- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.content-visual {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  font-size: 5rem;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}

/* Rating stars */
.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Checklist */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
