/* Bearo Casino — dark + yellow, wild slots vibe, wide layout */

:root {
  --accent: #FACC15;       /* yellow-400 */
  --accent-2: #FBBF24;     /* amber-400 */
  --accent-3: #F59E0B;     /* amber-500 */
  --bg: #0a0a0a;
  --surface: rgba(250,204,21,0.04);
  --surface-2: rgba(250,204,21,0.08);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.65);
  --maple: #ef4444;
}

html { scroll-behavior: smooth; background: var(--bg); }
body { background:
  radial-gradient(1200px 600px at 10% -10%, rgba(250,204,21,0.07), transparent 60%),
  radial-gradient(1000px 500px at 110% 20%, rgba(250,204,21,0.05), transparent 60%),
  #0a0a0a;
}

/* ----- Prose readability ----- */
.prose, .prose-invert { line-height: 1.7; color: rgba(255,255,255,0.92); }
.prose h1, .prose-invert h1 { font-size: 2.25rem; font-weight: 900; margin: 1rem 0 1.25rem; line-height: 1.15; color: var(--accent); }
.prose h2, .prose-invert h2 { font-size: 1.6rem; font-weight: 800; margin: 2.25rem 0 0.85rem; line-height: 1.3; color: #fff; border-left: 3px solid var(--accent); padding-left: 0.75rem; }
.prose h3, .prose-invert h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--accent-2); }
.prose p, .prose-invert p { margin: 0.75rem 0; }
.prose ul, .prose-invert ul { list-style: disc; padding-left: 1.25rem; margin: 0.75rem 0; }
.prose ol, .prose-invert ol { list-style: decimal; padding-left: 1.25rem; margin: 0.75rem 0; }
.prose li, .prose-invert li { margin: 0.3rem 0; }
.prose a, .prose-invert a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong, .prose-invert strong { font-weight: 700; color: #fff; }
.prose table, .prose-invert table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.9rem; }
.prose th, .prose td, .prose-invert th, .prose-invert td { padding: 0.65rem 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; }
.prose th, .prose-invert th { background: var(--surface-2); font-weight: 700; color: var(--accent); }
.prose details, .prose-invert details { background: var(--surface); border: 1px solid rgba(250,204,21,0.15); border-radius: 0.75rem; padding: 0.85rem 1rem; margin: 0.6rem 0; }
.prose summary, .prose-invert summary { cursor: pointer; font-weight: 600; }

/* ----- RG quiz ----- */
.rg-quiz { background: linear-gradient(135deg, rgba(250,204,21,0.08), rgba(0,0,0,0.4)); border: 1px solid rgba(250,204,21,0.25); border-radius: 1.5rem; padding: 1.75rem; }
.rg-quiz fieldset { border: 0; padding: 0; }
.rg-quiz label { cursor: pointer; }

/* ----- Slot cards ----- */
.slot-card { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 1; background: linear-gradient(180deg, #1a1a1a, #0a0a0a); border: 1px solid rgba(250,204,21,0.12); display: flex; flex-direction: column; }
.slot-card img { width: 100%; height: 70%; object-fit: cover; transition: transform 0.4s ease; background: #111; }
.slot-card:hover img { transform: scale(1.06); }
.slot-card:hover { border-color: rgba(250,204,21,0.5); box-shadow: 0 12px 30px -10px rgba(250,204,21,0.25); }
.slot-card .meta { padding: 0.5rem 0.7rem; }
.slot-card .meta h3 { font-size: 0.85rem; font-weight: 700; color: #fff; margin: 0; line-height: 1.2; }
.slot-card .meta p { font-size: 0.7rem; opacity: 0.6; margin: 0.1rem 0 0; }
.slot-card .badge { position: absolute; top: 0.5rem; left: 0.5rem; background: var(--accent); color: #000; font-size: 0.6rem; font-weight: 800; padding: 0.15rem 0.5rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ----- Big winner overlay ----- */
.big-winner { position: relative; border-radius: 1.5rem; overflow: hidden; }
.big-winner img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.big-winner__overlay { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; background: rgba(0,0,0,0.7); backdrop-filter: blur(10px); padding: 0.85rem 1.1rem; border-radius: 1rem; font-size: 0.95rem; border: 1px solid rgba(250,204,21,0.3); }

/* ----- Hero ----- */
.hero-grid { background: linear-gradient(135deg, rgba(250,204,21,0.12) 0%, rgba(245,158,11,0.04) 50%, transparent 100%); border: 1px solid rgba(250,204,21,0.2); border-radius: 2rem; }

/* ----- CTA card (inner pages) ----- */
.cta-card { background: linear-gradient(135deg, var(--accent), var(--accent-3)); color: #000; border-radius: 1.75rem; padding: 1.75rem; text-align: center; }
.cta-card h2 { color: #000 !important; border: 0 !important; padding: 0 !important; margin: 0 0 0.5rem !important; }
.cta-card a.btn { display: inline-block; background: #000; color: var(--accent); font-weight: 800; border-radius: 999px; padding: 0.85rem 2rem; text-decoration: none; }

/* ----- Tabs ----- */
.tab-btn { padding: 0.6rem 1.25rem; border-radius: 999px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; background: transparent; color: #fff; }
.tab-btn.active { background: var(--accent); color: #000; border-color: var(--accent); }

/* ----- Animations chosen: SHIMMER + FLOAT ----- */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-text {
  background: linear-gradient(110deg, var(--accent) 0%, #fff 35%, var(--accent) 70%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shimmer-edge { position: relative; overflow: hidden; }
.shimmer-edge::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3.5s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float { animation: float 5s ease-in-out infinite; }
.float-slow { animation: float 7s ease-in-out infinite; }

/* ----- Bento ----- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.bento .cell { background: var(--surface); border: 1px solid rgba(250,204,21,0.12); border-radius: 1.25rem; padding: 1.25rem; }
.bento .cell h3 { color: var(--accent); font-weight: 800; margin-bottom: 0.5rem; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }

/* ----- Pills / quick nav ----- */
.pill { display: inline-flex; align-items: center; padding: 0.5rem 1rem; border-radius: 999px; background: var(--surface-2); border: 1px solid rgba(250,204,21,0.2); font-size: 0.85rem; }
.pill:hover { background: rgba(250,204,21,0.15); color: var(--accent); }

/* ----- Provider cloud ----- */
.provider-pill { padding: 0.5rem 1rem; border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02); font-size: 0.85rem; font-weight: 500; opacity: 0.85; }
.provider-pill:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }

/* ----- Review cards ----- */
.review-card { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: 1.25rem; padding: 1.25rem; }
.review-card header { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.9rem; }
.review-card .stars { color: var(--accent); margin-left: auto; }
.review-card p { margin: 0.4rem 0; font-size: 0.92rem; }
.review-card footer { font-size: 0.7rem; opacity: 0.6; margin-top: 0.5rem; }

/* ----- Canadian focus section ----- */
.maple-section {
  background:
    radial-gradient(ellipse at top right, rgba(239,68,68,0.08), transparent 60%),
    linear-gradient(180deg, rgba(250,204,21,0.04), transparent);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 2rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.maple-section::before {
  content: '🍁';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 9rem;
  opacity: 0.06;
  transform: rotate(15deg);
}
