/* Big Bass Vegas Double Down Deluxe - Canadian Brand Site Styles */
:root {
  --color-bg: #09141f;
  --color-surface: #122338;
  --color-text: #eef4fc;
  --color-accent: #f59e0b;
  --color-border: #1e3a5f;
  --color-surface-hover: #1b3350;
  --color-text-muted: #9bb3cc;
  --color-gold: #f59e0b;
  --color-gold-glow: rgba(245, 158, 11, 0.25);
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
}

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

body {
  font-family: var(--font-body), sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
  color: #eef4fc;
  background-color: #09141f;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading), sans-serif;
  color: #eef4fc;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1e3a5f;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #f59e0b;
}

p {
  margin-bottom: 1.25rem;
  color: #eef4fc;
}

a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #ffd066;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}


/* Main Navigation */
.site-header {
  background: rgba(9, 20, 31, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #1e3a5f;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.45));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover .brand-logo-mark {
  filter: drop-shadow(0 0 14px rgba(255, 0, 127, 0.6)) drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  transform: scale(1.05) rotate(-2deg);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-logo-main {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-logo-main .gold-text {
  background: linear-gradient(180deg, #fffbeb 0%, #fbbf24 45%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.brand-logo-main .neon-text {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.55), 0 0 20px rgba(0, 240, 255, 0.25);
}

.brand-logo-sub {
  font-family: var(--font-heading), sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #8faec9;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu a {
  color: #eef4fc;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-menu a:hover, .nav-menu a.active {
  color: #f59e0b;
  background: #122338;
}

/* Burger Toggle for Mobile */
.burger-btn {
  display: none;
  background: rgba(18, 35, 56, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #eef4fc;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.burger-btn:hover, .burger-btn:active {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
  color: #f59e0b;
}

/* Hero Banner - Gold-Standard Verde Pattern */
.hero-banner {
  background: linear-gradient(180deg, rgba(18, 35, 56, 0.85) 0%, rgba(9, 20, 31, 0.95) 100%),
              radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  margin: 2rem 0;
  border: 1px solid #1e3a5f;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid #f59e0b;
  color: #f59e0b;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-intro {
  font-size: 1.15rem;
  color: #eef4fc;
  margin-bottom: 1.5rem;
}

.offer-card {
  background: linear-gradient(145deg, rgba(22, 40, 66, 0.92) 0%, rgba(11, 22, 36, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-left: 4px solid #f59e0b;
  padding: 1.35rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f59e0b;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.offer-val {
  font-family: var(--font-heading), sans-serif;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #ffea9f 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.offer-sub {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #9cb5ce;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  border: 2px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 24px rgba(245, 158, 11, 0.15);
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

/* Minimum tap target size for all interactive elements */
a, button, .cta {
  min-height: 44px;
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #09141f;
  border: none;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #09141f;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.6);
}

.btn-outline {
  background: transparent;
  color: #eef4fc;
  border: 1px solid #1e3a5f;
}

.btn-outline:hover {
  background: #122338;
  border-color: #f59e0b;
  color: #f59e0b;
}

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

/* Quick Actions Bar */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.action-card {
  background: #122338;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #eef4fc;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: #f59e0b;
  color: #f59e0b;
}

/* Visual Showcase Cards (Uniform 16:9) */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.showcase-card {
  background: linear-gradient(145deg, rgba(22, 40, 66, 0.9) 0%, rgba(11, 22, 36, 0.95) 100%);
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-md);
  padding: 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.showcase-card strong {
  font-family: var(--font-heading), sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.showcase-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Answer First Summary Box */
.answer-first {
  background: #122338;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem;
  margin: 2rem 0;
  border-top: 1px solid #1e3a5f;
  border-right: 1px solid #1e3a5f;
  border-bottom: 1px solid #1e3a5f;
}

.answer-first h3 {
  margin-top: 0;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.game-card {
  background: #122338;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #f59e0b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.game-card img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.game-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card h3 {
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #eef4fc;
}

.game-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Content Sections & Tables */
.content-section {
  background: #122338;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin: 2.5rem 0;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid #1e3a5f;
  background: #09141f;
}

.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #09141f;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #1e3a5f;
  border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  word-break: normal;
  overflow-wrap: normal;
}

th, td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #1e3a5f;
  word-break: normal;
  overflow-wrap: normal;
  line-height: 1.45;
}

th {
  background: #09141f;
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

tr:hover {
  background: rgba(245, 158, 11, 0.05);
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.pros-box, .cons-box {
  background: #09141f;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid #1e3a5f;
}

.pros-box {
  border-top: 4px solid #10b981;
}

.cons-box {
  border-top: 4px solid #ef4444;
}

.pros-box h4, .cons-box h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul.styled-list, ol.styled-list {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

ul.styled-list li, ol.styled-list li {
  margin-bottom: 0.5rem;
}

/* Interactive Calculator */
.calculator-box {
  background: #09141f;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2rem 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.calc-field input, .calc-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #122338;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-sm);
  color: #eef4fc;
  font-size: 1rem;
}

.calc-result {
  background: #122338;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.calc-res-item .val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f59e0b;
}

.calc-res-item .lbl {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* FAQ Accordion */
.faq-wrap {
  margin: 2rem 0;
}

.faq-item {
  background: #09141f;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #eef4fc;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
}

/* Author Box */
.author-box {
  background: #09141f;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: #122338;
  border: 2px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0 0 0.25rem;
  color: #eef4fc;
}

.author-meta {
  font-size: 0.85rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Mobile Sticky Bar - Ergonomic Thumb Zone */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 17, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.65);
}

.sticky-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-text strong {
  font-family: var(--font-heading), sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.25;
}

.sticky-text strong::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  flex-shrink: 0;
}

.sticky-text span {
  font-size: 0.76rem;
  font-weight: 600;
  color: #f59e0b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
  line-height: 1.2;
}

.sticky-bar .btn {
  flex-shrink: 0;
  padding: 0.65rem 1.15rem;
  min-height: 42px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #060e16;
  border-top: 1px solid #1e3a5f;
  padding: 3rem 0 5rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

.footer-col h5 {
  color: #eef4fc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: var(--color-text-muted);
}

.footer-col ul a:hover {
  color: #f59e0b;
}

.footer-disclaimer {
  border-top: 1px solid #1e3a5f;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #09141f;
    border-bottom: 1px solid #1e3a5f;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.35rem;
    z-index: 999;
    animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-menu.open {
    display: flex;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    border: 1px solid transparent;
  }
  .nav-menu a:hover, .nav-menu a.active {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
    color: #f59e0b;
  }
  .nav-menu .btn {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .burger-btn {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 76px; /* Space for mobile sticky CTA */
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav-wrap {
    padding: 0.65rem 0;
  }
  .hero-banner {
    padding: 1.35rem 1rem 1.5rem;
    margin: 1rem 0 1.75rem;
    border-radius: 16px;
  }
  .hero-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .hero-media img {
    max-width: 320px;
    margin: 0 auto;
  }
  .site-footer {
    padding: 2.5rem 0 5.5rem;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }
  .quick-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 1.25rem 0 2rem;
  }
  .action-card {
    padding: 0.75rem 0.65rem;
    gap: 0.5rem;
    border-radius: 10px;
  }
  .action-card .icon {
    font-size: 1.25rem;
  }
  .action-card strong {
    font-size: 0.85rem;
    display: block;
    line-height: 1.2;
  }
  .action-card small {
    font-size: 0.7rem;
    display: block;
    line-height: 1.2;
    margin-top: 2px;
  }
  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .brand-logo-main {
    font-size: 1.12rem;
    gap: 0.25rem;
  }
  .brand-logo-mark {
    width: 36px;
    height: 36px;
  }
  .brand-logo-sub {
    display: none;
  }
}

@media (min-width: 901px) {
  .sticky-bar {
    display: none;
  }
}

/* Interactive Demo Simulator Frame */
.demo-frame-wrapper {
  background: #09141f;
  border: 1px solid rgba(0, 206, 209, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(0, 206, 209, 0.12);
  margin: 1.75rem 0;
  position: relative;
}

.demo-frame-wrapper:fullscreen {
  border-radius: 0;
  border: none;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.demo-frame-wrapper:fullscreen .demo-iframe-container {
  flex: 1;
  height: 100%;
  padding-top: 0;
}

.demo-frame-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0e1e30, #142a42);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.75rem;
  flex-wrap: wrap;
}

.demo-frame-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
}

.demo-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 9999px;
}

.demo-status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.demo-actions {
  display: flex;
  gap: 0.5rem;
}

.demo-tool-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.demo-tool-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.demo-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}

.demo-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-frame-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #08121c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-meta-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-footer-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Polished Steps List */
.steps-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1.5rem 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.steps-list li {
  background: rgba(14, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text);
  text-align: left;
  transition: all 0.2s ease;
}

.steps-list li:hover {
  background: rgba(18, 36, 62, 0.85);
  border-left-color: #00ced1;
  transform: translateX(3px);
}
