/* Avis casino - styles additionnels */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; margin-bottom: 3px; vertical-align: middle;
}
.main-nav .dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px; min-width: 240px;
  box-shadow: var(--shadow-lg); display: none; list-style: none;
  z-index: 60; max-height: 380px; overflow-y: auto;
}
.main-nav .has-dropdown:hover .dropdown-menu,
.main-nav .has-dropdown:focus-within .dropdown-menu { display: block; }
.main-nav .dropdown-menu li { margin: 0; }
.main-nav .dropdown-menu a { display: block; padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--text); }
.main-nav .dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
.main-nav .dropdown-menu .see-all { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
.main-nav .dropdown-menu .see-all a { color: var(--primary); font-weight: 600; }

.breadcrumb { padding: 18px 0 6px; font-size: 13.5px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 6px; opacity: .6; }

.casino-page { padding: 12px 0 56px; }
.casino-page h1 { font-size: 36px; margin-bottom: 8px; line-height: 1.18; }
.casino-page .lede { font-size: 17px; color: var(--muted); margin-bottom: 18px; max-width: 1000px; }
.casino-page .rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; font-size: 14.5px; color: var(--muted); }
.casino-page .rating-row .stars { color: var(--accent); letter-spacing: 2px; font-size: 18px; }

.casino-hero {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 240px 1fr; gap: 28px;
  align-items: center; margin-bottom: 36px;
}
.casino-hero .logo-wrap {
  background: var(--bg); border-radius: 12px; padding: 22px;
  display: flex; align-items: center; justify-content: center; min-height: 130px;
}
.casino-hero .logo-wrap img { max-height: 110px; width: auto; max-width: 100%; }
.casino-hero h2 { font-size: 17px; margin-bottom: 14px; color: var(--primary-dark); text-transform: uppercase; letter-spacing: 1px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-item { background: var(--bg); border-radius: 10px; padding: 12px 14px; }
.stat-item .label { font-family: 'Poppins', sans-serif; font-size: 11.5px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); margin-bottom: 4px; }
.stat-item .value { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--primary-dark); line-height: 1.3; }

.casino-banner { margin: 0 0 36px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.casino-banner img { display: block; width: 100%; }

.casino-body { max-width: 1000px; }
.casino-body h2 { font-size: 24px; margin-top: 44px; margin-bottom: 10px; }
.casino-body h3 { font-size: 19px; margin-top: 26px; margin-bottom: 8px; color: var(--primary-dark); }
.casino-body p { margin-bottom: 14px; font-size: 16.5px; line-height: 1.7; }
.casino-body strong { color: var(--primary-dark); font-weight: 700; }
.casino-body ul, .casino-body ol { margin: 6px 0 18px 0; padding-left: 22px; }
.casino-body li { margin-bottom: 6px; line-height: 1.6; }

.casino-body .compare-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.casino-body .compare-table th, .casino-body .compare-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
.casino-body .compare-table th { background: var(--primary); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 13.5px; text-transform: uppercase; letter-spacing: .5px; }
.casino-body .compare-table tr:last-child td { border-bottom: none; }
.casino-body .compare-table tr:nth-child(even) td { background: var(--bg); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 22px 0 30px; }
.pros-cons .box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.pros-cons .box h4 { font-family: 'Poppins', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.pros-cons .pros h4 { color: #2f7d4a; }
.pros-cons .cons h4 { color: #b94545; }
.pros-cons ul { margin: 0; padding-left: 0; list-style: none; }
.pros-cons li { padding-left: 22px; position: relative; margin-bottom: 8px; line-height: 1.55; }
.pros-cons .pros li::before { content: "+"; position: absolute; left: 0; font-weight: 700; color: #2f7d4a; }
.pros-cons .cons li::before { content: "-"; position: absolute; left: 0; font-weight: 700; color: #b94545; }

.faq { margin: 36px 0; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; padding: 4px 18px; }
.faq summary { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; padding: 14px 0; cursor: pointer; color: var(--primary-dark); }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq details p { padding: 12px 0 14px; font-size: 15.5px; line-height: 1.65; color: var(--text); }

.disclaimer-18 { background: #2e2520; color: #f3e4d4; border-radius: var(--radius); padding: 20px 22px; margin: 30px 0; display: flex; gap: 16px; align-items: flex-start; font-size: 14.5px; line-height: 1.6; }
.disclaimer-18 .badge { background: #c84545; color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; padding: 6px 10px; border-radius: 8px; flex-shrink: 0; }

.casino-related { margin: 48px 0 0; background: var(--card); border-top: 1px solid var(--border); padding: 36px 0; }
.casino-related h2 { font-size: 22px; margin-bottom: 18px; text-align: left; }
.casino-related .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.casino-related .card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.casino-related .card h3 { font-size: 16px; margin-bottom: 4px; }
.casino-related .card a { color: var(--primary); font-weight: 600; }

.silo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 48px; }
.silo-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s, transform .15s; }
.silo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.silo-card .logo-wrap { background: var(--bg); border-radius: 10px; height: 90px; display: flex; align-items: center; justify-content: center; padding: 14px; }
.silo-card .logo-wrap img { max-height: 60px; width: auto; max-width: 100%; }
.silo-card .logo-wrap.placeholder { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary-dark); font-size: 22px; }
.silo-card h3 { font-size: 18px; margin: 0; }
.silo-card .meta { font-size: 13.5px; color: var(--muted); }
.silo-card .cta { margin-top: auto; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--primary); }
.silo-card.coming-soon { opacity: .72; }
.silo-card.coming-soon .cta { color: var(--muted); }

.site-footer .container { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

@media (max-width: 720px) {
  .casino-hero { grid-template-columns: 1fr; }
  .casino-hero .logo-wrap { min-height: 100px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .casino-related .grid { grid-template-columns: 1fr; }
  .silo-grid { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
  .casino-page h1 { font-size: 28px; }
  .casino-body { max-width: 100%; }
  .main-nav .dropdown-menu { position: static; box-shadow: none; }
}

/* === Design polish === */

/* Editorial meta (author + date + reading time) */
.casino-meta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin: 6px 0 22px;
  font-size: 14px; color: var(--muted);
}
.casino-meta .author {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--primary-dark);
}
.casino-meta .author .badge {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.casino-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); display: inline-block; }
.casino-meta svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; opacity: .7; }

/* Section accent under H2 */
.casino-body h2 {
  position: relative;
  padding-bottom: 10px;
}
.casino-body h2::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 48px; height: 3px; background: var(--accent); border-radius: 2px;
}

/* Hero card accent border */
.casino-hero { border-left: 4px solid var(--accent); }

/* Stats grid icons */
.stat-item { position: relative; }
.stat-item .label { display: flex; align-items: center; gap: 6px; }
.stat-item .label svg {
  width: 13px; height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Quick verdict callout */
.quick-verdict {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: var(--radius);
  padding: 24px 28px; margin: 6px 0 30px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  box-shadow: var(--shadow);
}
.quick-verdict .label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px;
  opacity: .85; margin-bottom: 6px;
}
.quick-verdict p { font-size: 16.5px; line-height: 1.55; margin: 0; }
.quick-verdict .score-block {
  text-align: center; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2);
}
.quick-verdict .score {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 38px; line-height: 1; color: var(--accent);
}
.quick-verdict .out-of { font-size: 16px; opacity: .85; }

/* Pros / cons with SVG icons in colored discs */
.pros-cons li { padding-left: 30px; }
.pros-cons li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background-position: center; background-repeat: no-repeat; background-size: 12px;
  font-size: 0;
}
.pros-cons .pros li::before {
  background-color: #e4f2e9;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232f7d4a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8.5 6.5 12 13 4.5'/></svg>");
}
.pros-cons .cons li::before {
  background-color: #f4dada;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23b94545' stroke-width='2.4' stroke-linecap='round'><line x1='4' y1='4' x2='12' y2='12'/><line x1='12' y1='4' x2='4' y2='12'/></svg>");
}

/* FAQ chevron rotation */
.faq summary { list-style: none; position: relative; padding-right: 32px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%) rotate(0deg);
  width: 10px; height: 10px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform-origin: center;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

/* Hero card better typo */
.casino-hero h2 { font-family: 'Poppins', sans-serif; font-weight: 500; }
