:root {
  --clr-header: #fe87d7;
  --clr-header-dark: #fd6fca;
  --clr-btn-green: #73d245;
  --clr-btn-green-hover: #5eb832;
  --clr-btn-orange: #ff8603;
  --clr-btn-orange-hover: #e67300;
  --clr-bg: #07a3fe;
  --clr-bg-dark: #0591e4;
  --clr-surface: #ffffff;
  --clr-surface-alt: #f0faff;
  --clr-text: #1a1a2e;
  --clr-text-light: #ffffff;
  --clr-text-muted: #4a5568;
  --clr-accent: #fe87d7;
  --clr-border: rgba(255,255,255,0.3);
  --clr-card-bg: rgba(255,255,255,0.95);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--clr-btn-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-btn-orange);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  border-radius: var(--radius-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn--green {
  background: var(--clr-btn-green);
  color: #ffffff;
}

.btn--green:hover {
  background: var(--clr-btn-green-hover);
  color: #ffffff;
}

.btn--orange {
  background: var(--clr-btn-orange);
  color: #ffffff;
}

.btn--orange:hover {
  background: var(--clr-btn-orange-hover);
  color: #ffffff;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-btn-green);
  color: var(--clr-btn-green);
}

.btn--outline:hover {
  background: var(--clr-btn-green);
  color: #ffffff;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 7px 16px;
  font-size: 0.8rem;
}

.btn--pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,134,3,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(255,134,3,0); }
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-text-light);
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 40px;
}

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(254,135,215,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.header-logo {
  flex-shrink: 0;
}

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

.header-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.nav-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.burger:hover {
  background: rgba(255,255,255,0.35);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  background: var(--clr-header-dark);
  border-top: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 10px 14px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

.mobile-nav .nav-link:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-nav-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.mobile-nav-btns .btn {
  flex: 1;
  min-width: 120px;
}

.site-hero {
  padding: 48px 0 56px;
  background-image: url('/images/sweet-bonanza-slots-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 163, 254, 0.55);
  z-index: 0;
}

.site-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.hero-title span {
  color: #ffe066;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.game-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.game-info-table tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition);
}

.game-info-table tr:last-child {
  border-bottom: none;
}

.game-info-table tr:hover {
  background: #fef6fb;
}

.game-info-table td {
  padding: 11px 16px;
  font-size: 0.875rem;
  vertical-align: middle;
}

.game-info-table .tbl-icon {
  width: 44px;
  text-align: center;
  color: var(--clr-header);
}

.game-info-table .tbl-icon svg {
  width: 20px;
  height: 20px;
}

.game-info-table .tbl-label {
  color: var(--clr-text-muted);
  font-weight: 600;
  width: 150px;
}

.game-info-table .tbl-value {
  font-weight: 700;
  color: var(--clr-text);
}

.hero-frame {
  flex: 0 0 420px;
  max-width: 420px;
}

.frame-wrapper {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}

.frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a0533 0%, #2d1060 50%, #1a0533 100%);
  cursor: pointer;
}

.frame-placeholder img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.frame-placeholder p {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.frame-ctas {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.content-section {
  padding: 56px 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: var(--clr-card-bg);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-header), #fd6fca);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

.strategies-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.strategy-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 240px;
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.strategy-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.strategy-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strategy-number {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-header);
}

.strategy-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-text);
}

.strategy-desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  flex: 1;
}

.strategy-btn {
  margin-top: 12px;
  align-self: flex-start;
}

.review-block {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.review-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--clr-header);
}

.review-content {
  color: var(--clr-text);
  line-height: 1.75;
}

.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4,
.review-content h5,
.review-content h6 {
  font-weight: 800;
  margin: 24px 0 12px;
  color: var(--clr-text);
  line-height: 1.3;
}

.review-content h2 { font-size: 1.4rem; }
.review-content h3 { font-size: 1.2rem; }
.review-content h4 { font-size: 1.05rem; }

.review-content p {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.review-content ul,
.review-content ol {
  margin: 0 0 16px 24px;
  font-size: 0.95rem;
}

.review-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.review-content a {
  color: var(--clr-btn-green);
  text-decoration: underline;
}

.review-content a:hover {
  color: var(--clr-btn-orange);
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.review-content table th,
.review-content table td {
  padding: 10px 14px;
  text-align: left;
  border: 1.5px solid #e2e8f0;
}

.review-content table th {
  background: var(--clr-header);
  color: #ffffff;
  font-weight: 700;
}

.review-content table tr:nth-child(even) td {
  background: #fef6fb;
}

.review-content blockquote {
  border-left: 4px solid var(--clr-header);
  padding: 12px 20px;
  margin: 20px 0;
  background: #fef6fb;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

.review-content img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

.review-content strong { font-weight: 700; }
.review-content em { font-style: italic; }
.review-content hr { border: none; border-top: 2px solid #e2e8f0; margin: 24px 0; }

.review-content code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85em;
}

.review-content pre {
  background: #f4f4f4;
  padding: 16px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 16px 0;
}

.author-block {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.author-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-header);
  box-shadow: var(--shadow-sm);
}

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

.author-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.85rem;
  color: var(--clr-header);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-bio {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.author-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.author-socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clr-header);
  color: #ffffff;
  transition: transform var(--transition), background var(--transition);
}

.author-social-link:hover {
  transform: scale(1.12);
  background: var(--clr-header-dark);
  color: #ffffff;
}

.author-social-link svg {
  width: 16px;
  height: 16px;
}

.similar-games-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.game-card {
  flex: 1 1 calc(25% - 16px);
  min-width: 180px;
  background: var(--clr-card-bg);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.game-card-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-text);
}

.game-card-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1;
}

.game-card-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-block {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  transition: background var(--transition);
}

.faq-question:hover {
  background: #fef6fb;
}

.faq-question[aria-expanded="true"] {
  background: #fef6fb;
  color: #c94fb5;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--clr-header);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: #c94fb5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 600px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--clr-btn-green);
  text-decoration: underline;
}

.site-footer {
  background: var(--clr-header);
  margin-top: auto;
  padding: 40px 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 0 auto;
}
.footer-logo-link {display: block;width: fit-content;}
.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: 8px;
}

.footer-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-nav-link:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  transition: background var(--transition), transform var(--transition);
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
  color: #ffffff;
}

.footer-social-link svg {
  width: 17px;
  height: 17px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--clr-text);
  min-width: 52px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-provider img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  line-height: 1.5;
  text-align: right;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.block-gap {
  margin-bottom: 28px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.x7f3a2 { display: none; }
.wp-block { clear: both; }
.wp-caption { text-align: center; }
.aligncenter { margin: 0 auto; }
.alignleft { float: left; margin-right: 16px; }
.alignright { float: right; margin-left: 16px; }
.entry-meta { font-size: 0.85rem; color: var(--clr-text-muted); }
.post-thumbnail img { width: 100%; }
.widget { margin-bottom: 24px; }
.wp-block-image { margin: 20px 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.wp-caption-text { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 4px; }

.horizontal-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 4px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--clr-header);
  border-radius: 4px;
}

.info-page-content {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin: 40px 0;
}

.info-page-content h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--clr-header);
}

.info-page-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-text);
  margin: 24px 0 12px;
}

.info-page-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 20px 0 10px;
}

.info-page-content p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.info-page-content ul,
.info-page-content ol {
  margin: 0 0 16px 24px;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.info-page-content li {
  margin-bottom: 6px;
}

.info-page-content a {
  color: var(--clr-btn-green);
  text-decoration: underline;
}

.info-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.info-page-content table th,
.info-page-content table td {
  padding: 10px 14px;
  text-align: left;
  border: 1.5px solid #e2e8f0;
}

.info-page-content table th {
  background: var(--clr-header);
  color: #fff;
  font-weight: 700;
}

.content .text h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-text);
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .hero-frame {
    flex: 0 0 340px;
    max-width: 340px;
  }

  .feature-card {
    flex: 1 1 calc(50% - 16px);
  }

  .game-card {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-frame {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .feature-card {
    flex: 1 1 100%;
  }

  .strategies-grid {
    flex-direction: column;
  }

  .strategy-card {
    flex: none;
    width: 100%;
  }

  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-socials {
    justify-content: center;
  }

  .author-meta {
    justify-content: center;
  }

  .game-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    text-align: left;
  }

  .review-block {
    padding: 24px 20px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .info-page-content {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .game-card {
    flex: 1 1 100%;
  }

  .footer-trust {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
.header-actions .btn--outline {display: none;}
}