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

body {
  font-family: "Outfit", sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background-color: #e91e63;
  color: #fff;
  border-radius: 6px;
  transition: background 0.3s;
}
button:hover {
  background-color: #d81b60;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #121212;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
}
.header__left {
  display: flex;
  align-items: center;
}
.header .menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  margin-right: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.header .menu-toggle:hover {
  transform: scale(1.1);
}
.header .logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: baseline;
}
.header .logo__main {
  margin-right: 0.3rem;
}
.header .logo__sub {
  font-size: 0.8rem;
  opacity: 0.7;
}
.header__right {
  display: flex;
  align-items: center;
}
.header__right .user-menu {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  color: #bbb;
}
.header__right .user-menu__icon {
  font-size: 1.8rem;
}
.header__right .user-menu__initials {
  margin-left: -1.2rem;
  font-weight: 600;
}
.header__right .btn {
  margin-right: 1rem;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.2s;
}
.header__right .btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.header__right .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.header__right .btn--primary {
  background: #2979ff;
  color: #fff;
}
.header__right .btn--primary:hover {
  background: #1c54b2;
  transform: translateY(-2px);
}
.header__right .header__avatar {
  font-size: 2rem;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s;
}
.header__right .header__avatar:hover {
  color: #fff;
}

.main-content {
  padding-top: 70px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #121212;
  padding-top: 60px;
  transition: left 0.3s ease;
  overflow-y: auto;
  z-index: 900;
}
.sidebar--open {
  left: 0;
}
.sidebar__list {
  list-style: none;
}
.sidebar__item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #ddd;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar__item i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.sidebar__item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar__item--active {
  background: rgba(255, 255, 255, 0.15);
}
.sidebar__category {
  padding: 1rem 1rem 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #666;
}

.main-content {
  padding-top: 60px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal--open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal__content {
  position: relative;
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 10;
  color: #fff;
}
.modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.modal__close:hover {
  color: #fff;
}
.modal__title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form .modal__label {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  color: #ddd;
}
.modal__form .modal__label input {
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid #444;
  border-radius: 4px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.modal__form .modal__label input:focus {
  border-color: #2979ff;
  outline: none;
}
.modal__form .modal__submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.8rem;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.container--wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.game-section {
  margin-bottom: 4rem;
  transition: opacity 0.3s;
}
.game-section--hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}
.game-section.container--wide {
  padding: 2rem 0;
}
.game-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}
.game-section__header h2 {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
}
.game-section__link {
  font-size: 0.9rem;
  color: #e91e63;
  background: transparent;
  border: 2px solid #e91e63;
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  text-decoration: none;
  font-weight: 600;
}
.game-section__link:hover {
  background: #e91e63;
  color: #fff;
  transform: translateY(-2px);
}
.game-section__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.game-card {
  background-color: #1b1b1b;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}
.game-card__thumb {
  position: relative;
  width: 100%;
  padding-bottom: 58%;
  background: linear-gradient(135deg, #111, #222);
}
.game-card__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 2px solid #333;
}
.game-card__info {
  padding: 0.75rem 0.6rem;
  color: #ddd;
}
.game-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.2;
  color: #fff;
}
.game-card__limits {
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  align-items: center;
}
.game-card__limits i {
  margin-left: 0.4rem;
  font-size: 0.85rem;
  color: #666;
  transition: color 0.2s;
  cursor: pointer;
}
.game-card__limits i:hover {
  color: #e91e63;
}

@media (max-width: 1024px) {
  .game-section__list {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .game-section__list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .game-card__info {
    padding: 0.6rem 0.4rem;
  }
  .game-card__title {
    font-size: 0.9rem;
  }
  .game-card__limits {
    font-size: 0.8rem;
  }
}
.footer {
  background: #0f0f0f;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer a:hover {
  opacity: 0.7;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0;
}
.footer__col {
  flex: 1;
  min-width: 180px;
}
.footer__col--logo {
  flex: 2;
}
.footer__col--products .footer__products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__logo .logo__main {
  margin-right: 0.2rem;
}
.footer__logo .logo__sub {
  opacity: 0.6;
  font-size: 0.8rem;
  vertical-align: text-bottom;
}
.footer__apps {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__apps .app-badge {
  display: inline-block;
}
.footer__apps .app-badge img {
  display: block;
  height: 40px;
}
.footer__title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer__links, .footer__products {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li, .footer__products li {
  margin-bottom: 0.5rem;
}
.footer__links a, .footer__products a {
  font-size: 0.9rem;
}
.footer__divider {
  height: 1px;
  background: #333;
  margin: 0;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}
.footer__info {
  flex: 1 1 60%;
  min-width: 300px;
}
.footer__badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer__badges .badge {
  display: inline-block;
  border: 1px solid #555;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
}
.footer__text {
  margin-bottom: 1rem;
}
.footer__text a {
  color: #2979ff;
}
.footer__copyright {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #666;
}
.footer__legal-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.footer__legal-links a {
  font-size: 0.8rem;
  color: #666;
}
.footer__partner {
  flex: 0 0 auto;
}
.footer__partner img {
  height: 32px;
  display: block;
}

.game-detail {
  background: #0f0f0f;
  color: #fff;
  padding: 2rem 0;
  border-radius: 8px;
}
.game-detail__header {
  margin-top: 50px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.game-detail__header .game-detail__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.game-detail__header .game-detail__provider {
  font-size: 1rem;
  color: #bbb;
}
.game-detail__media {
  position: relative;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.game-detail__media .game-detail__banner {
  width: 100%;
  height: 500px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.game-detail__media .game-detail__play-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
}
.game-detail__media .game-detail__fullscreen {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s;
}
.game-detail__media .game-detail__fullscreen:hover {
  color: #fff;
}
.game-detail__bets {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.game-detail__bets .bet {
  text-align: center;
}
.game-detail__bets .bet__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}
.game-detail__bets .bet__label {
  font-size: 0.85rem;
  color: #aaa;
}
.game-detail__bets .bet-separator {
  width: 1px;
  height: 2rem;
  background: #333;
  margin: 0 2rem;
}
.game-detail__about {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.game-detail__about-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.game-detail__about-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.container--wide {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.terms-of-use {
  margin-top: 70px;
}
.terms-of-use__title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.terms-of-use__intro {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: left;
}
.terms-of-use__heading {
  font-size: 1.25rem;
  color: #fff;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.terms-of-use__list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: #ddd;
}
.terms-of-use__list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.terms-of-use p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.terms-of-use p a {
  color: #2979ff;
  text-decoration: none;
}
.terms-of-use p a:hover {
  text-decoration: underline;
}

.privacy-policy {
  margin-top: 70px;
}
.privacy-policy__title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.privacy-policy__intro {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: left;
}
.privacy-policy__heading {
  font-size: 1.25rem;
  color: #fff;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.privacy-policy__list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: #ddd;
}
.privacy-policy__list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.privacy-policy p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.privacy-policy p a {
  color: #2979ff;
  text-decoration: none;
}
.privacy-policy p a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */