:root {
  --color-gold: #e9a107;
  --color-gold-light: #faac23;
  --color-red: #ff0100;
  --color-bg: #3c1901;
  --color-text: #fff8ee;
  --color-text-dark: #1a0800;
  --color-surface: #5a2a08;
  --color-surface-light: #7a3d10;
  --color-border: #b87414;
  --font-main: 'Poppins', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-gold: 0 4px 20px rgba(233, 161, 7, 0.3);
  --transition: 0.3s ease;
}

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

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

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

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

a {
  text-decoration: none;
  color: var(--color-gold-light);
  transition: var(--transition);
}

a:hover {
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--color-gold);
}

h2 {
  font-size: 2rem;
  color: var(--color-gold-light);
}

h3 {
  font-size: 1.5rem;
  color: var(--color-gold-light);
}

p {
  margin-bottom: 1rem;
}

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

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

.wp-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.box {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.wp-content-area {
  display: none;
}

.elementor-widget-wrap {
  display: none;
}

.entry-content {
  padding: 20px 0;
}

.site-header {
  background: linear-gradient(135deg, var(--color-gold) 0%, #c78806 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.header-logo img {
  height: 56px;
  width: auto;
}

.x8m2k-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-menu li a {
  color: var(--color-text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.nav-menu li a:hover {
  color: var(--color-red);
}

.nav-menu svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-demo {
  background: var(--color-gold-light);
  color: var(--color-text-dark);
  box-shadow: 0 4px 12px rgba(250, 172, 35, 0.4);
}

.btn-demo:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(250, 172, 35, 0.5);
}

.btn-money {
  background: var(--color-red);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 1, 0, 0.4);
  animation: pulse-btn 2s infinite;
}

.btn-money:hover {
  background: #cc0100;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 1, 0, 0.6);
}

.btn-bonus {
  background: linear-gradient(135deg, #ff0100 0%, #ff4500 100%);
  color: white;
  box-shadow: var(--shadow-gold);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

.hero-section {
  position: relative;
  min-height: 500px;
  background-image: url('/sun-of-egypt-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(60, 25, 1, 0.7) 0%, rgba(60, 25, 1, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 3rem 2rem;
}

.hero-title {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-intro {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.spoiler-block {
  margin-top: 2rem;
  background: rgba(90, 42, 8, 0.6);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.spoiler-toggle {
  width: 100%;
  background: var(--color-gold);
  color: var(--color-text-dark);
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spoiler-toggle:hover {
  background: var(--color-gold-light);
}

.spoiler-toggle::after {
  content: '▼';
  transition: transform var(--transition);
}

.spoiler-toggle.active::after {
  transform: rotate(180deg);
}

.spoiler-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.spoiler-content.active {
  max-height: 500px;
  padding: 1.5rem;
}

.game-section {
  padding: 3rem 0;
}

.game-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.game-frame-block {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.game-frame-block h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.game-iframe-wrap {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  border-radius: var(--radius-md);
  background: #000;
  margin-bottom: 1.5rem;
}

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

.game-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.winners-block {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
  position: sticky;
  top: 100px;
}

.winners-block h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.winners-table-wrap {
  max-height: 600px;
  overflow-y: auto;
  border-radius: var(--radius-sm);
}

.winners-table-wrap::-webkit-scrollbar {
  width: 8px;
}

.winners-table-wrap::-webkit-scrollbar-track {
  background: var(--color-bg);
  border-radius: 4px;
}

.winners-table-wrap::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
}

.winners-table thead {
  position: sticky;
  top: 0;
  background: var(--color-surface-light);
  z-index: 10;
}

.winners-table th {
  padding: 0.75rem 0.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-light);
  border-bottom: 2px solid var(--color-gold);
}

.winners-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(184, 116, 20, 0.2);
}

.winners-table tbody tr {
  transition: var(--transition);
}

.winners-table tbody tr:hover {
  background: rgba(122, 61, 16, 0.3);
}

.winner-pos {
  font-weight: 600;
  color: var(--color-gold);
}

.winner-nick {
  color: var(--color-text);
}

.winner-amount {
  color: var(--color-gold-light);
  font-weight: 600;
}

.winner-multi {
  color: var(--color-red);
  font-weight: 700;
}

.pros-cons-section {
  padding: 3rem 0;
}

.pros-cons-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pros-col,
.cons-col {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.pros-col {
  border-top: 4px solid #28a745;
}

.cons-col {
  border-top: 4px solid #dc3545;
}

.pros-col h3 {
  color: #28a745;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons-col h3 {
  color: #dc3545;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-col ul,
.cons-col ul {
  list-style: none;
  padding: 0;
}

.pros-col li,
.cons-col li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.pros-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.cons-col li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2rem;
}

.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}

.youtube-section {
  padding: 3rem 0;
}

.youtube-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.youtube-wrap {
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  background: #000;
}

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

.review-section {
  padding: 3rem 0;
}

.review-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.review-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  margin: 0 auto;
}

.review-content h1,
.review-content h2,
.review-content h3 {
  color: var(--color-gold-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.review-content h1:first-child,
.review-content h2:first-child,
.review-content h3:first-child {
  margin-top: 0;
}

.review-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-content ul,
.review-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.review-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  background: var(--color-surface-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.review-content th,
.review-content td {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--color-border);
}

.review-content th {
  background: var(--color-gold);
  color: var(--color-text-dark);
  font-weight: 600;
}

.review-content tr:hover {
  background: rgba(122, 61, 16, 0.3);
}

.review-content a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.review-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem auto;
}

.review-content blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--color-gold-light);
}

.author-box {
  background: var(--color-surface-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--color-gold);
}

.author-box h4 {
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.author-box p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.author-box a {
  color: var(--color-gold-light);
  font-weight: 600;
}

.faq-section {
  padding: 3rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-container {
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(233, 161, 7, 0.3);
}

.faq-question {
  width: 100%;
  background: var(--color-surface-light);
  color: var(--color-text);
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--color-gold);
  color: var(--color-text-dark);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 600px;
  padding: 1.5rem;
}

.faq-answer p {
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.site-footer {
  background: linear-gradient(135deg, var(--color-gold) 0%, #c78806 100%);
  padding: 3rem 0 1rem;
  margin-top: auto;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
}

.footer-block h4 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-logo a {
  display: block;width: fit-content;
}
.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

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

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

.footer-menu a {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--color-red);
  padding-left: 5px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.payment-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.license-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.license-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.provider-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  background-color: rgba(0,0,0,0.9);
  width: fit-content;
  padding: 5px;
  border-radius: 5px;
}

.provider-info img {
  height: 20px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-text-dark);
  color: var(--color-gold);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-red);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(26, 8, 0, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--color-text-dark);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.legal-links a {
  color: var(--color-text-dark);
  font-size: 0.85rem;
}

.legal-links a:hover {
  color: var(--color-red);
}

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

.info-page-content {
  line-height: 1.8;
}

.info-page-content h2 {
  color: var(--color-gold-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}

.info-page-content h2:first-child {
  margin-top: 0;
}

.info-page-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.info-page-content ul,
.info-page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.info-page-content li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.info-page-content a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.info-page-content a:hover {
  color: var(--color-gold);
}

.info-page-content strong {
  color: var(--color-gold-light);
}

.game-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  background: var(--color-surface-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.game-stat-item {
  text-align: center;
  padding: 0.5rem;
}

.game-stat-val {
  color: var(--color-gold);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.game-stat-label {
  font-size: 0.75rem;
  color: #ccc;
}

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

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

@keyframes pulse-btn {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(255, 1, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 1, 0, 0.7);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(233, 161, 7, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(233, 161, 7, 0.8);
  }
}

.q7x9m2 {
  display: none;
}

.p4k8n3 {
  visibility: hidden;
}

.r2b6w1 {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

.t5j0v8 {
  display: none;
}

.wp-block-group {
  margin-bottom: 20px;
}

.wp-block-columns {
  display: flex;
  gap: 20px;
}

.has-text-align-center {
  text-align: center;
}

.alignwide {
  max-width: 1200px;
  margin: 0 auto;
}

.wp-embed-responsive {
  position: relative;
}

.woocommerce-info {
  display: none;
}

.elementor-section {
  padding: 40px 0;
}

.elementor-column {
  flex: 1;
}

@media (max-width: 1024px) {
  .game-container {grid-template-columns: 1fr;}
  .review-content {padding: 26px;}
  .winners-block {position: static;}
  .pros-cons-grid {grid-template-columns: 1fr;}
  .header-container {gap: 12px;}
  .nav-menu {gap: 24px;}
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
.review-content {padding: 20px;}
  h2 {
    font-size: 1.5rem;
  }

  .burger {
    display: flex;
  }

  .x8m2k-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .x8m2k-nav .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    padding: 2rem;
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .x8m2k-nav.active,
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    list-style: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-menu.active li {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

  .nav-menu li a {
    font-size: 1.5rem;
    color: var(--color-gold);
  }

  .nav-menu li a:hover {
    color: #fff;
  }

  .header-buttons {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .header-buttons .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

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

  .hero-intro {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .legal-links {
    gap: 0.5rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .review-content {padding: 16px;}
  .header-logo img {
    height: 48px;
  }

  .hero-section {
    min-height: 400px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .winners-table th,
  .winners-table td {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }

  .game-stats-grid {
    display: none;
  }

  .game-stat-val {
    font-size: 1.1rem;
  }
}