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

.game-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .main-wrapper .game-categories {
    position: relative;
    width: calc(100vw);
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding: 0px 18px;
    gap: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sidebar.collapsed + .main-wrapper .game-categories {
    left: -60px;
  }

  .game-categories::-webkit-scrollbar {
    display: none;
  }

  .game-category-btn {
    flex-shrink: 0;
    min-width: 80px;
    white-space: nowrap;
  }
}

@media (min-width: 769px) {
  .main-wrapper .game-categories {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.game-category-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "__Inter_e8ce0c", "__Inter_Fallback_e8ce0c", Helvetica,
    sans-serif;
  font-weight: 500;
  width: 105px;
  height: 70px;
  padding: 8px;
  cursor: pointer;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
  justify-content: space-around;
}

.game-category-btn.active {
  background: #002137;
  border-radius: 10px;
  color: #ffd700;
}

.game-category-btn img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  flex-shrink: 0;
}

body {
  font-family: "__Inter_e8ce0c", "__Inter_Fallback_e8ce0c", Helvetica,
    sans-serif;
  background: #0d111c;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.app-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  top: 80px;
  left: 0;
  width: 255px;
  background: #090c14;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar.collapsed {
  width: 90px;
}

.sidebar-container {
  padding: 16px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-header {
  padding: 8px;
  margin-bottom: 16px;
}

.sidebar-logo {
  transition: all 0.3s ease;
}

.sidebar-logo img {
  height: 34px;
  transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-logo img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.sidebar-close-btn {
  display: none;
}

.welcome-bonus {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sidebar.collapsed .welcome-bonus {
  display: none;
}

.welcome-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

.bonus-content {
  position: relative;
  z-index: 1;
}

.bonus-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.bonus-amount {
  margin-bottom: 4px;
}

.bonus-percent {
  font-size: 12px;
  font-weight: 450;
  color: #fcfc3c;
}

.bonus-text {
  font-size: 12px;
  font-weight: 450;
  color: #ffffff;
  margin-left: 4px;
}

.bonus-value {
  font-size: 12px;
  font-weight: 450;
  color: #fcfc3c;
  margin-bottom: 8px;
}

.bonus-link {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.bonus-link:hover {
  text-decoration: underline;
}

.sidebar-actions {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-actions {
  display: block;
}

.sidebar.collapsed .sidebar-actions .sidebar-btn {
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  font-size: 0;
  margin-bottom: 4px;
}

.sidebar.collapsed .sidebar-actions .sidebar-btn img {
  margin: 0;
}

.sidebar.collapsed .sidebar-grid {
  grid-template-columns: 1fr;
  gap: 0.1px;
}

.sidebar.collapsed .grid-btn {
  padding: 12px;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  font-size: 0;
}

.sidebar.collapsed .grid-btn img {
  margin: 0;
}

.sidebar-btn {
  width: 100%;
  background: rgb(0 33 55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.sidebar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.grid-btn {
  margin-bottom: 0;
  font-size: 12px;
  padding: 5px 5px;
}

.sidebar-nav {
  overflow: visible;
}

.nav-list {
  list-style: none;
}

.nav-item {
  margin-bottom: 4px;
}

.nav-btn {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar.collapsed .nav-btn {
  padding: 12px;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.sidebar.collapsed .nav-btn span {
  display: none;
}

.sidebar.collapsed .nav-btn img {
  margin: 0;
}

.nav-btn:hover {
  background: rgb(0 33 55);
}

.nav-btn.active {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.sidebar.collapsed .expandable .nav-btn {
  justify-content: center;
}

.sidebar.collapsed .nav-item.expandable {
  position: relative;
}

.expand-icon {
  transition: transform 0.2s;
  color: rgba(255, 255, 255, 0.6);
}

.sidebar.collapsed .expand-icon {
  display: none;
}

.expandable.open .expand-icon {
  transform: rotate(180deg);
}

.sub-nav {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #00192a;
  border-radius: 10px;
}

.sidebar.collapsed .sub-nav {
  position: static;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  background: #18212e !important;
  gap: 4px;
  background: none;
  border: none;
  box-shadow: none;
}

.sidebar.collapsed .sub-nav-link {
  padding: 8px;
  justify-content: center;
  font-size: 0;
  gap: 0px;
  margin-bottom: 0;
}

.sidebar.collapsed .sub-nav-link img {
  margin: 0;
}

.expandable.open .sub-nav {
  max-height: 500px;
}

.sub-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  margin-bottom: 2px;
}

.sub-nav-link:hover {
  background: rgb(0 33 55);
  color: #ffffff;
}

.sidebar-bottom-actions {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sidebar.collapsed .loyalty-program {
  margin-bottom: 0;
}

.sidebar.collapsed .loyalty-btn-large {
  min-width: 20px;
  height: 60px;
  font-size: 0;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin: 0;
  border-radius: 12px;
  background-color: rgb(252 88 25 / 0%);
  border: 1px solid rgb(48 55 68);
  box-shadow: rgb(145 53 18 / 0%) 0px 6px 0px -3px !important;
}

.sidebar.collapsed .loyalty-btn-large img:first-child {
  width: 25px;
  height: 25px;
  display: block;
}

.sidebar.collapsed .loyalty-btn-large img:last-child {
  display: none;
}

.sidebar.collapsed .bottom-grid {
  display: none;
}

.sidebar.collapsed .sidebar-footer {
  padding: 8px 0;
  align-items: center;
}

.sidebar.collapsed .sidebar-footer .support-btn {
  padding: 12px;
  justify-content: center;
}

.sidebar.collapsed .sidebar-footer .footer-btn {
  padding: 12px;
  justify-content: center;
}

.sidebar.collapsed .sidebar-footer .support-btn {
  font-size: 0;
}

.sidebar.collapsed .sidebar-footer .footer-btn {
  font-size: 0;
}

.sidebar.collapsed .sidebar-footer .support-btn img,
.sidebar.collapsed .sidebar-footer .footer-btn img {
  margin: 0;
}

.sidebar.collapsed .chat_img {
  display: none;
}

.sidebar.collapsed .support-btn {
  min-width: 55px;
  height: 60px;
  font-size: 0;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin: 0;
  border-radius: 12px;
  background-color: rgb(252 88 25 / 0%);
  border: 1px solid rgb(48 55 68);
  box-shadow: rgb(145 53 18 / 0%) 0px 6px 0px -3px !important;
}

.loyalty-program {
  margin-bottom: 16px;
}

.loyalty-btn-large {
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  font-family: __Inter_e8ce0c, __Inter_Fallback_e8ce0c, Helvetica, sans-serif;
  min-width: 64px;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: none;
  min-height: 42px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  height: 40px;
  display: flex;
  font-size: 12px;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgb(252, 88, 25);
  box-shadow: rgb(145, 53, 18) 0px 6px 0px -3px !important;
  outline: 0px;
  margin: 0px 0px 11px;
  text-decoration: none;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(252, 88, 25);
  border-image: initial;
  padding: 0px;
  width: 100%;
  border-radius: 10px;
  justify-content: space-around;
}

.loyalty-btn-large:hover {
  background-color: rgb(252, 88, 25);
}

.sidebar.collapsed .loyalty-btn-large:hover {
  background: rgb(0 33 55);
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.bottom-btn {
  background: rgb(0 33 55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bottom-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.support-btn {
  background: #00192a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  position: relative;
}

.support-btn img:last-child {
  position: absolute;
  right: 12px;
}

.support-btn:hover {
  background: #001a2e;
}

.footer-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.footer-btn:hover {
  background: rgb(0 33 55);
  color: #ffffff;
}

.main-wrapper {
  flex: 1;
  margin-left: calc(255px + max(0px, (100vw - 255px - 1400px) / 2));
  max-width: 1400px;
  transition: margin-left 0.3s ease;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.sidebar.collapsed + .main-wrapper {
  margin-left: calc(90px + max(0px, (100vw - 90px - 1400px) / 2));
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.sidebar-toggle {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
  display: none;
}

.sidebar-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .sidebar-toggle {
    display: block;
  }
}

.header {
  background: #0d111c;
  padding: 0;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid #000000;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background: #0d111c;
  width: 100%;
  height: 60px;
  padding: 8px 5px;
}

.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.back-btn {
  background: #00192a;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  margin-left: 24px;
  border-radius: 12px;
  width: 60px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}

.back-btn:hover {
  background: #002137;
}

body.sidebar-collapsed .back-btn img {
  transform: scaleX(-1);
}

.logo {
  display: flex;
  align-items: center;
  margin-left: 12px;
  margin-right: 58px;
  margin-top: 5px;
  margin-left: 23px;
}

.logo img {
  width: auto;
  height: auto;
  padding-left: 14px;
}

.search-container {
  flex: 1;
  max-width: 220px;
  margin: 0 32px;
  position: relative;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgb(0, 33, 55);
  transition: 0.3s;
  border-radius: 15px;
  padding: 0;
  transition: all 0.3s;
}

.search-input-wrapper:hover {
  border: 1px solid #002137;
}

.search-input-wrapper:focus-within {
  border: 1px solid #002137;
}

.search-icon-wrapper {
  display: flex;
  align-items: center;
  padding: 0 12px;
  pointer-events: none;
}

.search-icon {
  width: 24px;
  height: 24px;
  color: transparent;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px 12px 0;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  outline: none;
}

.search-input::placeholder {
  color: #ffffff;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.search-input:focus::placeholder {
  opacity: 0;
}

.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.btn {
  padding: 0px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
  margin: 5px;
  width: 68px;
  height: 40px;
}

.btn-login {
  background: transparent;
  color: #ffffff;
  border: 1px solid #df2dbd;
  position: relative;
}

.btn-login:hover {
  border: 1px solid #a6208d;
  background: none;
}

.btn-signup {
  background: linear-gradient(to right, #df2dbd, #ff004d);
  color: #ffffff;
  border: none;
  position: relative;
}

.btn-signup:hover {
  background: linear-gradient(to right, #df2dbd, #ff004d);
}

.btn-signup .gift-icon {
  position: absolute;
  top: -6px;
  right: -9px;
  width: 28px;
  height: 28px;
  animation: bounce-and-shake 2s infinite ease-in-out;
}

@keyframes bounce-and-shake {
  0% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-5px) scale(1.1, 1.1);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: rotate(-10deg);
  }
  87.5% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.main-content {
  padding: 70px 20px 60px;
  text-align: center;
}

.demo-title {
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

@media (min-width: 600px) {
  .header {
    height: 80px;
  }

  .header-container {
    height: 80px;
    padding: 8px 15px 8px 5px;
  }

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

  .btn {
    width: 68px;
    height: 40px;
    font-size: 12px;
  }
}

@media (min-width: 900px) {
  .header-container {
    padding: 0 24px 0 0;
  }

  .search-container {
    max-width: 220px;
  }
}

@media (min-width: 1200px) {
  .btn {
    width: 132px;
    height: 40px;
    font-size: 12px;
  }

  .btn-login {
    width: 132px;
  }

  .btn-signup {
    width: 132px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 60px;
    left: -280px;
    width: 280px !important;
    transition: left 0.3s ease;
  }

  .sidebar.mobile-open {
    left: 0;
  }

  .sidebar.collapsed {
    width: 280px !important;
  }

  .sidebar.collapsed .welcome-bonus {
    display: block;
  }

  .sidebar.collapsed .sidebar-actions {
    display: block;
  }

  .sidebar.collapsed .sidebar-bottom-actions {
    display: block;
  }

  .sidebar.collapsed .nav-btn {
    flex-direction: row;
    gap: 12px;
    padding: 12px 16px;
  }

  .sidebar.collapsed .nav-btn span {
    display: inline;
  }

  .sidebar.collapsed .expand-icon {
    display: block;
  }

  .sidebar.collapsed .sub-nav {
    display: block;
  }

  .sidebar.collapsed .sidebar-footer .support-btn {
    font-size: 12px;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .sidebar.collapsed .sidebar-footer .footer-btn {
    font-size: 12px;
    justify-content: flex-start;
    padding: 8px 16px;
  }

  .main-wrapper {
    margin-left: 0;
  }

  .sidebar-overlay {
    display: none;
  }
}

@media (max-width: 768px) {
  .sidebar {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .header {
    height: auto;
    min-height: 64px;
    padding: 8px 12px;
  }

  .header-container {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .header-left {
    margin-bottom: 0;
  }

  .back-btn {
    display: none;
  }

  .logo img {
    height: 20px;
  }

  .search-container {
    display: none;
  }

  .search-input {
    font-size: 16px;
    padding: 12px 12px 12px 0;
  }

  .header-right {
    margin-left: auto;
    gap: 8px;
    align-items: center;
    align-self: center;
  }

  .btn {
    width: 68px;
    height: 40px;
    font-size: 12px;
    margin: 0;
  }

  .demo-title {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    padding: 5px;
  }

  .logo {
    display: flex;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
  }

  .header-left {
    justify-content: space-between;
  }

  .header-right {
    margin-left: 0;
    justify-content: center;
    gap: 6px;
    align-items: center;
    align-self: center;
  }

  .btn {
    width: 80px;
    font-size: 11px;
    margin: 0;
  }

  .search-container {
    display: none;
  }

  .demo-title {
    font-size: 36px;
  }

  .main-content {
    padding: 0px 16px 40px;
  }
}

.promotions-btn {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px;
  background-color: #2b42f4;
}

.free-money {
  background-color: #f4622a;
}

.lucky-spin {
  background-color: #bb28ff;
}

.slider {
  width: 100%;
  margin: 100px 0 0px;
  padding: 0 20px;
}

.slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 1400%;
}

.slide {
  width: 7.142857%;
  flex-shrink: 0;
}

.slide-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.slide-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 23px 0 2px 0;
  position: relative;
}

.dot {
  width: 26px;
  height: 8px;
  opacity: 1;
  border-radius: 50px;
  background-color: #002137;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 26px;
  height: 8px;
  opacity: 1;
  border-radius: 50px;
  background-color: #f4622a;
  border: 0;
}

@media (max-width: 768px) {
  .slider {
    margin: 80px 0 20px;
    padding: 0 15px;
  }

  .slider-track {
    width: 1400%;
  }

  .slide {
    width: 7.142857%;
    padding: 10px;
  }

  .slide-images {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .slide-images img {
    height: 180px;
    border-radius: 8px;
  }

  .slide-images img:nth-child(2),
  .slide-images img:nth-child(3) {
    display: none;
  }

  .dot:nth-child(n + 10) {
    display: none;
  }
}

@media (max-width: 480px) {
  .slider {
    margin: 70px 0 15px;
    padding: 0 10px;
  }

  .slide {
    padding: 8px;
  }

  .slide-images img {
    height: 140px;
    border-radius: 6px;
  }
}

@media (max-width: 360px) {
  .slider {
    margin: 65px 0 10px;
    padding: 0 8px;
  }

  .slide {
    padding: 6px;
  }

  .slide-images img {
    height: 120px;
    border-radius: 4px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .slider {
    margin: 70px 0 15px;
    padding: 0 20px;
  }

  .slide {
    padding: 8px;
  }

  .slide-images img {
    height: 160px;
    border-radius: 8px;
  }

  .slider-dots {
    gap: 10px;
    padding: 12px 0 8px 0;
  }

  .dot {
    width: 22px;
    height: 6px;
  }
}

@media (max-width: 480px) and (orientation: landscape) {
  .slider {
    margin: 65px 0 12px;
    padding: 0 15px;
  }

  .slide {
    padding: 6px;
  }

  .slide-images img {
    height: 140px;
    border-radius: 6px;
  }

  .slider-dots {
    gap: 8px;
    padding: 10px 0 6px 0;
  }

  .dot {
    width: 20px;
    height: 5px;
  }
}

@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
  .header {
    height: 70px;
    min-height: 50px;
    padding: 4px 8px;
  }

  .header-container {
    height: 50px;
    padding: 0 12px 0 0;
  }

  .sidebar {
    top: 70px;
    height: calc(100vh - 50px);
  }

  .slider {
    margin: 75px 0 10px;
    padding: 0 15px;
  }

  .slide-images img {
    height: 185px;
  }

  .slider-dots {
    padding: 8px 0 4px 0;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
  display: none;
}

.register-modal {
  background: #001523;
  border-radius: 16px;
  width: 90%;
  max-width: 1000px;
  max-height: 95vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #073453;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.register-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.register-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.promo-slider {
  width: 100%;
  height: 100%;
}

.promo-image {
  width: 100%;
  height: 100%;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

.register-right {
  padding: 30px;
  color: #ffffff;
}

.register-header {
  margin-bottom: 30px;
}

.register-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  background: #00192a;
  border-radius: 15px;
  margin-bottom: 20px;
}

.auth-btn {
  flex: 1;
  padding: 13px 20px;
  background: transparent;
  border: 4px solid #00192a;
  color: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn.active {
  background: #073453;
  color: #ffffff;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ffffff;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #073453;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
}

.form-input::placeholder {
  color: #888;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  background: #001523;
  border: 1px solid #073453;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: #ffd700;
}

.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #073453;
  border-radius: 8px;
  overflow: hidden;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1a1f2e;
  border-right: 1px solid #073453;
  color: #ffffff;
  font-size: 14px;
}

.ph-flag {
  width: 20px;
  height: 15px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23ce1126"/><rect width="3" height="1" fill="%230038a8"/><polygon points="0,0 1.5,1 0,2" fill="%23ffffff"/></svg>')
    no-repeat center/cover;
}

.phone-field {
  border: none;
  flex: 1;
}

.promo-toggle {
  margin: 10px 0;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #ffffff;
}

.promo-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #ffd700;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:disabled {
  background: #00192a;
  color: #888;
  cursor: not-allowed;
}

.submit-btn:not(:disabled):hover {
  background: #ffed4e;
}

.register-footer {
  text-align: center;
  margin: 20px 0;
}

.login-link {
  font-size: 14px;
  color: #ffffff;
}

.login-link a {
  color: #ffd700;
  text-decoration: underline;
}

.social-login {
  margin: 20px 0;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #444;
}

.divider-text {
  font-size: 12px;
  color: #888;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #073453;
  border: 3px solid #00192a;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.terms {
  text-align: center;
  margin-top: 20px;
}

.terms-text {
  font-size: 12px;
}

.terms-notice {
  color: #1e83c9;
}

.terms-link {
  color: #ffd700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .register-modal {
    width: 95%;
    margin: 20px;
  }

  .register-container {
    grid-template-columns: 1fr;
  }

  .register-left {
    display: none;
  }

  .register-right {
    padding: 20px;
  }

  .register-title {
    display: block;
    margin-bottom: 20px;
  }
}

.ggrid-section {
  padding: 20px;
}

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

.ggrid-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ggrid-section-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ggrid-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.ggrid-count {
  flex-grow: 1;
  margin-left: 20px;
}

.ggrid-count-number {
  font-size: 16px;
  color: #fcfc3c;
  border: 1px solid #232331;
  padding: 7px;
  font-weight: 500;
  border-radius: 10px;
}

.ggrid-nav {
  display: flex;
  gap: 8px;
}

.ggrid-nav-btn {
  width: 40px;
  height: 40px;
  background: #073453;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ggrid-nav-btn:hover:not(:disabled) {
  background: #0a4564;
}

.ggrid-nav-btn:disabled {
  background: #002137;
  color: #444;
  cursor: not-allowed;
}

.ggrid-slider {
  overflow: hidden;
}

.ggrid-track {
  display: flex;
  gap: 18px;
  transition: transform 0.3s ease;
  justify-content: space-around;
  flex-wrap: wrap;
}

.ggrid-card {
  flex-shrink: 0;
  width: 153px;
  max-width: 153px;
  min-width: 153px;
  height: 152px;
  max-height: 152px;
  min-height: 152px;
  background: #002137;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

.ggrid-card:hover {
  transition: 0.3s;
}

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

.ggrid-card:hover .ggrid-image {
  filter: blur(0.5rem);
}

.ggrid-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 122px;
}

.ggrid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.ggrid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.ggrid-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.ggrid-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  color: inherit;
  font-family: "__Inter_e8ce0c", "__Inter_Fallback_e8ce0c", Helvetica,
    sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.75;
  text-transform: uppercase;
  min-width: 64px;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: #16171a;
  background-color: #fcfc3c;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  box-shadow: none !important;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 7px 14px;
  font-size: 13px;
  min-height: 22px;
  line-height: 22px;
  border-radius: 10px;
  color: #000;
  width: 80px;
  height: 40px;
  min-height: 40px;
  font-weight: 700;
  line-height: 26px;
  border-radius: 12px;
  padding: 10px 9px;
  font-size: 12px !important;
}

.ggrid-play-btn:hover {
  text-decoration: none;
  background-color: #fcfc3c;
  color: #000;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.ggrid-info {
  /* padding: 4px 12px 12px; */
  text-align: center;
  background: #002137;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 30px;
}

.ggrid-name {
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.ggrid-provider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 400;
  line-height: 1.2;
  margin: 3px 0 0 0;
}

@media (max-width: 768px) {
  .ggrid-section {
    padding: 15px;
  }

  .ggrid-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .ggrid-title {
    flex: 1;
    min-width: 200px;
  }

  .ggrid-section-title {
    font-size: 18px;
  }

  .ggrid-slider {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ggrid-slider::-webkit-scrollbar {
    display: none;
  }

  .ggrid-track {
    padding-bottom: 10px;
  }

  .ggrid-nav {
    display: none;
  }
}

.tournaments-section {
  padding: 20px;
}

.tournaments-header {
  margin-bottom: 24px;
}

.tournaments-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tournaments-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tournaments-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.tournaments-slider {
  position: relative;
}

.tournaments-track {
  display: flex;
  transition: transform 0.3s ease;
  justify-content: space-around;
  flex-wrap: wrap;
}

.tournaments-track::-webkit-scrollbar {
  display: none;
}

.tournament-card {
  flex-shrink: 0;
  width: 330px;
  background: #002137;
  border-radius: 12px;
  border: 12px solid #002137;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  max-width: 100%;
}

.tournament-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.tournament-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.tournament-countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  background: rgba(0, 25, 42, 0.9);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
}

.countdown-label {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
}

.tournament-provider {
  position: absolute;
  bottom: 0;
  right: 20px;
  background: #00192a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px 8px 0 0;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.tournament-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tournament-type {
  color: #cccccc;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 4px 0;
  display: flex;
  justify-content: center;
}

.tournament-name {
  color: #ffffff;
  font-weight: 900;
  margin: 0 0 16px 0;
  line-height: 1.2;
  display: flex;
  justify-content: center;
}

.tournament-prize-label {
  color: #cccccc;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 4px 0;
}

.tournament-prize {
  color: #fcfc3c;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.tournament-join-btn {
  background: #fcfc3c;
  color: #00192a;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: auto;
}

.tournament-join-btn:hover {
  background: #e8e824;
}

@media (max-width: 1200px) {
  .tournament-card {
    width: 380px;
  }
}

@media (max-width: 1024px) {
  .tournament-card {
    width: 350px;
  }

  .tournaments-track {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .tournaments-track {
    flex-direction: column;
    overflow-x: visible;
    gap: 20px;
    padding: 0 20px;
  }

  .tournament-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .tournament-image {
    height: 200px;
  }

  .tournament-name {
    font-size: 20px;
  }

  .tournament-prize {
    font-size: 24px;
  }

  .tournament-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .tournaments-track {
    padding: 0 15px;
  }

  .tournaments-icon {
    width: 28px;
    height: 28px;
  }

  .tournaments-title {
    font-size: 20px;
  }

  .tournament-countdown {
    gap: 12px;
    margin-bottom: 12px;
  }

  .countdown-number {
    font-size: 14px;
    padding: 6px 8px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .tournament-name {
    font-size: 18px;
  }

  .tournament-prize {
    font-size: 22px;
  }

  .tournament-info {
    padding: 16px;
  }
}

.loyalty-program-section {
  padding: 20px;
}

.loyalty-container {
  background: linear-gradient(104deg, rgb(0 33 55) 0%, rgb(22 33 62 / 0%) 100%),
    url(../../imgs/tournaments/Loyalty_Program.avif) center / cover no-repeat;
  border-radius: 16px;
  padding: 40px;
  overflow: hidden;
}

.loyalty-left {
  position: relative;
  z-index: 2;
}

.loyalty-header {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.loyalty-main {
  color: #cccccc;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.loyalty-link {
  margin: 0;
}

.loyalty-btn {
  background: #fcfc3c;
  color: #00192a;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.loyalty-btn:hover {
  background: #e8e824;
  transform: translateY(-2px);
}

.loyalty-arrow {
  font-weight: 700;
  transition: transform 0.3s ease;
}

.loyalty-btn:hover .loyalty-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .loyalty-program-section {
    padding: 35px;
  }

  .loyalty-container {
    padding: 30px 20px;
  }

  .loyalty-header {
    font-size: 24px;
  }

  .loyalty-main {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .loyalty-container {
    padding: 24px 16px;
  }

  .loyalty-header {
    font-size: 22px;
  }

  .loyalty-main {
    font-size: 14px;
  }

  .loyalty-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.footer-section {
  background: #0a1426;
  color: #ffffff;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

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

.footer-brand {
  grid-column: span 1;
}

.footer-logo-img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-certificates {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.certificate-item img {
  height: auto;
}

.anj-certificate img {
  max-width: 50px;
  height: auto;
}

.responsible-gaming img {
  max-width: 80px;
  height: auto;
}

.footer-column-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8298ad;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fcfc3c;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fcfc3c;
}

.social-link img {
  width: 16px;
  height: 16px;
}

.footer-section .support-btn {
  background: #fcfc3c;
  border: 1px solid #fcfc3c;
  border-radius: 8px;
  padding: 12px 20px;
  color: #00192a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-section .support-btn:hover {
  background: #e8e824;
  border-color: #e8e824;
}

.footer-section .support-btn span {
  color: #00192a;
  font-weight: 700;
}

.footer-section .support-btn img {
  width: 16px;
  height: 16px;
}

.footer-mobile-logo {
  display: none;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  padding: 40px 0;
  border-top: 1px solid #1a2332;
  border-bottom: 1px solid #1a2332;
  align-items: center;
}

.partners-section {
  display: flex;
  justify-content: center;
}

.partners-img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.payments-providers {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.payments-img,
.providers-img {
  width: 100%;
  max-width: 330px;
  height: auto;
}

.footer-bottom {
  text-align: center;
}

.copyright-text {
  color: #8298ad;
  font-size: 10px;
  line-height: 20px;
  margin: 0 0 20px 0;
  text-align: center;
}

.email-link {
  color: #fcfc3c;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.copyright-final {
  color: #8298ad;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-social {
    grid-column: span 1;
    grid-row: 1;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-certificates {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 30px 15px 15px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
    order: 1;
  }

  .footer-logo-img {
    width: 160px;
    margin: 0 auto 20px;
    display: block;
  }

  .footer-mobile-logo {
    display: none;
  }

  .footer-certificates {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-middle {
    gap: 25px;
    padding: 30px 0;
  }

  .partners-img,
  .payments-img,
  .providers-img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 25px 12px 12px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-logo-img {
    width: 140px;
  }

  .anj-certificate img {
    max-width: 60px;
  }

  .footer-column-title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .partners-img,
  .payments-img,
  .providers-img {
    max-width: 240px;
  }

  .copyright-text {
    font-size: 9px;
    line-height: 15px;
  }

  .copyright-final {
    font-size: 13px;
  }
}

/* Tournament Pages */
.tournament-banner {
  max-width: 1000px;
  margin: 30px auto 40px;
  text-align: center;
}

.tournament-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .tournament-image {
    border-radius: 8px;
  }
}

/* Game Pages */
.game-container {
  max-width: 1000px;
  margin: 30px auto;
}
.game-window {
  width: 100%;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.game-window::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0.5rem);
  z-index: 1;
}
.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
  border: 3px solid #1a384b;
  border-radius: 18px;
}
.game-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background-color: #fcfc3c;
  outline: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  font-family: "__Inter_e8ce0c", "__Inter_Fallback_e8ce0c", Helvetica,
    sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-transform: none;
  letter-spacing: 0;
  min-width: 64px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    transform 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  color: #000;
  width: 100px;
  height: 50px;
  min-height: 50px;
  box-shadow: none;
}
.game-play-btn:hover {
  text-decoration: none;
  background-color: #fcfc3c;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .game-container {
    margin: 20px 15px;
  }
  .game-window {
    height: 300px;
  }
  .game-play-btn {
    width: 90px;
    height: 45px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* Game Description Styles */
.game-description {
  margin: 30px auto 0;
  padding: 0 20px;
  color: #ffffff;
  line-height: 1.5;
  text-align: left;
}
.game-description h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: left;
}
.game-description h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: #ffffff;
  text-align: left;
}
.game-description p {
  font-size: 14px;
  margin-bottom: 16px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}
.game-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: #00192a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.game-info-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.game-info-table tr:last-child {
  border-bottom: none;
}
.game-info-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: #ffffff;
}
.game-info-table td:first-child {
  background: #00192a;
  font-weight: 500;
  width: 60%;
}
.game-info-table td:last-child {
  background: #002137;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}
.game-description ul {
  padding-left: 20px;
  list-style: none;
  margin: 16px 0;
}
.game-description ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.game-description ul li::before {
  content: "•";
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  left: -15px;
}
.game-description ol {
  padding-left: 20px;
  list-style: decimal;
  margin: 16px 0;
}
.game-description ol li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .game-description {
    padding: 0 16px;
  }
  .game-description h2 {
    font-size: 20px;
  }
  .game-description h3 {
    font-size: 16px;
  }
  .game-info-table td {
    padding: 5px 5px;
    font-size: 13px;
  }
}

/* Breadcrumbs Styles */
.breadcrumbs {
  padding: 12px 20px;
  background: transparent;
  margin-top: 90px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: #ffd700;
  text-decoration: none;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 10px 15px;
    margin-top: 70px;
  }

  .breadcrumb-list {
    font-size: 13px;
  }

  .breadcrumb-separator {
    margin: 0 6px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs {
    padding: 8px 12px;
    margin-top: 75px;
  }

  .breadcrumb-list {
    font-size: 12px;
  }

  .breadcrumb-separator {
    margin: 0 4px;
  }
}

/* Tournament Category Cards */
.tournament-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.tournament-category-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tournament-category-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.tournament-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.tournament-category-card:hover .tournament-image {
  transform: scale(1.05);
}

.tournament-info {
  padding: 20px;
  color: #fff;
}

.tournament-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffd700;
}

.tournament-info p {
  margin: 0 0 15px 0;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.4;
}

.tournament-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.tournament-badge {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.tournament-badge.active {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
}

.tournament-prize {
  color: #ffd700;
  font-weight: bold;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tournament-categories {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 15px 0;
  }

  .tournament-image-container {
    height: 160px;
  }

  .tournament-info {
    padding: 15px;
  }

  .tournament-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .tournament-categories {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tournament-image-container {
    height: 140px;
  }
}

/* Game Category Cards */
.game-category-card {
  background: #002137;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 160px;
  display: flex;
  flex-direction: column;
}

.game-category-card:hover {
  background: #00304a;
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.category-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

.category-link:hover {
  text-decoration: none;
  color: inherit;
}

.category-header {
  margin-bottom: 12px;
}

.category-header h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.category-header p {
  color: #fcfc3c;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-description {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.category-description p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.game-category-card:hover .category-header h4 {
  color: #ffd700;
}

.game-category-card:hover .category-description p {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .ggrid-track {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .game-category-card {
    height: 140px;
  }

  .category-link {
    padding: 16px;
  }

  .category-header h4 {
    font-size: 16px;
  }

  .category-description p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .game-category-card {
    height: 120px;
  }

  .category-link {
    padding: 14px;
  }

  .category-header {
    margin-bottom: 8px;
  }

  .category-header h4 {
    font-size: 15px;
  }

  .category-header p {
    font-size: 11px;
  }

  .category-description p {
    font-size: 12px;
    line-height: 1.3;
  }
}
