/* [project]/styles/fullscreen-search.css [app-client] (css) */
.fullscreen-search-overlay {
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  z-index: 9999;
  cursor: default;
  background: rgba(0, 0, 0, .6);
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  animation: .4s ease-out searchOverlayFadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}

@keyframes searchOverlayFadeIn {
  from {
    opacity: 0;
    -webkit-backdrop-filter: blur();
    backdrop-filter: blur();
  }

  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
}

.fullscreen-search-modal {
  background: none;
  width: 100%;
  max-width: 900px;
  min-height: 100vh;
  animation: .5s ease-out searchModalSlideIn;
  position: relative;
}

@keyframes searchModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-modal-header {
  -webkit-backdrop-filter: blur(20px);
  z-index: 10;
  background: rgba(0, 0, 0, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.search-input-container {
  flex: 1;
}

.search-input-wrapper-fullscreen {
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.search-input-wrapper-fullscreen:focus-within {
  background: rgba(0, 0, 0, .5);
  border-color: rgba(255, 215, 0, .3);
}

.search-icon {
  color: rgba(255, 215, 0, .8);
  padding: 0 25px;
  font-size: 20px;
  transition: all .3s;
}

.search-input-wrapper-fullscreen:focus-within .search-icon {
  color: gold;
  transform: scale(1.1);
}

.search-input-fullscreen {
  color: rgba(255, 255, 255, .95);
  placeholder-color: rgba(255, 255, 255, .4);
  cursor: text;
  letter-spacing: .3px;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 500;
}

.search-input-fullscreen::placeholder {
  color: rgba(255, 255, 255, .4);
  font-weight: 400;
}

.clear-search-btn {
  cursor: pointer;
  color: rgba(255, 215, 0, .7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 215, 0, .08) 100%);
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 18px;
  font-size: 14px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.clear-search-btn:hover {
  color: gold;
  background: linear-gradient(135deg, rgba(255, 215, 0, .15) 0%, rgba(212, 175, 55, .12) 100%);
  border-color: rgba(255, 215, 0, .4);
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(255, 215, 0, .2);
}

.close-search-btn {
  cursor: pointer;
  color: rgba(255, 215, 0, .8);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 215, 0, .06) 100%);
  border: 2px solid rgba(255, 215, 0, .2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 20px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.close-search-btn:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0%, rgba(212, 175, 55, .08) 100%);
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.close-search-btn:hover:before {
  opacity: 1;
}

.close-search-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 215, 0, .12) 0%, rgba(212, 175, 55, .1) 100%);
  border-color: rgba(255, 215, 0, .5);
  transform: scale(1.08)rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 215, 0, .25), inset 0 1px 3px rgba(255, 215, 0, .1);
}

.search-modal-content {
  background: none;
  min-height: calc(100vh - 140px);
  padding: 40px 50px;
}

.search-loading-fullscreen {
  color: rgba(255, 255, 255, .6);
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 60px 20px;
  display: flex;
}

.search-loading-fullscreen i {
  color: rgba(255, 215, 0, .8);
  font-size: 32px;
}

.search-loading-fullscreen span {
  font-size: 16px;
  font-weight: 500;
}

.section-title {
  color: rgba(255, 215, 0, .9);
  text-transform: uppercase;
  letter-spacing: .5px;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.section-title i {
  font-size: 14px;
}

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

.clear-all-btn {
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  padding: 6px 12px;
  font-size: 12px;
  transition: all .3s;
}

.clear-all-btn:hover {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .1);
}

.search-results-section {
  margin-bottom: 40px;
}

.search-all-item {
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0%, rgba(212, 175, 55, .05) 100%);
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: 15px;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 25px;
  padding: 20px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.search-all-item:hover, .search-all-item.selected {
  background: linear-gradient(135deg, rgba(255, 215, 0, .15) 0%, rgba(212, 175, 55, .1) 100%);
  border-color: rgba(255, 215, 0, .4);
  transform: translateX(10px);
}

.search-icon-wrapper {
  color: rgba(255, 215, 0, .9);
  background: linear-gradient(135deg, rgba(255, 215, 0, .2) 0%, rgba(212, 175, 55, .1) 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
}

.search-text {
  text-align: left;
  flex: 1;
}

.search-text span {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.search-text small {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.search-all-item i:last-child {
  color: rgba(255, 215, 0, .6);
  font-size: 14px;
}

.games-grid-results {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  display: grid;
}

.game-result-card {
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(20, 21, 28, .9) 0%, rgba(26, 27, 35, .8) 50%, rgba(20, 21, 28, .9) 100%);
  border: 1px solid rgba(255, 215, 0, .12);
  border-radius: 20px;
  align-items: center;
  gap: 20px;
  padding: 25px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.game-result-card:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .15) 0%, rgba(212, 175, 55, .08) 50%, rgba(255, 215, 0, .15) 100%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.game-result-card:after {
  content: "";
  opacity: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 215, 0, .3) 0%, rgba(212, 175, 55, .2) 50%, rgba(255, 215, 0, .3) 100%);
  border-radius: 22px;
  transition: opacity .4s;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
}

.game-result-card:hover:before, .game-result-card.selected:before, .game-result-card:hover:after, .game-result-card.selected:after {
  opacity: 1;
}

.game-result-card:hover, .game-result-card.selected {
  transform: translateY(-8px)scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 30px rgba(255, 215, 0, .1);
}

.game-image-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 215, 0, .05) 100%);
  border: 2px solid rgba(255, 215, 0, .15);
  border-radius: 16px;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, .2);
}

.game-result-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.game-placeholder-large {
  color: rgba(255, 255, 255, .3);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  display: flex;
}

.game-result-info {
  z-index: 2;
  flex: 1;
  position: relative;
}

.game-result-name {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.game-result-provider {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.game-badge {
  text-transform: uppercase;
  border-radius: 10px;
  margin-right: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
}

.game-badge.new {
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 92, 246, .9) 0%, rgba(99, 102, 241, .9) 100%);
}

.game-badge.featured {
  color: #070809;
  background: linear-gradient(135deg, rgba(255, 215, 0, .9) 0%, rgba(255, 165, 0, .9) 100%);
}

.recent-searches-section {
  margin-bottom: 40px;
}

.recent-searches-list {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.recent-search-item {
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  transition: all .3s;
  display: flex;
}

.recent-search-item:hover {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 215, 0, .1);
  border-color: rgba(255, 215, 0, .3);
}

.recent-search-item i {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.popular-games-section {
  margin-bottom: 40px;
}

.games-grid-popular {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  display: grid;
}

.popular-game-card {
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: linear-gradient(135deg, rgba(26, 27, 35, .6) 0%, rgba(33, 35, 45, .4) 100%);
  border: 1px solid rgba(255, 215, 0, .1);
  border-radius: 16px;
  align-items: center;
  gap: 15px;
  padding: 20px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.popular-game-card:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0%, rgba(212, 175, 55, .05) 100%);
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.popular-game-card:hover:before {
  opacity: 1;
}

.popular-game-card:hover {
  background: linear-gradient(135deg, rgba(33, 35, 45, .8) 0%, rgba(40, 42, 52, .6) 100%);
  border-color: rgba(255, 215, 0, .3);
  transform: translateY(-5px)scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
}

.popular-game-card .game-image-container {
  border: 2px solid rgba(255, 215, 0, .1);
  border-radius: 12px;
  width: 70px;
  height: 70px;
}

.popular-game-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.game-placeholder-small {
  color: rgba(255, 255, 255, .3);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  display: flex;
}

.popular-game-info {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  display: flex;
}

.popular-game-name {
  color: rgba(255, 255, 255, .9);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
}

.popular-game-provider {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  font-weight: 500;
}

.empty-search-state, .no-results-fullscreen {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 80px 20px;
  display: flex;
}

.empty-search-state i, .no-results-fullscreen i {
  color: rgba(255, 255, 255, .3);
  margin-bottom: 10px;
  font-size: 48px;
}

.empty-search-state h3, .no-results-fullscreen h3 {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
}

.empty-search-state p, .no-results-fullscreen p {
  color: rgba(255, 255, 255, .5);
  max-width: 400px;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .fullscreen-search-modal {
    padding: 0;
  }

  .search-modal-header, .search-modal-content {
    padding: 20px;
  }

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

  .games-grid-results {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .games-grid-popular {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .game-result-card {
    padding: 15px;
  }

  .game-image-container {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .search-modal-header {
    gap: 15px;
    padding: 15px;
  }

  .search-modal-content {
    padding: 15px;
  }

  .search-input-wrapper-fullscreen {
    border-radius: 20px;
  }

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

  .close-search-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* [project]/styles/vip-status.css [app-client] (css) */
.vip-status {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 24px;
}

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

.vip-title {
  align-items: center;
  gap: 16px;
  display: flex;
}

.vip-title h3 {
  color: rgba(255, 255, 255, .95);
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.vip-level-badge {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.vip-level-badge i {
  font-size: 14px;
}

.view-vip-btn {
  color: rgba(255, 215, 0, .8);
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.view-vip-btn:hover {
  color: gold;
}

.view-vip-btn i {
  font-size: 12px;
  transition: transform .3s;
}

.view-vip-btn:hover i {
  transform: translateX(2px);
}

.vip-progress {
  margin-bottom: 20px;
}

.progress-info {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.current-points {
  color: rgba(255, 255, 255, .95);
  font-size: 16px;
  font-weight: 700;
}

.next-level {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 500;
}

.progress-bar {
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  height: 8px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, rgba(255, 215, 0, .8), gold);
  border-radius: 4px;
  height: 100%;
  transition: width .3s;
  position: relative;
}

.progress-fill:after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .3), rgba(0, 0, 0, 0));
  width: 50%;
  height: 100%;
  animation: 2s infinite progressShine;
  position: absolute;
  top: 0;
  left: -50%;
}

@keyframes progressShine {
  0% {
    left: -50%;
  }

  100% {
    left: 150%;
  }
}

.next-level-marker {
  width: 2px;
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
}

.marker {
  border-radius: 1px;
  width: 100%;
  height: 100%;
}

.progress-labels {
  color: rgba(255, 255, 255, .5);
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  display: flex;
}

.vip-benefits {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  display: grid;
}

.benefit-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  display: flex;
}

.benefit-icon {
  color: rgba(255, 215, 0, .8);
  background: rgba(255, 215, 0, .1);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
}

.benefit-info {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.benefit-label {
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 11px;
  font-weight: 500;
}

.benefit-value {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
}

.vip-status-mini {
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.vip-status-mini:hover {
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 215, 0, .2);
}

.vip-status-mini .vip-level-badge {
  flex-shrink: 0;
  padding: 4px 8px;
  font-size: 10px;
}

.vip-mini-progress {
  flex: 1;
  min-width: 0;
}

.progress-text {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 12px;
  display: flex;
}

.progress-text .next-level {
  font-size: 10px;
}

.progress-bar-mini {
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  height: 4px;
  overflow: hidden;
}

.progress-bar-mini .progress-fill {
  border-radius: 2px;
  height: 100%;
}

.vip-status.skeleton, .vip-status-mini.skeleton {
  pointer-events: none;
}

.vip-skeleton {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.vip-header-skeleton {
  border-radius: 8px;
  height: 40px;
}

.vip-progress-skeleton {
  border-radius: 8px;
  height: 60px;
}

.vip-mini-skeleton {
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

.vip-level-skeleton {
  border-radius: 12px;
  width: 100px;
  height: 24px;
}

.skeleton-box {
  background: rgba(255, 255, 255, .03);
  position: relative;
  overflow: hidden;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .08), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  animation: 1.5s infinite shimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .vip-status {
    padding: 20px;
  }

  .vip-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .vip-title {
    gap: 12px;
  }

  .vip-title h3 {
    font-size: 16px;
  }

  .vip-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item {
    padding: 10px;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .vip-status-mini {
    gap: 10px;
    padding: 10px;
  }

  .vip-mini-progress {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .vip-status {
    padding: 16px;
  }

  .progress-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .current-points {
    font-size: 14px;
  }

  .vip-status-mini {
    gap: 8px;
    padding: 8px;
  }

  .vip-status-mini .vip-level-badge {
    padding: 3px 6px;
    font-size: 9px;
  }
}

/* [project]/styles/categories-section.css [app-client] (css) */
.categories-section {
  margin: 40px 0;
}

.categories-header {
  text-align: center;
  margin-bottom: 30px;
}

.categories-header h3 {
  color: rgba(255, 255, 255, .95);
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.categories-header p {
  color: rgba(255, 255, 255, .6);
  margin: 0;
  font-size: 16px;
}

.categories-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 0 20px;
  display: grid;
}

.category-card {
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(26, 27, 35, .9) 0%, rgba(33, 35, 45, .8) 100%);
  border: 1px solid rgba(255, 215, 0, .12);
  border-radius: 20px;
  align-items: center;
  gap: 20px;
  padding: 25px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.category-card:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .08) 0%, rgba(212, 175, 55, .04) 50%, rgba(255, 215, 0, .08) 100%);
  width: 100%;
  height: 100%;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.category-card:after {
  content: "";
  opacity: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 215, 0, .2) 0%, rgba(212, 175, 55, .15) 50%, rgba(255, 215, 0, .2) 100%);
  border-radius: 22px;
  transition: opacity .4s;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
}

.category-card:hover {
  transform: translateY(-6px)scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3), 0 0 25px rgba(255, 215, 0, .1);
}

.category-card:hover:before, .category-card:hover:after {
  opacity: 1;
}

.category-card.active {
  background: linear-gradient(135deg, rgba(255, 215, 0, .15) 0%, rgba(212, 175, 55, .1) 100%);
  border-color: rgba(255, 215, 0, .5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2), 0 0 20px rgba(255, 215, 0, .15);
}

.category-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, .15) 0%, rgba(212, 175, 55, .1) 100%);
  border: 2px solid rgba(255, 215, 0, .25);
  border-radius: 18px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, .2), 0 4px 15px rgba(0, 0, 0, .1);
}

.category-icon:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .2) 0%, rgba(212, 175, 55, .15) 100%);
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, .25) 0%, rgba(212, 175, 55, .2) 100%);
  border-color: rgba(255, 215, 0, .4);
  transform: scale(1.1)rotate(5deg);
  box-shadow: inset 0 2px 15px rgba(0, 0, 0, .3), 0 6px 20px rgba(255, 215, 0, .2);
}

.category-card:hover .category-icon:before {
  opacity: 1;
}

.category-icon i {
  color: gold;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
  font-size: 26px;
  transition: all .3s;
  position: relative;
}

.category-card:hover .category-icon i {
  color: #ffc107;
  text-shadow: 0 0 15px rgba(255, 215, 0, .5);
  transform: scale(1.1);
}

.category-info {
  z-index: 2;
  flex: 1;
  min-width: 0;
  position: relative;
}

.category-name {
  color: rgba(255, 255, 255, .95);
  letter-spacing: .3px;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: all .3s;
}

.category-card:hover .category-name {
  color: rgba(255, 215, 0, .95);
  transform: translateX(3px);
}

.category-count {
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  display: inline-flex;
}

.category-card:hover .category-count {
  color: rgba(255, 215, 0, .8);
  background: rgba(255, 215, 0, .1);
  border-color: rgba(255, 215, 0, .2);
  transform: translateX(3px);
}

.category-count:before {
  content: "";
}

.category-skeleton {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.category-icon-skeleton {
  border-radius: 12px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.category-info-skeleton {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  display: flex;
}

.category-name-skeleton {
  border-radius: 4px;
  height: 18px;
}

.category-count-skeleton {
  border-radius: 4px;
  width: 70%;
  height: 14px;
}

.skeleton-box {
  background: rgba(255, 255, 255, .03);
  position: relative;
  overflow: hidden;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .08), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  animation: 1.5s infinite shimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .categories-section {
    margin: 30px 0;
  }

  .categories-header h3 {
    font-size: 24px;
  }

  .categories-header p {
    font-size: 14px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 0 16px;
  }

  .category-card {
    gap: 12px;
    padding: 16px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
  }

  .category-icon i {
    font-size: 16px;
  }

  .category-name {
    font-size: 14px;
  }

  .category-count {
    font-size: 12px;
  }
}

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

  .category-card {
    text-align: center;
    flex-direction: column;
    padding: 16px 12px;
  }

  .category-icon {
    margin-bottom: 4px;
  }
}

/* [project]/styles/category-games-section.css [app-client] (css) */
.category-games-section {
  margin: 40px 0;
  padding: 0 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-games-header {
  text-align: center;
  margin-bottom: 30px;
}

.category-games-header h3 {
  color: rgba(255, 255, 255, .95);
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.category-games-header p {
  color: rgba(255, 255, 255, .6);
  margin: 0;
  font-size: 16px;
}

.games-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  display: grid;
}

.game-card {
  cursor: pointer;
  background: linear-gradient(135deg, rgba(20, 21, 23, .98) 0%, rgba(15, 16, 18, .98) 100%);
  border: 1px solid rgba(255, 215, 0, .08);
  border-radius: 16px;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  animation: .6s ease-out forwards fadeInUp;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1), 0 2px 8px rgba(0, 0, 0, .15);
}

.game-card:before {
  content: "";
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 215, 0, .03) 0%, rgba(212, 175, 55, .02) 50%, rgba(255, 215, 0, .03) 100%);
  width: 100%;
  height: 100%;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.game-card:hover {
  background: linear-gradient(135deg, rgba(33, 35, 45, .98) 0%, rgba(40, 42, 52, .95) 100%);
  border-color: rgba(255, 215, 0, .15);
  transform: translateY(-8px)scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25), 0 0 25px rgba(255, 215, 0, .08);
}

.game-card:hover:before {
  opacity: 1;
}

.game-thumb {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(30, 31, 33, .95) 0%, rgba(20, 21, 23, .95) 100%);
  position: relative;
  overflow: hidden;
}

.game-image {
  object-fit: cover;
  filter: brightness(.9) contrast(1.1);
  transition: all .8s cubic-bezier(.23, 1, .32, 1);
}

.game-card:hover .game-image {
  filter: brightness() contrast(1.2);
  transform: scale(1.12);
}

.game-placeholder {
  color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .05);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.game-placeholder i {
  font-size: 48px;
}

.game-overlay {
  opacity: 0;
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(135deg, rgba(0, 0, 0, .4) 0%, rgba(26, 27, 35, .6) 100%);
  justify-content: center;
  align-items: center;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.game-actions {
  gap: 12px;
  transition: transform .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  transform: scale(.9);
}

.game-card:hover .game-actions {
  transform: scale(1);
}

.action-btn {
  color: gold;
  cursor: pointer;
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(135deg, rgba(255, 215, 0, .2) 0%, rgba(212, 175, 55, .15) 100%);
  border: 2px solid rgba(255, 215, 0, .3);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .3), inset 0 1px 3px rgba(255, 215, 0, .1);
}

.action-btn:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .2) 0%, rgba(212, 175, 55, .1) 100%);
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.action-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 215, 0, .3) 0%, rgba(212, 175, 55, .25) 100%);
  border-color: rgba(255, 215, 0, .6);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 15px rgba(255, 215, 0, .2);
}

.action-btn:hover:before {
  opacity: 1;
}

.play-btn:hover {
  color: #22c55e;
  background: linear-gradient(135deg, rgba(34, 197, 94, .3) 0%, rgba(22, 163, 74, .25) 100%);
  border-color: rgba(34, 197, 94, .6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 15px rgba(34, 197, 94, .2);
}

.favorite-btn.favorited {
  color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, .3) 0%, rgba(220, 38, 38, .25) 100%);
  border-color: rgba(239, 68, 68, .6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 15px rgba(239, 68, 68, .2);
}

.game-info {
  background: linear-gradient(rgba(20, 21, 23, 0) 0%, rgba(15, 16, 18, .5) 100%);
  padding: 18px;
  position: relative;
}

.game-name {
  color: rgba(255, 255, 255, .95);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s;
  display: -webkit-box;
  overflow: hidden;
}

.game-card:hover .game-name {
  color: gold;
}

.game-meta {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.game-provider {
  color: rgba(255, 215, 0, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 500;
  transition: color .3s;
}

.game-card:hover .game-provider {
  color: rgba(255, 215, 0, .9);
}

.game-likes {
  color: gold;
  background: rgba(255, 215, 0, .1);
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: 12px;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.game-likes i {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
  font-size: 9px;
}

.game-card-skeleton {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  overflow: hidden;
}

.game-image-skeleton {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.game-info-skeleton {
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  display: flex;
}

.game-name-skeleton {
  border-radius: 4px;
  height: 20px;
}

.game-provider-skeleton {
  border-radius: 4px;
  width: 60%;
  height: 14px;
}

.skeleton-box {
  background: rgba(255, 255, 255, .03);
  position: relative;
  overflow: hidden;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .08), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  animation: 1.5s infinite shimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

.empty-category {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  padding: 60px 20px;
}

.empty-icon {
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
}

.empty-icon i {
  color: rgba(255, 255, 255, .3);
  font-size: 32px;
}

.empty-category h4 {
  color: rgba(255, 255, 255, .8);
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.empty-category p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .category-games-section {
    margin: 30px 0;
    padding: 0 16px;
  }

  .category-games-header h3 {
    font-size: 24px;
  }

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

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .game-info {
    padding: 12px;
  }

  .game-name {
    font-size: 14px;
  }

  .game-provider {
    font-size: 12px;
  }

  .action-btn {
    width: 36px;
    height: 36px;
  }

  .game-actions {
    gap: 8px;
  }
}

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

  .empty-category {
    padding: 40px 20px;
  }

  .empty-icon {
    width: 60px;
    height: 60px;
  }

  .empty-icon i {
    font-size: 24px;
  }
}

/* [project]/styles/promotions-section.css [app-client] (css) */
.promotions-section {
  margin: 50px 0;
  padding: 0 20px;
}

.promotions-header {
  text-align: center;
  margin-bottom: 40px;
}

.promotions-header h3 {
  color: rgba(255, 255, 255, .95);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, gold, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
}

.promotions-header p {
  color: rgba(255, 255, 255, .6);
  margin: 0;
  font-size: 16px;
}

.promotions-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.promotion-card {
  cursor: pointer;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.promotion-card:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 215, 0, .3);
  transform: translateY(-8px);
}

.promotion-image {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.promo-image {
  object-fit: cover;
  transition: transform .4s;
}

.promotion-card:hover .promo-image {
  transform: scale(1.05);
}

.promotion-placeholder {
  color: rgba(255, 215, 0, .6);
  background: linear-gradient(135deg, rgba(255, 215, 0, .1), rgba(212, 175, 55, .1));
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.promotion-placeholder i {
  font-size: 64px;
}

.promotion-badge {
  color: #1a1b23;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(255, 215, 0, .9);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 12px;
  right: 12px;
}

.promotion-type {
  display: block;
}

.promotion-content {
  padding: 24px;
}

.promotion-title {
  color: rgba(255, 255, 255, .95);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.promotion-description {
  color: rgba(255, 255, 255, .7);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.promotion-value {
  text-align: center;
  background: rgba(255, 215, 0, .05);
  border: 1px solid rgba(255, 215, 0, .15);
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 16px;
}

.value-amount {
  color: gold;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.wagering-req {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 500;
}

.promotion-dates {
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
}

.promotion-actions {
  gap: 12px;
  padding: 0 24px 24px;
  display: flex;
}

.claim-btn {
  color: #1a1b23;
  cursor: pointer;
  background: linear-gradient(135deg, gold, #d4af37);
  border: none;
  border-radius: 12px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.claim-btn:hover {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  transform: translateY(-1px);
}

.details-btn {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.details-btn:hover {
  color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
}

.promotions-footer {
  text-align: center;
  margin-top: 40px;
}

.view-all-promotions {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.view-all-promotions:hover {
  color: gold;
  background: rgba(255, 215, 0, .1);
  border-color: rgba(255, 215, 0, .3);
}

.view-all-promotions i {
  transition: transform .3s;
}

.view-all-promotions:hover i {
  transform: translateX(4px);
}

.promotion-card-skeleton {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
}

.promotion-image-skeleton {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.promotion-content-skeleton {
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  display: flex;
}

.promotion-title-skeleton {
  border-radius: 6px;
  height: 24px;
}

.promotion-desc-skeleton {
  border-radius: 6px;
  height: 60px;
}

.promotion-value-skeleton {
  border-radius: 12px;
  height: 40px;
}

.skeleton-box {
  background: rgba(255, 255, 255, .03);
  position: relative;
  overflow: hidden;
}

.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .08), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  animation: 1.5s infinite shimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    margin: 40px 0;
    padding: 0 16px;
  }

  .promotions-header h3 {
    font-size: 28px;
  }

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

  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promotion-content {
    padding: 20px;
  }

  .promotion-title {
    font-size: 18px;
  }

  .value-amount {
    font-size: 20px;
  }

  .promotion-actions {
    flex-direction: column;
    padding: 0 20px 20px;
  }

  .claim-btn, .details-btn {
    flex: none;
  }
}

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

  .promotion-content {
    padding: 16px;
  }

  .promotion-actions {
    padding: 0 16px 16px;
  }

  .promotion-badge {
    padding: 4px 8px;
    font-size: 11px;
    top: 8px;
    right: 8px;
  }
}

/*# sourceMappingURL=styles_bb0bfd5a._.css.map*/