
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}
menu, ol, ul { list-style-type: none; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #06080e;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
.slot-card-img { height: 100%; max-width: none; }

.app-layout {
  display: grid;
  grid-template-columns: 236px 1fr 301px;
  min-height: 100vh;
  width: 100%;
}

.sidebar {
  background: #06080e;
  border-right: 1px solid #131a27;
  width: 236px;
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: #131a27; border-radius: 2px; }
.sidebar-inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 25px;
}
.logo-live-indicator {
  width: 16px; height: 16px;
  background: rgba(108, 24, 25, 0.51);
  border: 0.5px solid rgba(167, 36, 36, 0.42);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.live-dot {
  width: 6px; height: 6px;
  background: #e22b2b;
  border-radius: 50%;
  box-shadow: 0px 0px 5.2px 0px rgba(167, 36, 36, 1);
  display: block;
}
.logo-live-indicator.live {
  background: rgba(24, 108, 30, 0.51);
  border-color: rgba(36, 167, 44, 0.42);
  cursor: pointer;
}
.logo-live-indicator.live .live-dot {
  background: #cffe1a;
  box-shadow: 0px 0px 5.2px 0px rgba(207, 254, 26, 0.8);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.logo-img { height: 21px; width: auto; object-fit: contain; }
.sidebar-section { padding: 10px 0; }
.sidebar-section-title {
  color: #8ba4ba;
  font-size: 9px;
  font-weight: 800;
  padding: 8px 27px;
  letter-spacing: 0.5px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 27px 8px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
}
.sidebar-link:hover { opacity: 0.8; }
.sidebar-link.muted { color: #88969c; font-weight: 600; }
.sidebar-icon { width: 19px; height: 19px; flex-shrink: 0; object-fit: contain; }
.sidebar-icon-placeholder { width: 19px; height: 19px; flex-shrink: 0; }
.soon-badge {
  background: #2c3c47;
  border-radius: 2px;
  font-size: 6px;
  font-weight: 800;
  color: #88969c;
  padding: 2px 5px;
  margin-left: 4px;
  transform: rotate(-3.377deg);
}
.sidebar-bottom { margin-top: auto; padding: 20px; }
.sidebar-social-card {
  background: #0e111a;
  border-radius: 5px;
  padding: 12px;
}
.sidebar-social-card .sidebar-section-title {
  padding: 0 0 10px 0;
  font-size: 12px;
}
.social-icons { display: flex; gap: 8px; }
.social-icon-btn {
  width: 25px; height: 25px;
  background: #131a27;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.social-icon-btn:hover { opacity: 0.7; }
.social-icon-btn img { width: 14px; height: 14px; object-fit: contain; }

.chat-sidebar {
  width: 301px;
  background: rgba(19, 26, 39, 0.1);
  border: 1px solid #131a27;
  border-radius: 7px;
  position: sticky;
  top: 24px;
  height: calc(100vh - 48px);
  margin: 24px 0;
  overflow: hidden;
}
.chat-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chat-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
}
.chat-close {
  width: 20px; height: 20px;
  cursor: pointer;
  opacity: 0.6;
}
.chat-close:hover { opacity: 1; }
.chat-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
  text-align: center;
}
.chat-header-icons { display: flex; gap: 8px; }
.chat-icon {
  width: 16px; height: 13px;
  cursor: pointer;
  opacity: 0.6;
}
.chat-body {
  flex: 1;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.chat-settings-icon {
  width: 20px; height: 18px;
  opacity: 0.5;
}
.chat-footer {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-input-wrapper { display: flex; gap: 6px; }
.chat-input {
  flex: 1;
  background: rgba(44, 60, 71, 0.24);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 14px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}
.chat-input::placeholder { color: #2e4048; }
.chat-send-btn {
  width: 41px; height: 41px;
  background: #9a3fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-login-btn {
  background: #cffe1a;
  border-radius: 6px;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0e111a;
  cursor: pointer;
  text-align: center;
  width: 100%;
}
.chat-login-btn:hover { opacity: 0.9; }

.main-content {
  min-height: 100vh;
  overflow-y: auto;
  padding: 20px;
}

.game-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 16px;
}
.game-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.game-header-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.game-header-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.game-header-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.game-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px 6px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.free-badge {
  background: rgba(208, 255, 0, 0.08);
  color: #cffe1a;
  border: 1px solid rgba(208, 255, 0, 0.2);
}
.free-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #cffe1a;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(208, 255, 0, 0.6);
  animation: tagPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(208, 255, 0, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 2px rgba(208, 255, 0, 0.3); }
}

.game-layout {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #0e111a;
  border: 1px solid #131a27;
  position: relative;
}
.game-layout-inner {
  display: flex;
  flex-direction: row;
  flex: 0 1 auto;
  min-width: 300px;
}

.bet-panel {
  width: 330px;
  min-width: 330px;
  max-width: 330px;
  background: #0e111a;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid #131a27;
}

.bet-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bet-label {
  font-size: 12px;
  font-weight: 700;
  color: #5a7080;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bet-input-group {
  display: flex;
  align-items: center;
  background: rgba(19, 26, 39, 0.6);
  border: 1px solid #1c2740;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.25s;
  height: 48px;
}
.bet-input-group:focus-within {
  border-color: rgba(139, 44, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(139, 44, 255, 0.08);
}
.search-icon {
  padding: 0 0 0 14px;
  color: #5a7080;
  flex-shrink: 0;
  width: 30px;
  height: 16px;
}
.bet-input {
  flex: 1;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 10px;
  font-family: inherit;
  min-width: 0;
  outline: none;
}
.bet-input::placeholder {
  color: #3a4a5a;
}

.diff-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.diff-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(180deg, #1c2740 0%, #151d30 100%);
  border: 1px solid #253350;
  border-radius: 5px;
  color: #5a7080;
  font-size: 11px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  padding: 8px 12px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.diff-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.diff-btn:hover {
  color: #8ba4ba;
  border-color: #354a6a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(21, 29, 48, 0.4);
}
.diff-btn:active {
  transform: translateY(0);
}
.diff-btn.active {
  color: #fff;
  background: linear-gradient(180deg, #8b2cff 0%, #6a1fd4 100%);
  border-color: #9d4aff;
  box-shadow: 0 4px 24px rgba(139, 44, 255, 0.3);
}
.diff-btn.active::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.diff-btn.active:hover {
  box-shadow: 0 4px 28px rgba(139, 44, 255, 0.4);
}

.slot-count-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(19, 26, 39, 0.4);
  border-radius: 5px;
  border: 1px solid #1c2740;
}
.slot-count-info .info-label {
  font-size: 12px;
  font-weight: 700;
  color: #5a7080;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.slot-count-info .info-value {
  font-size: 16px;
  font-weight: 800;
  color: #cffe1a;
}

.cta-shuffle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  margin-top: auto;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #6c2bd9 0%, #8b2cff 50%, #a855f7 100%);
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 54px;
  min-height: 54px;
  position: relative;
  overflow: hidden;
}
.cta-shuffle-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-shuffle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(139, 44, 255, 0.4);
}
.cta-shuffle-btn:active {
  transform: translateY(0);
}
.cta-shuffle-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(10);
}

.game-board-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  max-height: calc(100vh - 200px);
  background: #0e111a;
  border-radius: 0 8px 0 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1c2740 transparent;
}

.game-board-container::-webkit-scrollbar { width: 6px; }
.game-board-container::-webkit-scrollbar-track { background: transparent; }
.game-board-container::-webkit-scrollbar-thumb { background: #1c2740; border-radius: 3px; }
.game-board-container::-webkit-scrollbar-thumb:hover { background: #253350; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-auto-rows: max-content;
  align-content: start;
  gap: 24px;
  padding: 24px;
  width: 100%;
}

.slot-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  background: #131a27;
  border: 1px solid #1c2740;
}

.slot-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #131a27;
}

@supports not (aspect-ratio: 4 / 3) {
  .slot-card-media {
    height: 0;
    padding-top: 75%;
  }
}

.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139, 44, 255, 0.2);
  border-color: rgba(139, 44, 255, 0.4);
  z-index: 2;
}

.slot-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.slot-card:hover .slot-card-img {
  transform: scale(1.05);
}

.slot-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}
.slot-card:hover .slot-card-overlay {
  opacity: 1;
}
.slot-card-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.slot-card-provider {
  font-size: 10px;
  font-weight: 600;
  color: #8ba4ba;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color .15s;
}
.slot-card-provider:hover {
  color: #cffe1a;
  text-decoration: underline;
}
.slot-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(206, 255, 92, 1) 0%, rgba(208, 255, 0, 1) 100%);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #0e111a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-card-play-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(139, 44, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  transform: scale(0.8);
}
.slot-card:hover .slot-card-play-icon {
  opacity: 1;
  transform: scale(1);
}

.slot-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(14, 17, 26, 0) 0%, rgba(14, 17, 26, 0.95) 100%);
}
.slot-card-bottom-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-player {
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 640px;
}
.game-player.active {
  display: flex;
}

.slot-grid.hidden {
  display: none;
}

.game-player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(19, 26, 39, 0.6);
  border-bottom: 1px solid #1c2740;
  min-height: 44px;
  flex-shrink: 0;
}
.game-player-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #8ba4ba;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.game-player-back:hover {
  background: #131a27;
  color: #fff;
}
.game-player-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.game-player-thumb {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
}
.game-player-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.game-player-fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  color: #8ba4ba;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.game-player-fullscreen:hover {
  background: #131a27;
  color: #fff;
}
.game-iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: #000;
  min-height: 0;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  min-height: 60px;
  background: #0e111a;
  border-radius: 0 0 8px 0;
}
.game-footer-left,
.game-footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-brand-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
}
.footer-fairness {
  font-size: 12px;
  color: #cffe1a;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: #121418;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #0e111a;
  border-top: 1px solid #1c2740;
}
.cookie-text { flex: 1; }
.cookie-title {
  font-weight: 700;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 12px;
  color: #8ba4ba;
  line-height: 1.5;
}
.cookie-text a { color: #886cff; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn-reject {
  background: #131a27;
  color: #8ba4ba;
  border: 1px solid #1c2740;
}
.cookie-btn-reject:hover { background: #1c2740; color: #fff; }
.cookie-btn-accept {
  background: linear-gradient(180deg, rgba(206, 255, 92, 1) 0%, rgba(208, 255, 0, 1) 100%);
  color: #0e111a;
}
.cookie-btn-accept:hover { box-shadow: 0 4px 15px rgba(208, 255, 0, 0.25); }

.no-results {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 20px;
  color: #5a7080;
}
.no-results svg {
  opacity: 0.3;
}
.no-results-text {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1400px) {
  .app-layout {
    grid-template-columns: 236px 1fr;
  }
  .chat-sidebar {
    display: none;
  }
}

@media (max-width: 1100px) {
  .game-layout-inner {
    flex-direction: column;
  }
  .bet-panel {
    width: 100%;
    min-width: unset;
    max-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }
  .bet-field {
    flex: 1;
    min-width: 200px;
  }
  .slot-count-info {
    flex: 1;
    min-width: 200px;
  }
  .cta-shuffle-btn {
    margin-top: 0;
  }
  .slot-grid {
    gap: 20px;
    padding: 16px;
  }
  .game-board-container {
    max-height: none;
  }
  .app-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    transition: left 0.3s ease;
    z-index: 150;
  }
  .sidebar.open { left: 0; }
  .mobile-menu-btn { display: flex; }
  .main-content { padding: 70px 20px 12px; }
}

@media (max-width: 900px) {
  .slot-grid {
    gap: 20px;
    padding: 16px;
  }
  .bet-panel { padding: 12px; }
}

@media (max-width: 600px) {
  .main-content { padding: 60px 10px 12px; }
  .game-header { padding: 6px 0 10px; }
  .game-header-logo { height: 28px; }
  .game-header-title { font-size: 18px; }
  .game-badge { font-size: 10px; padding: 5px 10px 5px 8px; }

  .bet-panel {
    padding: 10px;
    gap: 8px;
    flex-direction: column;
  }
  .bet-field { min-width: unset; }
  .bet-input-group { height: 40px; }
  .bet-input { font-size: 13px; padding: 8px; }
  .diff-btn { padding: 6px 10px; font-size: 10px; }
  .slot-count-info { padding: 10px 12px; min-width: unset; }
  .slot-count-info .info-label { font-size: 11px; }
  .slot-count-info .info-value { font-size: 14px; }
  .cta-shuffle-btn { padding: 12px; height: 46px; min-height: 46px; font-size: 13px; }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 12px;
  }
  .slot-card-bottom { padding: 8px 10px; }
  .slot-card-bottom-title { font-size: 11px; }

  .game-player { min-height: 400px; }
  .game-player-bar { padding: 6px 10px; min-height: 38px; }
  .game-player-back { padding: 4px 8px; font-size: 11px; }
  .game-player-title { font-size: 12px; }
  .game-player-thumb { width: 24px; height: 24px; }

  .game-footer { height: 44px; min-height: 44px; padding: 0 12px; }
  .footer-fairness { font-size: 10px; }
  .footer-brand-logo { height: 14px; }

  .cookie-banner-inner {
    flex-direction: column;
    padding: 16px;
    gap: 14px;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  .cookie-btn { flex: 1; padding: 12px 16px; }

  .faq-section { margin-top: 30px; }
  .faq-item-text { font-size: 14px; }
  .faq-item-header { padding: 16px; }
  .faq-item-answer p { font-size: 13px; }
}

.mobile-game-fullscreen .bet-panel {
  display: none !important;
}

.mobile-game-fullscreen .game-layout {
  border: none;
  border-radius: 0;
}

.mobile-game-fullscreen .game-player {
  min-height: calc(100vh - 44px);
  min-height: calc(100dvh - 44px);
}

.mobile-game-fullscreen .game-footer {
  height: 44px;
  min-height: 44px;
}

.faq-section {
  margin-top: 60px;
  margin-bottom: 40px;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  justify-content: center;
}

.faq-icon {
  width: 55px;
  height: auto;
}

.faq-title-text {
  display: flex;
  flex-direction: column;
}

.faq-title-sub {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.faq-title-main {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(92.35deg, rgba(139, 44, 255, 1) 0%, rgba(211, 135, 255, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #0e111a;
  border-radius: 5px;
  overflow: hidden;
}

.faq-item-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-item-header:hover .faq-item-text { color: #b0bec5; }

.faq-item-text {
  color: #88969c;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.2s;
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-item-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-item-answer p {
  color: #5a7080;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-item-answer strong {
  color: #d0ff00;
  font-weight: 700;
}

.faq-item.open .faq-item-text { color: #ffffff; }
.faq-item.open .faq-toggle img { transform: rotate(180deg); }

.faq-toggle {
  width: 45px;
  height: 45px;
  background: rgba(6, 8, 14, 0.73);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.faq-toggle img {
  width: 23px;
  height: 17px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .faq-title-main { font-size: 24px; }
  .faq-title-sub { font-size: 12px; }
  .faq-item-text { font-size: 16px; }
  .faq-toggle { width: 38px; height: 38px; }
  .faq-icon { width: 40px; }
}
