/* ==========================================================================
   PG333SLOT.VIP — TOP-STICKY HEADER & LUXURY 2026 DESIGN SYSTEM
   ========================================================================== */
:root {
  --bg-main: #06060e;
  --bg-card: rgba(15, 15, 30, 0.92);
  --bg-card-hover: rgba(22, 22, 44, 0.96);
  --bg-glass: rgba(10, 10, 22, 0.88);
  --border-color: rgba(251, 191, 36, 0.2);
  --border-glow: rgba(249, 115, 22, 0.5);
  --primary: #f97316;
  --primary-glow: #fb923c;
  --secondary: #ec4899;
  --gold: #fbbf24;
  --gold-glow: #fde047;
  --green: #22c55e;
  --cyan: #06b6d4;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --font-base: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-base);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  padding-top: 70px; /* Offset for fixed top header */
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   DYNAMIC AURORA & PARTICLE CANVAS BACKGROUND
   ========================================================================== */
.animated-bg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 10%, #121028 0%, #06060e 85%);
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.85;
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(251, 191, 36, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(249, 115, 22, 0.035) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, black 40%, transparent 90%);
  z-index: 1;
}

.aurora-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.aurora-beam {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}

.aurora-beam-1 {
  top: -10%;
  left: -5%;
  width: 65vw;
  height: 50vh;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.65), rgba(251, 191, 36, 0.45), transparent);
  animation: auroraFlow1 16s ease-in-out infinite alternate;
}

.aurora-beam-2 {
  top: 25%;
  right: -10%;
  width: 60vw;
  height: 55vh;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.55), rgba(147, 51, 234, 0.45), transparent);
  animation: auroraFlow2 20s ease-in-out infinite alternate;
}

.aurora-beam-3 {
  bottom: -10%;
  left: 20%;
  width: 55vw;
  height: 45vh;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.45), rgba(59, 130, 246, 0.35), transparent);
  animation: auroraFlow3 18s ease-in-out infinite alternate;
}

@keyframes auroraFlow1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(60px, 40px, 0) scale(1.1); }
  100% { transform: translate3d(-40px, 70px, 0) scale(0.95); }
}

@keyframes auroraFlow2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-50px, -30px, 0) scale(1.1); }
  100% { transform: translate3d(50px, 60px, 0) scale(0.9); }
}

@keyframes auroraFlow3 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(40px, -40px, 0) scale(1.15); }
  100% { transform: translate3d(-60px, 20px, 0) scale(0.85); }
}

/* ==========================================================================
   FIXED TOP HEADER & NAVBAR (0px Gap from Top)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.brand-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(251, 191, 36, 0.12);
  border-bottom: 2px solid var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.65);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.45);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(251, 191, 36, 0.65);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* Badges */
.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid var(--border-glow);
  color: var(--primary-glow);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
}

/* Bento Section & Layout */
.bento-section {
  padding: 1.25rem 0 2rem;
  width: 100%;
}

/* HERO ROW: 1.3fr Left, 1fr Right */
.hero-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 1.25rem;
  align-items: stretch;
}

.bento-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bento-box:hover {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65), 0 0 18px rgba(249, 115, 22, 0.25);
}

/* Hero Box (Left) */
.box-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(24, 24, 48, 0.94), rgba(16, 16, 32, 0.96));
  min-height: 380px;
}

.hero-title {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0.6rem 0;
  letter-spacing: -0.5px;
}

.hero-title .glow-text {
  background: linear-gradient(135deg, #fff, var(--gold-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-dim);
}

/* ==========================================================================
   AI Slot Signal Radar Box (Right Box)
   ========================================================================== */
.box-scanner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.16) 0%, rgba(6, 182, 212, 0.08) 50%, var(--bg-card) 90%);
  border: 1px solid rgba(249, 115, 22, 0.45);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(249, 115, 22, 0.15);
  padding: 1.5rem;
  min-height: 380px;
}

.box-scanner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(249, 115, 22, 0) 0deg, rgba(249, 115, 22, 0.15) 60deg, rgba(249, 115, 22, 0) 120deg);
  animation: radarSweep 5s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes radarSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scanner-top {
  width: 100%;
  text-align: center;
  z-index: 2;
}

.scanner-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.35rem;
  display: block;
}

.scanner-radar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0.6rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.radar-circle-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed rgba(249, 115, 22, 0.6);
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-circle-inner {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  border: 1px solid rgba(6, 182, 212, 0.5);
}

.radar-game-thumb {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.6);
  z-index: 3;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.radar-game-thumb.scanning {
  filter: brightness(1.4) blur(1px);
  transform: scale(0.9);
}

.scanner-live-info {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.95rem;
  width: 100%;
  margin-bottom: 0.75rem;
  z-index: 2;
  text-align: left;
}

.scanner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  color: var(--text-dim);
  gap: 0.5rem;
}

.scanner-row:last-child {
  margin-bottom: 0;
}

.scanner-row span.val-highlight {
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

.scanner-row span.val-green {
  color: var(--green);
  font-weight: 700;
  text-align: right;
}

.scanner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
  z-index: 2;
}

.scanner-actions .btn {
  width: 100%;
  padding: 0.48rem 0.5rem;
  font-size: 0.82rem;
}

/* Full Width Live RTP Section */
.box-rtp {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 1.35rem;
}

.rtp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rtp-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.rtp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.rtp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.rtp-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.45);
  transform: translateY(-2px);
}

.rtp-card img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.rtp-info {
  flex: 1;
  min-width: 0;
}

.rtp-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rtp-val-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.rtp-val-row span.rtp-percent {
  color: var(--green);
  font-weight: 700;
}

.rtp-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--green));
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

/* Content & Article Styles */
.content-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  line-height: 1.85;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.content-card h1, .content-card h2, .content-card h3 {
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.content-card h1 { font-size: 1.75rem; margin-top: 0; }
.content-card h2 { font-size: 1.35rem; border-left: 4px solid var(--gold); padding-left: 0.75rem; }
.content-card h3 { font-size: 1.12rem; color: var(--gold); }

.content-card p {
  color: #cbd5e1;
  font-size: 0.98rem;
  margin-bottom: 1.15rem;
}

.content-card ul, .content-card ol {
  padding-left: 1.5rem;
  margin-bottom: 1.15rem;
  color: #cbd5e1;
}

.content-card li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.content-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-card a:hover {
  color: var(--primary-glow);
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
}

table.bento-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(18, 18, 36, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.92rem;
}

table.bento-table th {
  background: rgba(249, 115, 22, 0.25);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

table.bento-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

table.bento-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* FAQ Accordion */
.faq-wrap {
  margin-top: 2rem;
  width: 100%;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
}

.faq-question {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Live Win Toast */
.live-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background: rgba(15, 15, 30, 0.96);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  transform: translateY(150%);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-toast.show {
  transform: translateY(0);
}

.live-toast-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.live-toast-text {
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.3;
}

.live-toast-text strong {
  color: var(--gold);
}

/* Footer (High-Contrast & Semantic) */
.footer {
  background: #04040a;
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0 1.25rem;
  margin-top: 3.5rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.footer-desc {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  max-width: 320px;
  line-height: 1.65;
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .rtp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { padding-top: 60px; }
  .header { height: 60px; }
  .nav-menu { display: none; }
  .rtp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .content-card { padding: 1.25rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .bento-box { padding: 1.25rem; }
  .scanner-actions { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO BANNER, ARTICLE IMAGES & RELATED ARTICLES
   ========================================================================== */
.hero-banner {
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16/9;
  max-height: 380px;
  overflow: hidden;
  border-radius: 14px;
  margin: 1.25rem auto 1.5rem;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-banner:hover img {
  transform: scale(1.025);
}

/* Article Body Images */
.article-img {
  width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
  object-fit: cover;
  max-height: 420px;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Blog Index Card Thumbnails */
.bento-box img.card-thumb,
.article-card img.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Related Articles Grid */
.related-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.related-card {
  display: block;
  background: var(--bg-card, rgba(15, 15, 35, 0.85));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
  border-color: var(--gold);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.related-card h3 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0.85rem;
  line-height: 1.45;
  font-weight: 600;
}

