@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --clr-header: #d57d14;
  --clr-header-dark: #b8680e;
  --clr-btn-white: #ffffff;
  --clr-btn-green: #0adb46;
  --clr-btn-green-dark: #08c03d;
  --clr-bg: #af2c4c;
  --clr-bg-dark: #8e1f38;
  --clr-bg-deeper: #6e1229;
  --clr-gold: #f0c040;
  --clr-gold-light: #ffe080;
  --clr-text-light: #fff9f0;
  --clr-text-muted: #f5c89a;
  --clr-card: rgba(0,0,0,0.35);
  --clr-card-border: rgba(213,125,20,0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: 'Nunito', 'Calibri', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 18px; }

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

input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--clr-bg-dark); }
::-webkit-scrollbar-thumb { background: var(--clr-header); border-radius: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn--white {
  background: #fff;
  color: #8e1f38;
}
.btn--white:hover { filter: brightness(0.95); color: #8e1f38; }

.btn--green {
  background: var(--clr-btn-green);
  color: #0a3a1a;
  box-shadow: 0 0 14px rgba(10,219,70,0.3);
}
.btn--green:hover { background: var(--clr-btn-green-dark); box-shadow: 0 0 22px rgba(10,219,70,0.5); color: #0a3a1a; }

.btn--gold {
  background: linear-gradient(135deg, #f0c040, #e8960a);
  color: #3a1e00;
  box-shadow: 0 0 14px rgba(240,192,64,0.4);
}
.btn--gold:hover { filter: brightness(1.1); box-shadow: 0 0 24px rgba(240,192,64,0.6); color: #3a1e00; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-header);
  color: var(--clr-text-light);
}
.btn--outline:hover { background: var(--clr-header); color: #fff; }

.btn--lg { padding: 14px 34px; font-size: 1.08rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }
.btn--full { width: 100%; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 14px rgba(10,219,70,0.3); }
  50% { box-shadow: 0 0 32px rgba(10,219,70,0.7); }
}
.btn--green { animation: pulse-green 2.5s infinite; }

.site-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.header-logo .logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,0.18); color: #fff; }
.header-nav svg { flex-shrink: 0; }

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.burger span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.burger:hover { background: rgba(255,255,255,0.28); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header-dark);
    flex-direction: column;
    padding: 14px 18px;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .header-nav.open { display: flex; }
  .header-nav a { justify-content: flex-start; padding: 10px 14px; border-radius: var(--radius-sm); }
}

@media (max-width: 600px) {
  .header-actions .btn { font-size: 0.78rem; padding: 8px 12px; }
}

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--clr-bg-deeper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/sun-of-egypt-4-hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110,18,41,0.82) 0%, rgba(175,44,76,0.6) 50%, rgba(110,18,41,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,0.7);
  margin-bottom: 16px;
}
.hero-content h1 span { color: var(--clr-gold); }

.hero-intro {
  font-size: 1.08rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.badge {
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--clr-card-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.03em;
}

.hero-spoiler {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 28px;
  text-align: left;
}
.hero-spoiler summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--clr-gold);
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-spoiler summary::before {
  content: '▶';
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.hero-spoiler[open] summary::before { transform: rotate(90deg); }
.hero-spoiler .spoiler-text {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes hero-glow {
  0%, 100% { text-shadow: 0 3px 18px rgba(0,0,0,0.7), 0 0 40px rgba(240,192,64,0.0); }
  50% { text-shadow: 0 3px 18px rgba(0,0,0,0.7), 0 0 40px rgba(240,192,64,0.35); }
}
.hero-content h1 { animation: hero-glow 4s ease-in-out infinite; }

@media (max-width: 600px) {
  .hero-section { min-height: 420px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 260px; }
}

.main-content { flex: 1; padding: 30px 0 50px; }

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--clr-gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title svg { flex-shrink: 0; }

.game-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.game-col { flex: 1 1 60%; min-width: 0; }
.leaderboard-col { flex: 0 0 320px; }

@media (max-width: 900px) {
  .game-row { flex-direction: column; }
  .leaderboard-col { flex: 1 1 100%; width: 100%;}
  .game-col {width: 100%;}
}

.game-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.game-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.game-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.game-frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--clr-bg-deeper), var(--clr-bg-dark));
  cursor: pointer;
}
.game-frame-placeholder img { width: auto; height: 160px; border-radius: var(--radius-md); }
.game-frame-placeholder p { color: var(--clr-text-muted); font-size: 0.9rem; }

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.25);
  flex-wrap: wrap;
}
.game-meta { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; }
.game-meta strong { color: var(--clr-gold); }
.game-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.leaderboard-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}
.leaderboard-header {
  background: linear-gradient(135deg, var(--clr-header), #c06a0a);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.leaderboard-header h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0; }
.live-dot {
  width: 8px; height: 8px;
  background: var(--clr-btn-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.leaderboard-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 0;
}
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.leaderboard-table thead th {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.6);
  color: var(--clr-text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--clr-card-border);
}
.leaderboard-table tbody tr {
  border-bottom: 1px solid rgba(213,125,20,0.12);
  transition: background var(--transition);
}
.leaderboard-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.leaderboard-table tbody td {
  padding: 8px 12px;
  vertical-align: middle;
  color: var(--clr-text-light);
}
.lb-rank { font-weight: 800; color: var(--clr-text-muted); }
.lb-rank.top-1 { color: #ffd700; }
.lb-rank.top-2 { color: #c0c0c0; }
.lb-rank.top-3 { color: #cd7f32; }
.lb-nick { font-weight: 700; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-win { font-weight: 800; color: var(--clr-btn-green); white-space: nowrap; }
.lb-mult { color: var(--clr-gold); font-weight: 700; font-size: 0.78rem; }

.lb-new-entry {
  animation: lb-flash 1s ease;
}
@keyframes lb-flash {
  0% { background: rgba(10,219,70,0.2); }
  100% { background: transparent; }
}

.strategies-section { margin-bottom: 36px; }
.strategies-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.strategy-card {
  flex: 1 1 280px;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.strategy-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,0.55); }

.strategy-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.strategy-card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strategy-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-gold);
  margin: 0;
}
.strategy-card-body p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
}
.strategy-card-footer { padding: 0 18px 18px; }

.review-section { margin-bottom: 36px; }
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-header), var(--clr-bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name {
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--clr-text-light);
}
.author-name a { color: var(--clr-gold); }
.author-role { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.5; margin-top: 2px; }

.review-content-box {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.review-content-box h2 { font-size: 1.4rem; font-weight: 800; color: var(--clr-gold); margin: 0 0 14px; }
.review-content-box h3 { font-size: 1.15rem; font-weight: 800; color: var(--clr-gold-light); margin: 22px 0 10px; }
.review-content-box h4 { font-size: 1rem; font-weight: 700; color: var(--clr-text-muted); margin: 18px 0 8px; }
.review-content-box p { font-size: 0.95rem; line-height: 1.75; color: var(--clr-text-light); margin: 0 0 14px; }
.review-content-box ul, .review-content-box ol { margin: 0 0 14px 22px; }
.review-content-box li { font-size: 0.93rem; color: var(--clr-text-light); line-height: 1.65; margin-bottom: 5px; }
.review-content-box ul li::marker { color: var(--clr-gold); }
.review-content-box ol li::marker { color: var(--clr-gold); font-weight: 700; }
.review-content-box strong { color: var(--clr-gold-light); font-weight: 700; }
.review-content-box em { color: var(--clr-text-muted); font-style: italic; }
.review-content-box a { color: var(--clr-gold); text-decoration: underline; }
.review-content-box a:hover { color: var(--clr-gold-light); }
.review-content-box blockquote {
  border-left: 4px solid var(--clr-header);
  margin: 18px 0;
  padding: 12px 18px;
  background: rgba(0,0,0,0.25);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.review-content-box table {
  width: auto;
  max-width: 100%;
  border-collapse: collapse;
  margin: 18px auto;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}
.review-content-box table th {
  background: rgba(213,125,20,0.3);
  color: var(--clr-gold);
  font-weight: 700;
  padding: 10px 16px;
  border: 1px solid var(--clr-card-border);
  text-align: left;
}
.review-content-box table td {
  padding: 9px 16px;
  border: 1px solid rgba(213,125,20,0.2);
  color: var(--clr-text-light);
  text-align: left;
}
.review-content-box table tr:nth-child(even) td { background: rgba(0,0,0,0.2); }
.review-content-box img { max-width: 100%; border-radius: var(--radius-md); margin: 14px auto; }
.review-content-box hr { border: none; border-top: 1px solid var(--clr-card-border); margin: 20px 0; }

@media (max-width: 600px) {
  .review-content-box { padding: 18px 16px; }
}

.faq-section { margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--clr-text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}
.faq-item summary:hover { background: rgba(255,255,255,0.05); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--clr-gold); background: rgba(213,125,20,0.1); }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-card-border);
  padding-top: 14px;
}
.faq-answer a { color: var(--clr-gold); text-decoration: underline; }

.site-footer {
  background: var(--clr-header);
  color: #fff;
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 18px; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
  justify-content: space-between;
}

.footer-brand { flex: 0 0 220px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
  width: fit-content;
}
.footer-logo img { height: 56px; width: auto; }
.footer-logo span { font-size: 1.05rem; font-weight: 900; color: #fff; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.footer-nav-col h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-nav-col ul { list-style: none; padding: 0; margin: 0; }
.footer-nav-col ul li { margin-bottom: 6px; }
.footer-nav-col ul li a { color: rgba(255,255,255,0.85); font-size: 0.87rem; font-weight: 600; transition: color var(--transition); }
.footer-nav-col ul li a:hover { color: #fff; }

.footer-social h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); color: #fff; }
.social-link svg { width: 18px; height: 18px; }

.footer-middle {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}
.footer-badges-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); width: 100%; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.payment-logo {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.footer-provider a { color: rgba(255,255,255,0.9); font-weight: 700; text-decoration: underline; }
.footer-provider img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }

.footer-bottom {
  text-align: center;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .footer-email { color: rgba(255,255,255,0.85); font-weight: 600; }

@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 20px; }
  .footer-brand { flex: 1 1 100%; }
}

.info-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 30px 0 50px;
  box-shadow: var(--shadow);
}
.info-content h1 { font-size: 1.7rem; font-weight: 900; color: var(--clr-gold); margin-bottom: 20px; }
.info-content h2 { font-size: 1.2rem; font-weight: 800; color: var(--clr-gold-light); margin: 22px 0 10px; }
.info-content p { color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.info-content ul { margin: 0 0 12px 20px; }
.info-content li { color: var(--clr-text-muted); font-size: 0.93rem; line-height: 1.65; margin-bottom: 5px; }
.info-content ul li::marker { color: var(--clr-gold); }
.info-content a { color: var(--clr-gold); text-decoration: underline; }

@media (max-width: 600px) {
  .info-content { padding: 20px 16px; }
  .game-frame-placeholder img {height: 100px;}
}
@media (max-width: 480px) {
  .header-logo .logo-text { display: none; }
  .game-frame-placeholder img { display: none; }
  .game-meta { display: none; }
  .game-frame-placeholder p {display: none;}
}


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

.wc-block-xr7f2 { display: none; }
.elementor-px09z { visibility: hidden; }
.wp-block-qz3m1 { pointer-events: none; opacity: 0; position: absolute; }
.woocommerce-y4k8 { display: none !important; }
.entry-meta-b2r5 { opacity: 0; height: 0; overflow: hidden; }
.yoast-seo-k1p4 { display: none; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 30px; }
.text-center { text-align: center; }
.text-gold { color: var(--clr-gold); }
.d-flex { display: flex; }
.gap-2 { gap: 12px; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
