@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --crown-header-height: 70px;
  --crown-chip-bg: #1c1c24;
  --crown-chip-active: #3b99fc;
  --crown-page-bg: #0c0c10;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--crown-page-bg);
  color: #fcfcfc;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.2;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  overflow-x: hidden;
  text-align: left;
  width: 100vw;
}
p {
  line-height: 1.5;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}
button:hover {
  cursor: pointer;
}
.crown-hero-note.crown-hero-note--on {
  padding-left: 26px;
}
.crown-site-header {
  background-color: #0c0c10;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 101;
  padding: 5px 0;
  .crown-wrap {
    display: flex;
    flex-direction: column;
    height: 60px;
    padding: 0 14px;
  }
}
.crown-wrap {
  padding: 20px;
  max-width: 95%;
  width: 100%;
  margin: 0 auto;
}
.crown-header-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 14px;
  .crown-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    a {
      font-size: 16px;
      font-style: normal;
      background: #1c1c24;
      color: #e9eaf4;
      letter-spacing: 0.64px;
      line-height: 1.38;
      padding: 0 20px;
      text-transform: uppercase;
      border-radius: 8px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
    }
    .crown-btn-register {
      background: linear-gradient(180deg, #e30077 -63.54%, #9d0052 173.96%);
    }
  }
}
.crown-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.crown-nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: #fcfcfc;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.custom-logo-link {
  min-width: 90px;
  display: flex;
  img {
    object-fit: contain;
    width: 100%;
    height: 26px;
  }
}
.crown-main-nav {
  flex-grow: 1;
}
.crown-nav-list {
  display: flex;
  align-items: center;
  align-self: stretch;
  display: inline-flex;
  flex: 1;
  margin-left: 12px;
  width: auto;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  li {
    align-items: center;
    display: flex;
    margin: 0;
    padding: 0 10px;
    position: relative;
    width: auto;
    a {
      border-bottom: 2px solid transparent;
      border-radius: 0;
      min-height: 10px;
      padding: 9px 0 8px;
      transition:
        color 0.3s ease,
        border-color 0.3s ease;
      width: auto;
      color: #fcfcfc;
    }
  }
}
.crown-nav-list {
  li:nth-of-type(2) {
    background: linear-gradient(93deg, #1c1c24 2.36%, #182047 77.67%);
    border-radius: 12px;
    color: #fcfcfc;
    padding-right: 52px;
    position: relative;
    overflow: hidden;
  }
  li:nth-of-type(2)::before {
    content: "";
    display: block;
    background: url(../img/icno-wheel.webp) no-repeat;
    background-position: right bottom;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    width: 60px;
    object-fit: contain;
    background-size: contain;
  }
}

.crown-category-bar {
  background-color: var(--crown-page-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.crown-category-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.crown-category-scroll::-webkit-scrollbar {
  display: none;
}

.crown-category-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 8px 14px;
  width: max-content;
  min-width: 100%;
}

.crown-category-item {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.crown-category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 10px;
  background-color: var(--crown-chip-bg);
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.crown-category-link:hover {
  background-color: #252530;
  color: #fff;
  text-decoration: none;
}

.crown-category-item.is-selected .crown-category-link {
  background-color: #252530;
  color: #fff;
}

.crown-category-item.crown-category-item--primary.is-active
  .crown-category-link {
  background-color: var(--crown-chip-active);
  color: #fff;
}

.crown-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.crown-category-icon--live {
  width: 16px;
  height: 16px;
}

.crown-category-item--live .crown-category-link {
  background-color: var(--crown-chip-bg);
}

.crown-category-item--live .crown-category-link:hover {
  background-color: #252530;
}

@media (max-width: 1023px) {
  body.crown-nav-open {
    overflow: hidden;
  }

  .crown-site-header .crown-wrap {
    height: auto;
    min-height: var(--crown-header-height);
  }

  .crown-nav-toggle {
    display: inline-flex;
    order: -1;
  }

  .crown-header-brand {
    gap: 8px 12px;
    padding: 0;
  }

  .crown-main-nav {
    order: 10;
    display: none;
    flex: 0 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .crown-site-header.crown-nav-is-open .crown-main-nav {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0c0c10;
    width: 100%;
    padding: 20px;
  }

  .crown-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 0 12px;
    width: 100%;
  }

  .crown-nav-list li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .crown-nav-list li a {
    display: block;
    padding: 14px 4px;
    width: 100%;
  }

  .crown-nav-list li:nth-of-type(2) {
    margin: 8px 0;
    padding-right: 52px;
  }

  .crown-site-header.crown-nav-is-open .crown-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .crown-site-header.crown-nav-is-open .crown-nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .crown-site-header.crown-nav-is-open .crown-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 1024px) {
  .crown-nav-toggle {
    display: none !important;
  }

  .crown-main-nav {
    max-height: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .crown-site-header.crown-nav-is-open .crown-main-nav {
    max-height: none;
  }
}

.crown-wrap {
  max-width: 95%;
  width: 100%;
  margin: 0 auto;
  padding: 0 14px;
}

.crown-site-main {
  padding-top: 64px;
}

.crown-hero {
  padding: 24px 0 20px;
  background: url(../img/home-banner_slots_bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.crown-hero-grid {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 34px auto;
  width: 100%;
}

.crown-hero-label {
  margin: 0 0 8px;
  color: #6eb6ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crown-hero-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 74px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.74px;
  line-height: 0.84;
}

.crown-hero-payments {
  margin: 0;
  color: #9a9aad;
  font-size: 12px;
}

.crown-hero-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crown-hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.crown-hero-field {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: #6b6b7a;
  font-size: 14px;
  text-decoration: none;
}

.crown-hero-field:hover {
  color: #1c1c24;
  text-decoration: none;
}

.crown-hero-field--password::after {
  content: "👁";
  margin-left: auto;
  font-size: 14px;
  opacity: 0.5;
}

.crown-hero-note {
  display: block;
  padding-left: 26px;
  color: #fcfcfc;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
}

.crown-hero-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #6b6b7a;
  border-radius: 3px;
  background: transparent;
}

.crown-hero-note--on::before {
  background: #3b99fc;
  border-color: #3b99fc;
}

.crown-hero-note--on::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 1px;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.crown-hero-signup {
  display: block;
  margin-top: 4px;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e30077 -63.54%, #9d0052 173.96%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.crown-hero-signup:hover {
  color: #fff;
  opacity: 0.95;
  text-decoration: none;
}

.crown-stats {
  padding: 0 0 32px;
}
.error-404.not-found {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  .page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
.crown-404-image {
  margin-bottom: 24px;
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.crown-stats-title {
  margin: 0 0 12px;
  padding: 24px 12px;
  border-radius: 10px;
  background: #1c1c24;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.crown-404-title {
  font-size: clamp(28px, 5vw, 47px);
  font-style: normal;
  font-weight: 800;
  line-height: 0.9;
  color: #e9eaf4;
  margin: 0 0 16px;
  text-align: center;
  text-transform: uppercase;
}
.crown-404-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.crown-btn.crown-btn--404 {
  background: linear-gradient(180deg, #e30077 -63.54%, #9d0052 173.96%);
  border: 2px solid transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 auto;
}
.crown-stats-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.crown-stats-item {
  padding: 16px;
  border-radius: 10px;
  background: #1c1c24;
  text-align: center;
}

.crown-stats-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}

.crown-stats-item span {
  color: #9a9aad;
  font-size: 13px;
}

@media (min-width: 768px) {
  .crown-hero-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .crown-stats-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.crown-hero-text {
  height: 100%;
  max-width: 520px;
}
@media (max-width: 768px) {
  .crown-header-brand {
    & .crown-header-actions {
      a {
        padding: 0 10px;
        font-size: 10px;
      }
    }
  }
}

.crown-site-footer {
  margin-top: 40px;
  padding: 32px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c0c10;
}

.crown-footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.crown-footer-logo {
  margin-bottom: 34px;
}
.crown-footer-logo img {
  max-height: 32px;
  width: auto;
}

.crown-footer-menus {
  display: grid;
  gap: 20px;
}

.crown-footer-menu-title {
  margin: 0 0 10px;
  color: #fcfcfc;
  font-size: 14px;
  font-weight: 600;
}

.crown-footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.crown-footer-menu-list li {
  margin: 0 0 8px;
}

.crown-footer-menu-list a {
  color: #9a9aad;
  font-size: 13px;
  text-decoration: none;
}

.crown-footer-menu-list a:hover {
  color: #fcfcfc;
}

.crown-footer-copy {
  margin: 0;
  color: #6b6b7a;
  font-size: 12px;
  text-align: center;
}

.crown-footer-copy a {
  color: #9a9aad;
  text-decoration: none;
}

.crown-footer-copy a:hover {
  color: #fcfcfc;
}

@media (min-width: 768px) {
  .crown-footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .crown-footer-menus {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 32px;
    flex: 1;
  }
}

.crown-promo {
  padding: 8px 0 32px;
}

.crown-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.crown-promo-card {
  margin: 0;
  min-height: 200px;
}

.crown-promo-card__link {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 200px;
  padding: 12px 10px 14px;
  border-radius: 12px;
  background: radial-gradient(
    137.02% 100% at 50% 0%,
    rgb(19, 48, 166) 0%,
    rgb(18, 32, 92) 39.7%,
    rgb(16, 25, 67) 100%
  );
  color: #fcfcfc;
  text-align: center;
  text-decoration: none;
}
.crown-promo-grid li:last-of-type .crown-promo-card__link {
  background: radial-gradient(
    137.02% 100% at 50% 0%,
    rgb(135, 101, 8) 0%,
    rgb(71, 56, 18) 39.7%,
    rgb(43, 35, 11) 100%
  );
}
.crown-promo-card__link:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}

.crown-promo-card--gold .crown-promo-card__link {
  background: linear-gradient(180deg, #3d3420 0%, #1f1a10 100%);
}

.crown-promo-card__badge {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 4px 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0 0 0 12px;
}

.crown-promo-card__badge--casino {
  background: #3b99fc;
  color: #fff;
}

.crown-promo-card__badge--live {
  background: #e30077;
  color: #fff;
}

.crown-promo-card__badge--gold {
  background: #c9a227;
  color: #1a1a10;
}

.crown-promo-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 90px;
  margin-bottom: 8px;
}

.crown-promo-card__img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.crown-promo-card__img-placeholder {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.crown-promo-card__subtitle {
  margin-bottom: 6px;
  color: #9a9aad;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.crown-promo-card--gold .crown-promo-card__subtitle {
  color: #c9a227;
}

.crown-promo-card__title {
  font-size: clamp(11px, 2.5vw, 14px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

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

@media (min-width: 1024px) {
  .crown-promo-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .crown-promo-card,
  .crown-promo-card__link {
    min-height: 220px;
  }
}
.crown-gallery {
  img {
    opacity: 0.2;
    width: 110px !important;
    object-fit: contain !important;
    height: 36px !important;
  }
}
