/* Custom visual enhancements for Slottica landing */

body {
  background: #f5f5f5;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

.main-layout-container {
  background: transparent;
}

.main-layout {
  background: transparent;
  padding-bottom: 48px;
}

.container {
  max-width: 1120px;
}

/* Header */
.header__container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.header__actions .btn {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn,
.btn-blue,
.btn-green {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-position 0.18s ease;
}

.btn:hover,
.btn-blue:hover,
.btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
}

/* Banner */
.banner-container {
  margin-bottom: 24px;
}

.banner-slider--mob {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
}

.slick__mob-slide__img {
  border-radius: 16px 16px 0 0;
}

.mobile__wrapper {
  background: #ffffff;
}

.slider__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.slider__text {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Game sections */
.games__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.games__title-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.games__title-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #2563eb;
}

.games__title-link:hover {
  color: #1d4ed8;
}

.game-grid__game {
  margin-bottom: 24px;
}

.game-item__wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.game-item__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.game-item__overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.08));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.game-item__wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.22);
}

.game-item__wrapper:hover .game-item__image {
  transform: scale(1.06);
}

.game-item__wrapper:hover .game-item__overlay {
  opacity: 1;
}

.game-item__name {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #111827;
}

.game-item__actions .btn {
  flex: 1 1 0;
  border-radius: 999px;
}

/* Long-form content block */
.main-layout .content-section {
  max-width: 880px;
  margin: 32px auto 8px;
  padding: 24px 20px 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
  color: #111827;
}

.content-section h1,
.content-section h2 {
  color: #111827;
}

.content-section h1 {
  font-size: 2.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
}

.content-section h2 {
  font-size: 1.45rem;
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
}

.content-section p {
  font-size: 0.98rem;
  color: #374151;
}

.content-section img {
  display: block;
  max-width: 100%;
  border-radius: 18px;
  margin: 1.25rem auto;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

/* Footer */
.footer {
  background: #0b1120;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
}

.footer__summary-text {
  color: #e5e7eb;
}

.footer a {
  color: #e5e7eb;
}

.footer a:hover {
  color: #38bdf8;
}

.footer__payments__title a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.chat {
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.55);
}

@media (max-width: 767.98px) {
  .games__title {
    margin-top: 24px;
  }

  .content-section {
    margin-top: 24px;
    padding: 20px 16px 26px;
    border-radius: 18px;
  }
}

