/* ================================================
   SLOTS REVIEWS — Dark Theme with Orange Accents
   ================================================ */

/* === CSS Variables === */
:root {
  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #d0d0d0;
  --text-muted: #777777;
  
  /* Accents */
  --accent: #f5a623;
  --accent-hover: #ffb84d;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --accent-secondary: #4fc3f7;
  
  /* Borders */
  --border-color: #2a2a2a;
  --border-light: #333333;
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Spacing */
  --container-width: 1200px;
  --section-gap: 80px;
  
  /* Fonts */
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-primary);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 30px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Header Search */
.header-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 10px 20px;
  gap: 10px;
  transition: all 0.2s ease;
  width: 100%;
}

.header-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.header-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  max-height: 350px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-search-suggestions.active {
  display: block;
}

.header-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.header-suggestion-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.header-suggestion-img {
  width: 45px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

.header-suggestion-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-suggestion-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.header-suggestion-rtp {
  font-size: 0.7rem;
  color: var(--accent);
}

.header-no-results {
  padding: 15px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.search-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.85rem;
  width: 120px;
}

.search-input::placeholder {
  color: var(--text-muted);
}

/* Random Casino Button */
.random-casino-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #e8941f);
  color: #000;
  padding: 8px 14px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.random-casino-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px var(--accent-glow);
  color: #000;
}

.wheel-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.wheel-icon-inline {
  width: 18px;
  height: 18px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo:hover {
  color: var(--text-primary);
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-icon-svg {
  width: 50px;
  height: 55px;
}

.logo-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  padding: 8px 16px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--accent-glow);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.lang-option {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
}

.lang-option:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.lang-option.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.5;
}

.header-badge {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4444;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
}

/* === Main === */
.main {
  min-height: calc(100vh - 70px - 300px);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === Breadcrumbs === */
.breadcrumbs {
  padding: 24px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .sep {
  margin: 0 10px;
  opacity: 0.5;
}

/* === Slot Review === */
.slot-review {
  padding-bottom: var(--section-gap);
}

/* Hero */
.slot-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 48px;
}

.slot-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.slot-hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.slot-hero-image {
  width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Slot Card */
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
}

.slot-card-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.slot-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slot-card-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-card-item.full {
  grid-column: span 2;
}

.slot-card-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-card-item .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.slot-card-item .value.highlight {
  color: var(--accent);
}

.slot-features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.slot-features .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tag {
  background: var(--accent-glow);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Content */
.slot-content {
  max-width: 800px;
}

.slot-content h2 {
  font-size: 1.75rem;
  margin: 48px 0 20px;
  padding-top: 24px;
}

.slot-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.slot-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 16px;
  color: var(--accent);
}

.slot-content p {
  margin-bottom: 16px;
}

.slot-content ul,
.slot-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.slot-content ul {
  list-style: disc;
}

.slot-content ol {
  list-style: decimal;
}

.slot-content li {
  margin-bottom: 8px;
}

.slot-content strong {
  color: var(--text-primary);
}

.slot-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--text-muted);
  font-style: italic;
}

/* Pros & Cons */
.pros-cons {
  margin: 48px 0;
}

.pros-cons h2 {
  margin-bottom: 24px;
}

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

.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.pros h3 {
  color: #4caf50;
  margin-bottom: 16px;
}

.cons h3 {
  color: #f44336;
  margin-bottom: 16px;
}

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

.pros li, .cons li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.pros li:last-child, .cons li:last-child {
  border-bottom: none;
}

/* FAQ */
.faq {
  margin: 48px 0;
}

.faq h2 {
  margin-bottom: 24px;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
}

/* Similar Slots */
.similar-slots {
  margin: 48px 0;
}

.similar-slots h2 {
  margin-bottom: 24px;
}

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

.similar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
}

.similar-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.similar-title {
  font-weight: 600;
  color: var(--text-primary);
}

.similar-info {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Disclaimer */
.slot-disclaimer {
  margin-top: 48px;
  padding: 24px;
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slot-disclaimer strong {
  color: #ff4444;
}

/* === Slots Catalog === */
.slots-catalog {
  padding: 48px 0 var(--section-gap);
}

.slots-catalog h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.slots-catalog-subtitle {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

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

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

.slot-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.slot-preview:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.slot-preview-image {
  height: 180px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.slot-preview-content {
  padding: 20px;
}

.slot-preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.slot-preview-provider {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.slot-preview-stats {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.slot-preview-stats span {
  color: var(--text-muted);
}

.slot-preview-stats strong {
  color: var(--accent);
}

/* === Home Page === */
.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/banner.png') center 70% / cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 30, 0.92) 0%,
    rgba(10, 10, 30, 0.65) 35%,
    rgba(10, 10, 30, 0.5) 60%,
    rgba(10, 10, 30, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 24px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.read-more-link {
  color: #4fc3f7;
  font-size: 0.95rem;
  text-decoration: underline;
}

.read-more-link:hover {
  color: #81d4fa;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.home-section {
  padding: var(--section-gap) 0;
}

.home-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.home-section-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* === Layout with Sidebar === */
.main-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.main-content {
  min-width: 0;
}

/* === Sidebar === */
.sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-section h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

/* Hot Slot Card */
.hot-slot {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.hot-slot:last-child {
  margin-bottom: 0;
}

.hot-slot-image {
  display: block;
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hot-slot-image:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.hot-slot-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}

.play-demo {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hot-slot-info {
  font-size: 0.85rem;
}

.hot-slot-date {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.hot-slot-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: none;
}

.hot-slot-stats {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hot-slot-stats .highlight {
  color: var(--accent);
  font-weight: 600;
}

.hot-slot-stats .high {
  color: #f44336;
  font-weight: 600;
}

.hot-slot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag-small {
  background: rgba(79, 195, 247, 0.15);
  color: #4fc3f7;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
}

.hot-slot-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.btn-play {
  flex: 1;
  background: linear-gradient(135deg, #f44336, #e53935);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.btn-play:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
  color: #fff;
}

.btn-demo {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.btn-demo:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hot-slot-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Responsive sidebar */
@media (max-width: 1024px) {
  .main-with-sidebar {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
}

/* === Content Section === */
.content-section {
  padding: 60px 0 80px;
}

/* First content section before slots */
.intro-section {
  padding-bottom: 10px;
}

/* Inline SVG Icons (встроенные в текст) */
.inline-icon {
  width: 140px;
  height: 140px;
  margin: 0 24px 16px 0;
  opacity: 0.9;
}

.inline-icon-left {
  float: left;
  shape-outside: circle(50%);
}

.inline-icon-right {
  float: right;
  margin: 0 0 16px 24px;
  shape-outside: circle(50%);
}

.main-text-content {
  max-width: 100%;
}

.main-text-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin: 48px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.main-text-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.main-text-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  margin: 32px 0 16px;
  text-transform: none;
}

.main-text-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.main-text-content ul,
.main-text-content ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.main-text-content ul {
  list-style: disc;
}

.main-text-content ol {
  list-style: decimal;
}

.main-text-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.main-text-content strong {
  color: var(--text-primary);
}

/* === Tables === */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.content-table thead {
  background: var(--bg-card);
}

.content-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent);
}

.content-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.content-table tbody tr {
  transition: background 0.2s ease;
}

.content-table tbody tr:hover {
  background: var(--bg-card);
}

.content-table tbody tr:last-child td {
  border-bottom: none;
}

.content-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* === Warning Block === */
.warning-block {
  margin: 40px 0;
  padding: 24px 28px;
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.25);
  border-left: 4px solid #ff4444;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.warning-block strong {
  color: #ff6b6b;
  display: block;
  margin-bottom: 8px;
}

/* === Responsive Content === */

@media (max-width: 900px) {
  .main-text-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .inline-icon {
    width: 100px;
    height: 100px;
    margin: 0 16px 12px 0;
  }
  
  .inline-icon-right {
    margin: 0 0 12px 16px;
  }
}

@media (max-width: 600px) {
  .content-section {
    padding: 40px 0 60px;
  }
  
  .main-text-content h2 {
    font-size: 1.35rem;
    margin: 36px 0 16px;
  }
  
  .main-text-content h3 {
    font-size: 1.1rem;
  }
  
  .content-table th,
  .content-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  
  .table-wrapper {
    margin: 20px -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* === Footer === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
  margin-top: auto;
}

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

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer ul a:hover {
  color: var(--accent);
}

/* Footer Responsible Gaming */
.footer-responsible {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px 0;
}

.footer-responsible h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-responsible-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.responsible-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.responsible-link:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.responsible-link svg {
  stroke: currentColor;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .slots-grid,
  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .slot-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .header .container {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
    gap: 10px;
  }
  
  .header-search-wrapper {
    order: 2;
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .random-casino-btn {
    display: none;
  }
  
  .lang-switcher {
    order: 1;
    margin-left: auto;
  }
  
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  .slot-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .slot-hero-image {
    margin: 0 auto;
  }
  
  .slot-hero h1 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .slots-grid,
  .similar-grid {
    grid-template-columns: 1fr;
  }
  
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .slot-card-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* ================================================
   SLOTS CATALOG PAGE
   ================================================ */

/* Slots Hero */
.slots-hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.slots-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.slots-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Filters */
.slots-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.filter-btn .count {
  background: rgba(0,0,0,0.2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-left: 5px;
}

/* Slots Catalog */
.slots-catalog {
  padding: 50px 0;
}

.slots-catalog .slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

/* Slot Card (Catalog) */
.slot-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.slot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.2);
  border-color: var(--accent);
}

.slot-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

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

.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.play-demo-btn {
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-demo-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.slot-card-info {
  padding: 15px;
}

.slot-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card-provider {
  font-size: 0.85rem;
  color: var(--accent);
}

/* Loading & No Results */
.loading, .no-results, .error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.error {
  color: #ff6b6b;
}

/* Demo Modal */
.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.demo-modal.active {
  display: flex;
}

.demo-modal-content {
  width: 100%;
  max-width: 1200px;
  height: 85vh;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.demo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.demo-modal-header h3 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.3rem;
}

.demo-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.demo-modal-close:hover {
  color: var(--accent);
}

.demo-modal-body {
  flex: 1;
  background: #000;
}

.demo-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive for Slots Catalog */
@media (max-width: 768px) {
  .slots-hero h1 {
    font-size: 1.8rem;
  }
  
  .slots-catalog .slots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .slot-card-info {
    padding: 12px;
  }
  
  .slot-card-name {
    font-size: 0.9rem;
  }
  
  .demo-modal-content {
    height: 70vh;
  }
}

@media (max-width: 480px) {
  .slots-catalog .slots-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

/* === Home Page Slots Section === */
.home-slots-section {
  margin: 40px -24px;
  padding: 30px 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}

.slots-counter {
  margin-bottom: 16px;
  padding: 10px 16px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.slots-counter strong {
  color: var(--accent);
  font-weight: 600;
}

.home-slots-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.home-slot-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.home-slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.home-slot-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: block;
  transform: scaleX(1.08);
}

/* Sunset Style - RTP Badge (compact) */
.home-slot-card .rtp-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #18181b;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  z-index: 2;
}

/* Sunset Style - HOT Badge (compact) */
.home-slot-card .hot-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3px;
}

.home-slot-card .hot-badge .fire-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.home-slot-card .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 28px;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.home-slot-card:hover .play-overlay {
  opacity: 1;
}

.home-slot-card .play-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  transition: transform 0.2s;
}

.home-slot-card .play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.home-slot-card:hover .play-icon {
  transform: scale(1.1);
}

.home-slot-info {
  padding: 8px;
  text-align: center;
  background: var(--bg-card);
}

.home-slot-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-decoration: none;
}

a.home-slot-name.has-review {
  color: var(--accent);
  cursor: pointer;
  transition: color 0.2s;
}

a.home-slot-name.has-review:hover {
  color: #fff;
  text-decoration: underline;
}

.show-more-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s;
}

.show-more-btn:hover {
  background: var(--accent);
  color: #000;
}

.show-more-btn.hidden {
  display: none;
}

/* Home slots game modal */
.home-game-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.home-game-container.active {
  display: flex;
}

.home-game-modal {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  height: 80vh;
  max-height: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.home-game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.home-game-title {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0;
}

.home-game-controls {
  display: flex;
  gap: 10px;
}

.home-game-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.home-game-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.home-game-btn.close-btn {
  background: transparent;
  border-color: var(--text-muted);
  color: var(--text-muted);
}

.home-game-btn.close-btn:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.home-game-frame-wrapper {
  flex: 1;
  background: #000;
}

.home-game-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================
   FILTERS SIDEBAR
   ================================================ */

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

/* ================================================
   SLOTS SEARCH BOX
   ================================================ */

.slots-search-wrapper {
  position: relative;
  margin-bottom: 25px;
  max-width: 500px;
}

.slots-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0 16px;
  transition: all 0.3s ease;
}

.slots-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

.slots-search-box .search-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.3s;
}

.slots-search-box:focus-within .search-icon {
  color: var(--accent);
}

.slots-search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  outline: none;
}

.slots-search-input::placeholder {
  color: var(--text-muted);
}

.search-clear-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.search-clear-btn:hover {
  color: var(--accent);
}

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  max-height: 350px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-suggestions.active {
  display: block;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.search-suggestion-item:hover {
  background: rgba(245, 166, 35, 0.1);
}

.search-suggestion-item img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.search-suggestion-info {
  flex: 1;
}

.search-suggestion-name {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.search-suggestion-name mark {
  background: transparent;
  color: var(--accent);
  font-weight: 700;
}

.search-suggestion-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex;
  gap: 10px;
}

.search-suggestion-rtp {
  color: #4ade80;
}

.search-suggestion-hot {
  color: #fb923c;
}

.search-no-results {
  padding: 20px 16px;
  text-align: center;
  color: var(--text-muted);
}

.search-suggestions::-webkit-scrollbar {
  width: 4px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: transparent;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.slots-with-sidebar {
  display: flex !important;
  gap: 30px;
  align-items: flex-start;
}

.slots-with-sidebar .home-slots-section {
  flex: 1;
  min-width: 0;
}

.filters-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, #0d0d0d 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

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

.filters-sidebar::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 2px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.filter-group {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group h4 {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.filter-checkbox:hover {
  background: rgba(255,255,255,0.03);
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-secondary);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.filter-checkbox input[type="radio"] {
  border-radius: 50%;
}

.filter-checkbox input[type="checkbox"]:checked,
.filter-checkbox input[type="radio"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.filter-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  display: block;
  text-align: center;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

.filter-checkbox input[type="radio"]:checked::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 3px auto;
  background: #000;
  border-radius: 50%;
}


/* Filter results count */
.filter-results {
  text-align: center;
  padding: 10px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: var(--accent);
}

/* No results message */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.no-results h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

/* Mobile sidebar toggle */
.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

@media (max-width: 1024px) {
  .slots-with-sidebar {
    flex-direction: column-reverse;
  }
  
  .filters-sidebar {
    width: 100%;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 60vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .filters-sidebar.open {
    transform: translateY(0);
  }
  
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-slots-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .home-slots-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  
  .home-slot-name {
    font-size: 0.7rem;
  }
  
  .home-game-modal {
    height: 70vh;
  }
}

@media (max-width: 480px) {
  .home-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

