:root {
  --bg-main: #201B16;
  --bg-header: #27221D;
  --bg-input: #1A120B;
  --bg-panel: #2F2820;
  --bg-category: #433C32;
  --gold-bright: #F5DFAA;
  --gold-main: #E4B55E;
  --gold-text: #D5B96D;
  --gold-medium: #AB7843;
  --gold-dark: #7B562A;
  --bronze: #574929;
  --text-muted: #A89A82;
  --text-active: #E5D2A1;
  --cyan-core: #19A6E4;
  --cyan-light: #49C5E9;
  --aqua-glow: #A7FBE4;
  --purple-warm: #3B2836;
  --egyptian: #A25236;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-active);
  min-height: 100vh;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(171,120,67,0.3);
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-btn {
  width: 48px;
  height: 48px;
  background: var(--bg-header);
  border: 2px solid;
  border-image: linear-gradient(180deg, var(--gold-main), var(--gold-medium)) 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-main);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text .accent {
  background: linear-gradient(180deg, var(--cyan-light), var(--cyan-core));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-input), var(--bg-input)), linear-gradient(180deg, var(--gold-main), var(--gold-dark));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0 16px;
  height: 44px;
  min-width: 300px;
}
.search-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  opacity: 0.75;
}
.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-muted);
  font-size: 14px;
  padding: 0 12px;
}
.header-btn {
  height: 48px;
  padding: 0 24px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(180deg, #6a5a34, var(--bronze), #3f341f);
  border: 2px solid var(--gold-main);
  color: var(--text-active);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-btn:hover {
  color: var(--gold-bright);
}
.app-wrapper {
  display: flex;
  min-height: calc(100vh - 64px);
}
.sidebar {
  width: 220px;
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(245,223,170,0.1);
  flex-shrink: 0;
}
.sidebar-nav {
  flex: 1;
  padding: 8px 0;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  position: relative;
  border-bottom: 1px solid rgba(245,223,170,0.08);
}
.nav-item:hover {
  color: var(--text-active);
}
.nav-item.active {
  color: var(--text-active);
  background: linear-gradient(90deg, rgba(228,181,94,0.18), rgba(228,181,94,0.06), transparent 70%);
}
.nav-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(245,223,170,0.12);
  display: flex;
  gap: 8px;
}
.footer-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: var(--bg-input);
  border: 1px solid rgba(245,223,170,0.12);
  color: var(--text-active);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-btn .flag { font-size: 22px; }
.main-content {
  flex: 1;
  padding: 16px;
  background: var(--bg-main);
  min-width: 0;
  overflow-x: hidden;
}
.hero-slider {
  position: relative;
  height: 380px;
  margin-bottom: 12px;
  background: var(--bg-main);
  border: 2px solid rgba(245,223,170,0.35);
  outline: 1px solid rgba(171,120,67,0.35);
  outline-offset: -6px;
}
.hero-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.hero-corner::before, .hero-corner::after {
  content: '';
  position: absolute;
  background: var(--gold-main);
}
.hero-corner--tl { top: 8px; left: 8px; }
.hero-corner--tl::before { top: 0; left: 0; width: 100%; height: 3px; }
.hero-corner--tl::after { top: 0; left: 0; width: 3px; height: 100%; }
.hero-corner--tr { top: 8px; right: 8px; }
.hero-corner--tr::before { top: 0; right: 0; width: 100%; height: 3px; }
.hero-corner--tr::after { top: 0; right: 0; width: 3px; height: 100%; }
.hero-corner--bl { bottom: 8px; left: 8px; }
.hero-corner--bl::before { bottom: 0; left: 0; width: 100%; height: 3px; }
.hero-corner--bl::after { bottom: 0; left: 0; width: 3px; height: 100%; }
.hero-corner--br { bottom: 8px; right: 8px; }
.hero-corner--br::before { bottom: 0; right: 0; width: 100%; height: 3px; }
.hero-corner--br::after { bottom: 0; right: 0; width: 3px; height: 100%; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 60%, rgba(59,40,54,0.95), rgba(32,27,22,0.2) 55%),
    radial-gradient(circle at 80% 40%, rgba(162,82,54,0.55), rgba(32,27,22,0.15) 60%),
    linear-gradient(90deg, rgba(59,40,54,0.85), rgba(32,27,22,0.55));
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(180deg, var(--bronze) 0%, #3f341f 100%);
  border: 1px solid var(--gold-main);
  color: var(--gold-bright);
  padding: 8px 20px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--aqua-glow), var(--cyan-light), var(--cyan-core));
  color: #0a1a20;
  padding: 16px 60px;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 25px rgba(25,166,228,0.45);
  transition: all 0.3s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(25,166,228,0.6);
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--bg-header);
  border: 2px solid var(--gold-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.hero-nav--prev { left: 16px; }
.hero-nav--next { right: 16px; }
.hero-nav svg {
  width: 20px;
  height: 20px;
  fill: var(--text-active);
}
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(245,223,170,0.45);
  background: transparent;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--text-active);
  border-color: var(--text-active);
}
.category-nav {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid rgba(245,223,170,0.18);
}
.cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(39,34,29,0.55);
  border: 1px solid rgba(228,181,94,0.25);
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.cat-btn:hover {
  color: var(--text-active);
  border-color: rgba(228,181,94,0.4);
}
.cat-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold-main);
}
.cat-icon.cyan { fill: var(--cyan-core); }
.content-section {
  margin-top: 40px;
  padding: 40px;
  background: var(--bg-panel);
  border: 1px solid rgba(228,181,94,0.15);
  border-radius: 4px;
}
.content-header {
  text-align: center;
  margin-bottom: 40px;
}
.content-badge {
  display: inline-block;
  background: linear-gradient(180deg, var(--bronze), #3f341f);
  border: 1px solid var(--gold-medium);
  color: var(--gold-bright);
  padding: 8px 20px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.content-title {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-active);
  margin-bottom: 12px;
}
.content-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.content-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,223,170,0.1);
}
.content-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.block-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bronze), #3f341f);
  border: 1px solid var(--gold-medium);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-main);
}
.block-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-active);
}
.block-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.block-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-text);
  margin: 24px 0 12px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.stat-box {
  background: var(--bg-input);
  border: 1px solid rgba(228,181,94,0.2);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-main);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--bg-input);
  border-radius: 6px;
}
.feature-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, var(--gold-main), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--bg-main);
  flex-shrink: 0;
}
.feature-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.feature-text strong {
  color: var(--text-active);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}
.data-table th, .data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(245,223,170,0.1);
}
.data-table th {
  background: var(--bg-input);
  color: var(--gold-text);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
}
.data-table td {
  color: var(--text-muted);
}
.highlight-box {
  background: linear-gradient(135deg, rgba(59,40,54,0.5), rgba(32,27,22,0.8));
  border: 1px solid var(--gold-medium);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}
.highlight-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-main);
  margin-bottom: 12px;
}
.highlight-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.cta-section {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(59,40,54,0.6), rgba(32,27,22,0.9));
  border: 1px solid var(--gold-medium);
  border-radius: 8px;
  margin-top: 40px;
}
.cta-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-active);
  margin-bottom: 8px;
}
.cta-subtitle {
  font-size: 16px;
  color: var(--gold-text);
  margin-bottom: 24px;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--aqua-glow), var(--cyan-light), var(--cyan-core));
  color: #0a1a20;
  padding: 16px 48px;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 25px rgba(25,166,228,0.4);
  transition: all 0.3s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(25,166,228,0.6);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(245,223,170,0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}
.faq-question-text {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-active);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-medium);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon::before {
  content: '+';
  color: var(--gold-main);
  font-size: 18px;
}
.faq-item.active .faq-icon::before {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-content {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer-content ul {
  margin: 12px 0;
  padding-left: 20px;
}
.faq-answer-content li {
  margin-bottom: 8px;
}
.responsible-section {
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-input));
  border: 1px solid rgba(228,181,94,0.15);
  border-radius: 4px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
}
.responsible-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tool-card {
  background: var(--bg-input);
  border: 1px solid rgba(228,181,94,0.15);
  border-radius: 8px;
  padding: 24px 16px;
}
.tool-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--bronze), #3f341f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-main);
}
.tool-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-active);
  margin-bottom: 6px;
}
.tool-desc {
  font-size: 11px;
  color: var(--text-muted);
}
/* GAMES SECTION */
.games-section {
  margin-top: 24px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-active);
}
.section-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.see-all {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
}
.nav-arrows {
  display: flex;
  gap: 4px;
}
.nav-arrow {
  width: 32px;
  height: 32px;
  background: var(--bg-header);
  border: 1px solid rgba(228,181,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-panel);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.game-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-input) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-placeholder-icon {
  width: 48px;
  height: 48px;
  fill: var(--gold-dark);
  opacity: 0.5;
}
.game-num {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-main);
  z-index: 3;
}
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(180deg, #4ade80, #22c55e);
  color: #052e16;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 3;
}
.game-badge.jackpot {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-main));
  color: var(--bg-main);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,27,22,0.3) 0%, rgba(32,27,22,0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 4;
}
.game-card:hover .game-overlay {
  opacity: 1;
}
.game-btn {
  width: 80%;
  padding: 10px 0;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
}
.game-btn.play {
  background: linear-gradient(180deg, var(--aqua-glow), var(--cyan-light), var(--cyan-core));
  color: #0a1a20;
  border: 1px solid var(--gold-main);
}
.game-btn.demo {
  background: transparent;
  color: var(--text-active);
  border: 1px solid rgba(228,181,94,0.4);
}

/* FOOTER */
.footer {
  background: var(--bg-header);
  border-top: 1px solid rgba(228,181,94,0.15);
  padding: 40px 24px 100px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245,223,170,0.1);
  margin-bottom: 32px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-main), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-column h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-active);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: var(--gold-main);
}
.footer-payments {
  padding: 24px 0;
  border-bottom: 1px solid rgba(245,223,170,0.1);
  margin-bottom: 24px;
}
.footer-payments h5 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-icon {
  width: 56px;
  height: 36px;
  background: var(--bg-panel);
  border: 1px solid rgba(245,223,170,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,223,170,0.1);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-panel);
  border: 1px solid rgba(245,223,170,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}
.social-link:hover {
  border-color: var(--gold-main);
}
.social-link:hover svg {
  fill: var(--gold-main);
}
.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .games-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  .sidebar { display: none; }
  .search-box { min-width: 220px; }
}
@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: 1fr; }
  .responsible-tools { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 30px; }
}
@media (max-width: 768px) {
  .hero-slider { height: 320px; }
  .hero-title { font-size: 36px; }
  .hero-slide { padding: 30px 40px; }
  .search-box { display: none; }
  .header-btn { padding: 0 16px; font-size: 11px; }
}
@media (max-width: 600px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .responsible-tools { grid-template-columns: 1fr; }
  .content-title { font-size: 24px; }
}

/* ADDITIONAL STYLES FOR NEW SECTIONS */

/* Winner Amount Highlight */
.winner-amount {
  color: var(--gold-main);
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

/* Enhanced Data Table for Winners */
.data-table tbody tr:hover {
  background: rgba(228,181,94,0.05);
}

.data-table tbody tr:hover .winner-amount {
  color: var(--gold-bright);
  text-shadow: 0 0 10px rgba(228,181,94,0.3);
}

/* Coin Shop Specific */
.coin-reward {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coin-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-main));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--bg-main);
  font-weight: 700;
}

/* Bonus Crab Animation */
.bonus-crab-container {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, rgba(162,82,54,0.2), rgba(59,40,54,0.3));
  border-radius: 12px;
  border: 1px solid var(--gold-medium);
  overflow: hidden;
}

.bonus-crab-container::before {
  content: '🦀';
  position: absolute;
  font-size: 120px;
  opacity: 0.1;
  right: -20px;
  bottom: -30px;
}

/* Esport Game Cards */
.esport-games {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.esport-game-card {
  background: var(--bg-input);
  border: 1px solid rgba(228,181,94,0.15);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
}

.esport-game-card:hover {
  border-color: var(--cyan-core);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(25,166,228,0.2);
}

.esport-game-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.esport-game-name {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-active);
  text-transform: uppercase;
}

.esport-game-count {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Winner Ticker Animation */
.winner-ticker {
  background: linear-gradient(90deg, var(--bg-input), var(--bg-panel), var(--bg-input));
  border: 1px solid rgba(228,181,94,0.15);
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 24px;
  overflow: hidden;
}

.winner-ticker-content {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.winner-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.winner-ticker-name {
  color: var(--text-muted);
  font-size: 13px;
}

.winner-ticker-game {
  color: var(--text-active);
  font-size: 13px;
  font-weight: 500;
}

.winner-ticker-amount {
  color: var(--gold-main);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
}

/* German Flag Badge */
.german-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #000 33%, #dd0000 33%, #dd0000 66%, #ffcc00 66%);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Region Cards */
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.region-card {
  background: var(--bg-input);
  border: 1px solid rgba(228,181,94,0.15);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}

.region-card:hover {
  border-color: var(--gold-main);
}

.region-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.region-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-active);
  margin-bottom: 4px;
}

.region-players {
  font-size: 11px;
  color: var(--text-muted);
}

/* Prize Tiers */
.prize-tiers {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.prize-tier {
  background: var(--bg-input);
  border: 2px solid rgba(228,181,94,0.2);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.prize-tier:hover {
  transform: translateY(-4px);
  border-color: var(--gold-main);
}

.prize-tier.featured {
  background: linear-gradient(135deg, rgba(228,181,94,0.1), rgba(59,40,54,0.3));
  border-color: var(--gold-main);
  transform: scale(1.05);
}

.prize-tier.featured:hover {
  transform: scale(1.08);
}

.prize-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-main));
  color: var(--bg-main);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.prize-tier-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.prize-tier-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-active);
  margin-bottom: 4px;
}

.prize-tier-value {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-main);
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.countdown-item {
  background: var(--bg-input);
  border: 1px solid rgba(228,181,94,0.2);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  min-width: 80px;
}

.countdown-value {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan-core);
  line-height: 1;
}

.countdown-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Live Indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.2);
  border: 1px solid #ef4444;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #ef4444;
  text-transform: uppercase;
}

.live-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* RESPONSIVE FOR NEW SECTIONS */
@media (max-width: 1200px) {
  .esport-games { grid-template-columns: repeat(4, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .esport-games { grid-template-columns: repeat(3, 1fr); }
  .prize-tiers { flex-wrap: wrap; }
  .prize-tier.featured { transform: scale(1); }
}

@media (max-width: 600px) {
  .esport-games { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr; }
  .countdown-container { flex-wrap: wrap; }
  .countdown-item { min-width: 60px; padding: 12px 16px; }
  .countdown-value { font-size: 24px; }
}

/* ============================================
   SIDEBAR - FIXED HEIGHT & MONOCHROME ICONS
   ============================================ */

/* Sidebar fixed to viewport height */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  
  /* Optional: custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,0.3) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.3);
  border-radius: 2px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(212,175,55,0.5);
}

/* Sidebar nav takes available space */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
}

/* Sidebar footer sticks to bottom */
.sidebar-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,0.1);
}

/* ============================================
   MONOCHROME EMOJI ICONS
   ============================================ */

/* Method 1: Grayscale + Contrast (works on all emojis) */
.nav-icon {
  filter: grayscale(1) contrast(0.8) brightness(1.5);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  filter: grayscale(0);
  opacity: 1;
}

/* Method 2: Full monochrome gold tint */
/*
.nav-icon {
  filter: grayscale(1) sepia(1) hue-rotate(5deg) saturate(3) brightness(0.9);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  filter: grayscale(1) sepia(1) hue-rotate(5deg) saturate(5) brightness(1.1);
  opacity: 1;
}
*/

/* Method 3: Replace emojis with CSS/SVG icons (recommended) */
/*
.nav-icon {
  font-size: 0;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  opacity: 1;
}

.nav-item[href*="aktionen"] .nav-icon { background-image: url('/images/icons/gift.svg'); }
.nav-item[href*="startseite"] .nav-icon { background-image: url('/images/icons/home.svg'); }
.nav-item[href*="casino"] .nav-icon { background-image: url('/images/icons/slot.svg'); }
*/

/* ============================================
   APP WRAPPER LAYOUT FIX
   ============================================ */

.app-wrapper {
  display: flex;
  min-height: calc(100vh - 60px); /* minus header height */
}

/* Main content scrolls independently */
.main-content {
  flex: 1;
  min-width: 0; /* prevent flex overflow */
}

/* ============================================
   MOBILE SIDEBAR (FIXED OVERLAY)
   ============================================ */

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 60px; /* header height */
    left: 0;
    width: 260px;
    height: calc(100vh - 60px);
    z-index: 100;
    background: #1a1510;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: 1px solid rgba(212,175,55,0.2);
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  /* Backdrop overlay */
  .sidebar::before {
    content: '';
    position: fixed;
    top: 0;
    left: 260px;
    width: calc(100vw - 260px);
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .sidebar.active::before {
    opacity: 1;
    visibility: visible;
  }
}
.hero-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 60px;
  position: relative;
  z-index: 1;
}

.hero-slide.active {
  display: flex;
}

.hero-content {
  flex: 2;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .hero-slide.active {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    max-height: 180px;
  }
}
/* GAMES SECTIONS WITH IMAGES - CSS */

/* Game Card Base */
.game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-panel);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

/* Game Numbers */
.game-num {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold-main);
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Badge Variants */
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 3;
  letter-spacing: 0.5px;
}

/* Default NEW badge */
.game-badge {
  background: linear-gradient(180deg, #4ade80, #22c55e);
  color: #052e16;
}

/* Jackpot badge */
.game-badge.jackpot {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-main));
  color: var(--bg-main);
  font-family: 'Cinzel', serif;
  font-size: 10px;
}

/* LIVE badge */
.game-badge.live {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* Exclusive badge */
.game-badge.exclusive {
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  color: #fff;
}

/* Bonus Buy badge */
.game-badge.bonus-buy {
  background: linear-gradient(180deg, #f472b6, #ec4899);
  color: #fff;
}

/* HOT badge */
.game-badge[style*="HOT"],
.game-card .game-badge:contains("HOT") {
  background: linear-gradient(180deg, #f97316, #ea580c);
  color: #fff;
}

/* Game Overlay */
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,27,22,0.2) 0%, rgba(32,27,22,0.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

/* Game Buttons */
.game-btn {
  width: 80%;
  padding: 10px 0;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.game-btn.play {
  background: linear-gradient(180deg, var(--aqua-glow), var(--cyan-light), var(--cyan-core));
  color: #0a1a20;
  border: 1px solid var(--gold-main);
}

.game-btn.play:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25,166,228,0.4);
}

.game-btn.demo {
  background: transparent;
  color: var(--text-active);
  border: 1px solid rgba(228,181,94,0.4);
}

.game-btn.demo:hover {
  border-color: var(--gold-main);
  background: rgba(228,181,94,0.1);
}

/* Sports Cards */
.sport-card {
  aspect-ratio: 1/1;
}

.sport-card img {
  object-fit: contain;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-input));
}

.sport-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(0deg, rgba(32,27,22,0.95), transparent);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-active);
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.sports-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,223,170,0.1);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-active);
}

.section-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.see-all {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.see-all:hover {
  color: var(--gold-main);
}

.nav-arrows {
  display: flex;
  gap: 4px;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  background: var(--bg-header);
  border: 1px solid rgba(228,181,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-arrow:hover {
  border-color: var(--gold-main);
  background: rgba(228,181,94,0.1);
}

.nav-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
}

.nav-arrow:hover svg {
  fill: var(--gold-main);
}

/* Games Section Spacing */
.games-section {
  margin-top: 24px;
}

.games-section:first-child {
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .games-grid { grid-template-columns: repeat(5, 1fr); }
  .sports-grid { grid-template-columns: repeat(5, 1fr) !important; }
}

@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .sports-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .game-num { font-size: 36px; }
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .game-num { font-size: 32px; }
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .game-num { font-size: 28px; }
  .game-btn { font-size: 10px; padding: 8px 0; }
  .section-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 400px) {
  .games-grid { gap: 8px; }
  .game-badge { font-size: 8px; padding: 3px 6px; }
}