/* Default App Theme CSS */
:root{
  --surface-dark: #1a1a1a;
  --sidebar-bg: #222222;
  --card-bg: #2d2d2d;
  --content-bg: #222222;
  --accent: #ffd312;
  --accent-hover: #edbe11;
  --fg-light: #ffffff;
  --fg-muted: #b8b8b8;
  --nav-width: 260px;
  --bar-height: 80px;
  --type-base: 'Roboto', sans-serif;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

img,
video,
canvas,
svg{
  max-width: 100%;
  height: auto;
}

html,
body{
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body{
  background-color: var(--surface-dark);
  color: var(--fg-light);
  font-family: var(--type-base);
  display: flex;
  min-height: 100vh;
  line-height: 1.6;
}

/* Navigation Panel */
.sidebar-menu{
  width: var(--nav-width);
  background-color: var(--sidebar-bg);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #3b3b3b;
  z-index: 1000;
}

.brand-logo-link{
  display: block;
  margin-bottom: 30px;
}

.brand-logo-link img{
  max-width: 100%;
  height: auto;
}

.menu-entries{
  list-style: none;
  flex-grow: 1;
}

.menu-entries li{
  margin-bottom: 8px;
}

.menu-entries a{
  color: var(--fg-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.menu-entries a:hover,
.menu-entries a.active{
  background-color: rgba(254, 203, 10, 0.1);
  color: var(--accent);
}

.menu-entries a i{
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 16px;
}

/* Content Area */
.content-area{
  margin-left: var(--nav-width);
  width: calc(100% - var(--nav-width));
  display: flex;
  flex-direction: column;
}

/* Top Header Bar */
.header-strip{
  height: var(--bar-height);
  background-color: var(--surface-dark);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.auth-buttons{
  display: flex;
  gap: 15px;
  align-items: center;
}

.region-picker{
  display: flex;
  gap: 5px;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #3b3b3b;
}

.region-link{
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.region-link:hover{
  color: var(--fg-light);
  background: rgba(255, 255, 255, 0.1);
}

.region-link.active{
  background-color: var(--accent);
  color: #080808;
  box-shadow: 0 2px 6px rgba(254, 203, 10, 0.3);
}

.btn{
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
}

.login-action{
  background-color: transparent;
  color: var(--fg-light);
  border: 1px solid #4c4c4c;
}

.login-action:hover{
  border-color: var(--fg-light);
}

.signup-action{
  background-color: var(--accent);
  color: #080808;
  box-shadow: 0 0 15px rgba(254, 203, 10, 0.4);
}

.signup-action:hover{
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* Splash / Hero Block */
.splash-block{
  position: relative;
  height: 480px;
  background: url('../assets/img/promo/10000dollars-weekly-race.webp') center/cover no-repeat;
  background-color: #080808;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.splash-block::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.splash-content{
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.splash-title{
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.splash-subtitle{
  font-size: 20px;
  color: var(--fg-muted);
  margin-bottom: 30px;
}

/* Article / Content Section */
.article-section{
  padding: 60px 40px;
  background-color: var(--surface-dark);
}

.article-body{
  max-width: 1600px;
  margin: 0 auto;
  background-color: var(--content-bg);
  border-radius: 16px;
  padding: 60px 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-title{
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--fg-light);
  line-height: 1.2;
}

.page-intro{
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Casino Info Card */
.casino-card{
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--card-bg) 0%, #353535 100%);
  border: 2px solid rgba(254, 203, 10, 0.3);
  border-radius: 16px;
  padding: 25px;
  margin: 40px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.casino-card:hover{
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(254, 203, 10, 0.2);
}

.casino-rank{
  background: linear-gradient(135deg, var(--accent) 0%, #ffa208 100%);
  color: #080808;
  font-weight: 900;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(254, 203, 10, 0.5);
}

.card-logo-area{
  display: flex;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.casino-logo{
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.card-details-area{
  flex-grow: 1;
  min-width: 0;
}

.card-info-block{
  margin-bottom: 15px;
}

.card-info-block h3{
  font-size: 24px;
  font-weight: 700;
  color: var(--fg-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-info-block h3 a{
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.3s;
}

.card-info-block h3 a:hover{
  color: var(--accent);
}

.bonus-highlight{
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-info-block p{
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.rating-display{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rating-display .star{
  color: #ffc90f;
  font-size: 18px;
}

.card-action{
  margin-left: 30px;
  flex-shrink: 0;
}

.cta-play-link{
  background: linear-gradient(135deg, var(--accent) 0%, #ffa208 100%);
  color: #080808;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 203, 10, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-play-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 203, 10, 0.6);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #edad08 100%);
}

/* Table Scroll Wrapper */
.table-container{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 40px 0 50px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Data Table */
.info-table{
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background-color: var(--card-bg);
}

.info-table th{
  background-color: rgba(254, 203, 10, 0.15);
  color: var(--fg-light);
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid rgba(254, 203, 10, 0.3);
  white-space: nowrap;
}

.info-table td{
  padding: 14px 20px;
  color: var(--fg-muted);
  border-bottom: 1px solid #3b3b3b;
  white-space: nowrap;
}

.info-table tr:last-child td{
  border-bottom: none;
}

.info-table tr:hover td{
  background-color: rgba(254, 203, 10, 0.05);
  color: var(--fg-light);
}

/* Content Typography — scoped to article */
.article-body h2{
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-light);
  margin: 50px 0 25px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(254, 203, 10, 0.2);
}

.article-body h2 i{
  color: var(--accent);
}

.article-body h3{
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-light);
  margin: 35px 0 20px 0;
}

.article-body h4{
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin: 25px 0 15px 0;
}

.article-body p{
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Lists — article scope */
.article-body ul{
  list-style: none;
  padding-left: 0;
  margin: 20px 0 25px 0;
}

.article-body ul li{
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-size: 15px;
}

.article-body ul li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 14px;
}

.article-body ol{
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin: 25px 0;
}

.article-body ol li{
  counter-increment: step-counter;
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 15px;
  transition: all 0.3s ease;
}

.article-body ol li::before{
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, #ffa208 100%);
  color: #080808;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(254, 203, 10, 0.3);
}

.article-body ol li:hover{
  color: var(--fg-light);
  transform: translateX(5px);
}

.article-body ol li:hover::before{
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(254, 203, 10, 0.5);
}

/* FAQ Accordion */
.faq-section{
  padding: 60px 40px;
  background-color: var(--surface-dark);
}

.faq-container{
  max-width: 1600px;
  margin: 0 auto;
}

.faq-title{
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 50px;
  color: var(--fg-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.faq-title i{
  color: var(--accent);
}

.faq-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item{
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid #3b3b3b;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover{
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-question{
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-light);
  background: rgba(254, 203, 10, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover{
  background: rgba(254, 203, 10, 0.1);
}

.faq-question i{
  color: var(--accent);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-question.active i{
  transform: rotate(180deg);
}

.faq-answer{
  padding: 20px 25px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 15px;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.closed{
  max-height: 0;
  padding: 0 25px;
  padding-top: 0;
  padding-bottom: 0;
}

/* Promotions Grid */
.promo-section{
  padding: 30px 40px;
  background-color: var(--surface-dark);
}

.section-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title{
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-light);
}

.section-title i{
  color: var(--accent);
}

.promo-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.promo-card{
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--fg-light);
  display: block;
  transition: transform 0.3s;
  position: relative;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.promo-card:hover{
  transform: translateY(-5px);
}

.promo-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.promo-info{
  position: relative;
  z-index: 2;
  padding: 20px;
}

.promo-tag{
  background-color: rgba(60, 60, 60, 0.8);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.promo-title{
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}

.promo-cta{
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, #ffa208, #ffd312);
  color: #080808;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

/* Game Showcase — Slots Grid */
.game-showcase{
  padding: 40px 40px 50px;
  background-color: var(--surface-dark);
}

.game-showcase .section-header{
  margin-bottom: 25px;
}

.slots-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slot-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1.15;
  display: block;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 2px solid transparent;
}

.slot-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.slot-card:hover{
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(254, 203, 10, 0.25);
}

.slot-card:hover img{
  transform: scale(1.08);
}

.slot-card .slot-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay{
  opacity: 1;
}

.slot-overlay .slot-name{
  color: var(--fg-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.slot-overlay .play-badge{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #080808;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(254, 203, 10, 0.45);
}

/* Author / Reviewer Block */
.author-section{
  padding: 60px 40px;
  background: linear-gradient(135deg, #1e1e1e 0%, #222222 100%);
  border-top: 1px solid #3b3b3b;
  border-bottom: 1px solid #3b3b3b;
}

.author-container{
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.author-image{
  flex-shrink: 0;
}

.author-avatar{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 20px rgba(254, 203, 10, 0.3);
  transition: all 0.3s ease;
}

.author-avatar:hover{
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 0 30px rgba(254, 203, 10, 0.5);
}

.author-content{
  flex-grow: 1;
}

.author-header{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.author-name{
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-light);
  margin: 0;
}

.author-title{
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}

.author-bio{
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.author-specialization{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.specialization-item{
  background: rgba(254, 203, 10, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.author-stats{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item{
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-value{
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-light);
}

.stat-label{
  font-size: 13px;
  color: var(--fg-muted);
}

.stat-icon{
  color: var(--accent);
  font-size: 22px;
}

.author-quote{
  font-style: italic;
  color: var(--fg-muted);
  margin-top: 15px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  font-size: 14px;
  line-height: 1.6;
}

/* Site Footer */
.site-footer{
  background-color: #1e1e1e;
  padding: 40px 40px;
  border-top: 1px solid #3b3b3b;
  margin-top: auto;
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand p{
  color: var(--fg-muted);
  font-size: 13px;
  margin-top: 15px;
  line-height: 1.5;
}

.footer-col h4{
  color: var(--fg-light);
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul{
  list-style: none;
}

.footer-col ul li{
  margin-bottom: 10px;
}

.footer-col ul li a{
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover{
  color: var(--accent);
}

.social-links{
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a{
  color: var(--fg-light);
  font-size: 28px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover{
  color: var(--accent);
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  flex-wrap: wrap;
}

.footer-copyright{
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.footer-icons{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
}

.footer-icons img{
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* Mobile Burger Toggle */
.hamburger-btn{
  display: none;
  background: none;
  border: none;
  color: var(--fg-light);
  font-size: 24px;
  cursor: pointer;
  margin-right: 20px;
}

.overlay-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay-bg.active{
  opacity: 1;
  visibility: visible;
}

/* Tablet Breakpoint */
@media (max-width: 1024px){
  .promo-grid{
    grid-template-columns: 1fr;
  }

  .slots-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Breakpoint */
@media (max-width: 768px){
  .header-strip{
    justify-content: flex-start;
    padding: 0 15px;
  }

  .hamburger-btn{
    display: block;
    order: 1;
  }

  .auth-buttons{
    margin-left: auto;
    order: 2;
    gap: 6px;
  }

  .btn{
    padding: 8px 14px;
    font-size: 13px;
  }

  .region-picker{
    order: 1;
    margin-right: 8px;
    margin-left: 5px;
  }

  .region-link{
    padding: 4px 6px;
    font-size: 11px;
  }

  .sidebar-menu{
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
  }

  .sidebar-menu.active{
    transform: translateX(0);
  }

  .content-area{
    margin-left: 0;
    width: 100%;
  }

  .promo-grid{
    grid-template-columns: 1fr;
  }

  .slots-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .splash-block{
    padding: 0 15px;
    height: 320px;
  }

  .splash-title{
    font-size: 28px;
  }

  .splash-subtitle{
    font-size: 16px;
  }

  .article-section,
  .promo-section,
  .author-section,
  .faq-section,
  .game-showcase{
    padding: 25px 15px;
  }

  .article-body{
    padding: 25px 20px;
    border-radius: 12px;
  }

  .page-title{
    font-size: 28px;
  }

  .page-intro{
    font-size: 16px;
  }

  /* Casino Card — stacked on mobile */
  .casino-card{
    flex-direction: column;
    padding: 20px;
    margin: 30px 0;
  }

  .casino-rank{
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .card-logo-area{
    margin-right: 0;
    margin-bottom: 15px;
  }

  .casino-logo{
    max-width: 100px;
  }

  .card-action{
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .cta-play-link{
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-left: 0;
  }

  .faq-title{
    font-size: 28px;
    margin-bottom: 30px;
  }

  .faq-question{
    font-size: 16px;
    padding: 15px 20px;
  }

  .faq-answer{
    padding: 15px 20px;
    font-size: 14px;
  }

  /* Table mobile — horizontal scroll */
  .table-container{
    margin: 25px 0 35px 0;
    border-radius: 8px;
  }

  .info-table{
    min-width: 650px;
    font-size: 13px;
  }

  .info-table th,
  .info-table td{
    padding: 10px 12px;
  }

  .author-container{
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .author-header{
    justify-content: center;
  }

  .author-stats{
    justify-content: center;
    gap: 20px;
  }

  .author-quote{
    margin-left: 0;
    border-left: none;
    border-top: 2px solid var(--accent);
    padding-top: 12px;
    padding-left: 0;
    font-size: 13px;
  }

  .footer-grid{
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer-col{
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 15px;
  }

  .footer-col:last-child{
    border-bottom: none;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
  }

  .footer-copyright{
    text-align: center;
    min-width: 100%;
    font-size: 12px;
  }

  .footer-icons{
    margin-left: 0;
    justify-content: center;
  }
}