

:root {
  --bg-main: #08140e;
  --bg-card: #0f2218;
  --bg-card-hover: #142d20;
  --bg-foreground: #11281d;
  --bg-hero: #0a1c14;
  --bg-modal: #091811;
  --bg-input: #0f2218;

  --text-white: #ffffff;
  --text-muted: #8daaa0;
  --text-light: #e1eae6;
  --text-accent: #e5b842;
  --text-purple: #34d399;
  --text-red: #ef4444;
  --text-green: #10b981;

  --accent-gold: #e5b842;
  --accent-gold-dark: #c6982b;
  --accent-purple: #10b981;
  --accent-purple-dark: #065f46;
  --accent-green: #059669;
  --accent-green-hover: #047857;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-purple: rgba(16, 185, 129, 0.35);
  --border-gold: rgba(229, 184, 66, 0.4);

  --font-main: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 14px 36px rgba(0, 0, 0, 0.7);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-white);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
  background-color: var(--bg-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.main-content {
  flex: 1 0 auto;
  padding-top: 80px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 900;
  background-color: rgba(8, 20, 14, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-svg {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.logo-text-highlight {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-purple);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background-color: rgba(16, 185, 129, 0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-full {
  width: 100%;
}

.btn-login {
  background-color: var(--accent-purple-dark);
  color: var(--text-white);
  border: 1px solid var(--accent-purple);
}

.btn-login:hover {
  background-color: #087f5d;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--text-white);
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: #06120b;
  font-weight: 800;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(229, 184, 66, 0.35);
}

.btn-accent:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229, 184, 66, 0.5);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-white);
  padding: 8px;
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 20, 14, 0.98);
  backdrop-filter: blur(16px);
  z-index: 850;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-purple);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-link.active {
  color: var(--accent-gold);
}

.hero-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: rgba(8, 20, 14, 0.82);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: rgba(8, 20, 14, 0.82);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: rgba(8, 20, 14, 0.7);
  background-image: radial-gradient(circle at 50% 40%, rgba(16, 185, 129, 0.15), transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 840px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.hero-title-accent {
  color: var(--accent-gold);
  display: block;
  font-size: 3.25rem;
  margin-top: 4px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.category-filter-bar {
  margin-top: 40px;
  margin-bottom: 40px;
}

.filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-box-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-input {
  width: 100%;
  height: 44px;
  padding-left: 44px;
  padding-right: 16px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.search-input::placeholder {
  color: rgba(141, 170, 160, 0.7);
}

.search-input:focus {
  background-color: rgba(16, 185, 129, 0.2);
  border-color: var(--accent-gold);
}

.search-icon-svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-purple);
  pointer-events: none;
}

.categories-track-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-track-scroll::-webkit-scrollbar {
  display: none;
}

.categories-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--text-purple);
  background-color: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.chip-btn:hover {
  background-color: rgba(16, 185, 129, 0.25);
  border-color: var(--accent-gold);
  color: var(--text-white);
}

.chip-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #06120b;
  font-weight: 800;
}

.content-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 4px;
}

.arrow-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow-btn {
  padding: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-full);
  color: var(--text-purple);
  transition: all var(--transition-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: rgba(16, 185, 129, 0.35);
  border-color: var(--accent-gold);
  color: var(--text-white);
}

.arrow-btn svg {
  width: 22px;
  height: 22px;
}

.games-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.games-scroll-track::-webkit-scrollbar {
  display: none;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-card {
  flex: 0 0 200px;
  width: 200px;
  scroll-snap-align: start;
  background-color: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  border-color: var(--accent-gold);
}

.game-thumb-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background-color: #091710;
}

.game-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-normal);
}

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

.flame-badge-svg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  z-index: 15;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.game-overlay-hover {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 18, 11, 0.88);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.play-circle-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  border: 3px solid var(--accent-gold);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: transform var(--transition-fast);
}

.game-card:hover .play-circle-btn {
  transform: scale(1.05);
}

.play-triangle-svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
  margin-left: 3px;
}

.hover-title-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 8px;
  line-height: 1.2;
}

.hover-provider-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.game-info-box {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(11, 28, 19, 0.95);
}

.game-title-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-purple);
}

.provider-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
}

.provider-card:hover {
  background-color: rgba(16, 185, 129, 0.2);
  border-color: var(--accent-purple);
  transform: translateY(-2px);
}

.provider-name-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  background-color: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
  border-color: var(--border-purple);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.card-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.card-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1 0 auto;
}

.card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.calculator-card {
  background-color: #0f251c;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin-top: 20px;
  margin-bottom: 20px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-purple);
}

.calc-select,
.calc-input {
  height: 48px;
  padding: 0 16px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 1rem;
}

.calc-select option {
  background-color: var(--bg-modal);
  color: var(--text-white);
}

.calc-results-box {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px dashed var(--accent-purple);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.calc-result-value {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.feature-box {
  background-color: var(--bg-foreground);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon-svg {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.seo-content-block {
  background-color: rgba(15, 34, 24, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.seo-heading {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.seo-subheading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-purple);
  margin-top: 24px;
  margin-bottom: 12px;
}

.seo-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.seo-list {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.seo-list li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.prompt-card {
  background-color: #0e2018;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}

.prompt-code-block {
  background-color: #060e0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-purple);
  line-height: 1.5;
  margin-top: 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

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

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-icon-svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-input.input-padded {
  padding-left: 48px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-forgot-wrapper {
  text-align: right;
  margin-top: -8px;
  margin-bottom: 16px;
}

.forgot-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.forgot-link:hover {
  color: var(--text-white);
}

.btn-switch-auth {
  display: block;
  margin: 16px auto 0 auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.btn-switch-auth:hover {
  color: var(--accent-gold);
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.2);
  border: 1px solid var(--accent-green);
  color: var(--text-green);
}

.form-message.error {
  display: block;
  background-color: rgba(248, 113, 113, 0.2);
  border: 1px solid var(--text-red);
  color: var(--text-red);
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-purple);
  margin-top: 24px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-modal);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

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

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-white);
}

.modal-close-btn svg {
  width: 22px;
  height: 22px;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-slot-icon {
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-machine-svg {
  width: 64px;
  height: 64px;
  color: var(--accent-gold);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(9, 24, 17, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-purple);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  contain: layout style;
  will-change: transform, opacity;
}

.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background-color: #040c08;
  border-top: 1px solid var(--border-light);
  padding-top: 60px;
  padding-bottom: 50px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col-double {
  display: flex;
  flex-direction: column;
}

.footer-sub-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-column-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bullet-list li {
  position: relative;
  padding-left: 14px;
}

.footer-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-link {
  font-size: 0.84rem;
  color: #8daaa0;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.footer-link:hover {
  color: var(--text-white);
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #34d399;
  transition: color var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--accent-gold);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-disclaimer-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-disclaimer-text {
  font-size: 0.82rem;
  color: #8daaa0;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .calc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .filter-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-title-accent {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .seo-content-block .lg-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .logo-icon-svg {
    height: 32px;
    width: 32px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-link {
    gap: 8px;
  }

  .header-actions .btn-login,
  .header-actions .btn-outline {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: block !important;
  }
}

@media (max-width: 400px) {
  .logo-icon-svg {
    height: 28px;
    width: 28px;
  }

  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-title-accent {
    font-size: 2.35rem;
  }

  .btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .game-card {
    flex: 0 0 160px;
    width: 160px;
  }
}



:root {
  --bg-main: #0d0a26;
  --bg-card: #1c0c40;
  --bg-card-hover: #261250;
  --bg-foreground: #1c0c40;
  --bg-hero: #140733;
  --bg-modal: #141414;
  --bg-input: rgba(71, 47, 146, 0.3);

  --text-white: #ffffff;
  --text-muted: #b8a1ff;
  --text-accent: #ffb020;
  --text-purple: #b8a1ff;
  --accent-gold: #ffb020;
  --accent-purple: #ab84e1;
  --accent-green: #22c55e;
  --font-main: 'Poppins', 'Rubik', system-ui, -apple-system, sans-serif;
}

body {
  background-color: #0d0a26 !important;
  color: #ffffff;
}

.site-header {
  background-color: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title.uppercase {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
}


.category-filter-bar {
  padding-top: 16px;
  padding-bottom: 16px;
}

.search-input {
  height: 38px !important;
  background-color: rgba(71, 47, 146, 0.3) !important;
  border: 1px solid #ab84e1 !important;
  border-radius: 9999px !important;
  color: #b8a1ff !important;
  font-size: 0.88rem !important;
}

.search-input::placeholder {
  color: rgba(184, 161, 255, 0.5) !important;
}

.search-input:focus {
  background-color: rgba(71, 47, 146, 0.5) !important;
  border-color: #b8a1ff !important;
}

.search-icon-svg {
  color: #b8a1ff !important;
}

.chip-btn {
  background: rgba(71, 47, 146, 0.35) !important;
  border: 1px solid #ab84e1 !important;
  color: #b8a1ff !important;
  border-radius: 100px !important;
  padding: 8px 20px !important;
  font-weight: 500 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 0 10px rgba(184, 161, 255, 0.2) !important;
  transition: all 0.2s ease !important;
}

.chip-btn:hover {
  background: rgba(71, 47, 146, 0.55) !important;
  border-color: #b8a1ff !important;
  color: #b8a1ff !important;
  box-shadow: 0 0 15px rgba(184, 161, 255, 0.35) !important;
}

.chip-btn.active {
  background: linear-gradient(to bottom, #5a3f7c, #392760) !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 0 14px rgba(184, 161, 255, 0.4) !important;
}


.arrow-btn {
  padding: 8px !important;
  background: rgba(71, 47, 146, 0.3) !important;
  border: 1px solid #ab84e1 !important;
  border-radius: 9999px !important;
  color: #b8a1ff !important;
  transition: all 0.2s ease !important;
}

.arrow-btn:hover {
  background: rgba(71, 47, 146, 0.5) !important;
  border-color: #b8a1ff !important;
  color: #ffffff !important;
}


.games-scroll-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.game-card {
  flex: 0 0 185px;
  width: 185px;
  aspect-ratio: 1 / 1 !important;
  scroll-snap-align: start;
  background-color: #1c0c40 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(184, 161, 255, 0.25) !important;
  border-color: #ffb020 !important;
}

.game-thumb-box {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: #0d0a26 !important;
}

.game-cover-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  transition: transform 0.3s ease !important;
}

.game-card:hover .game-cover-img {
  transform: scale(1.08) !important;
}

.flame-badge-svg {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  width: 24px !important;
  height: 24px !important;
  z-index: 15 !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) !important;
}


.rtp-badge-box {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  border-radius: 6px !important;
  padding: 2px 7px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  z-index: 15 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.rtp-badge-val {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.rtp-badge-sub {
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-top: 1px !important;
}


.game-overlay-hover {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(13, 10, 38, 0.45), rgba(13, 10, 38, 0.95)) !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px !important;
  text-align: center !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
  border-radius: 16px !important;
}

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

.play-circle-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: linear-gradient(to bottom, #22c55e, #16a34a) !important;
  border: 2px solid #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.6) !important;
  transition: transform 0.2s ease !important;
}

.game-card:hover .play-circle-btn {
  transform: scale(1.1) !important;
}

.hover-title-text {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-top: 8px !important;
  line-height: 1.2 !important;
}

.hover-provider-text {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: #b8a1ff !important;
  margin-top: 2px !important;
}

.game-info-box {
  display: none !important;
}


.providers-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  margin-top: 16px !important;
}

@media (min-width: 640px) {
  .providers-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 768px) {
  .providers-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .providers-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

.provider-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.provider-card:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(184, 161, 255, 0.3) !important;
}

.provider-img {
  max-height: 36px !important;
  max-width: 100% !important;
  object-fit: contain !important;
}

@media (max-width: 767px) {
  .game-card {
    flex: 0 0 150px !important;
    width: 150px !important;
  }
}