
*,
*::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;
}

.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; }

.main-content {
  padding: 25px 40px 60px;
  overflow-x: hidden;
  min-width: 0;
}

.hero-cards-section {
  margin-bottom: 30px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-card {
  border-radius: 5px;
  border: 1px solid #131a27;
  height: 290px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-card-blue {
  background: linear-gradient(117.95deg, rgba(12, 13, 25, 1) 0%, rgba(20, 56, 86, 1) 100%);
}

.hero-card-orange {
  background: linear-gradient(117.95deg, rgba(26, 17, 14, 1) 0%, rgba(86, 53, 20, 1) 100%);
}

.hero-card-purple {
  background: linear-gradient(117.95deg, rgba(23, 14, 26, 1) 0%, rgba(60, 20, 86, 1) 100%);
}

.hero-card-bg {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.hero-card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-footer {
  background: #0e111a;
  border-radius: 0 0 4px 4px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 37px;
}

.hero-card-icon {
  width: 20px;
  height: 16px;
  object-fit: contain;
}

.hero-card-footer span {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.section-header-block {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

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

.section-title-icon {
  width: 55px;
  height: auto;
  position: relative;
}

.section-title-icon-bg {
  position: absolute;
  left: 4px;
  width: 55px;
  height: auto;
  opacity: 0.5;
}

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

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

.section-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;
}

.bonus-banners-section {
  margin-bottom: 0;
}

.bonus-images-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: center;
}

.bonus-banner-wrap {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: min(440px, 75vw);
  margin: 0 auto;
}

.bonus-banner {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.bonus-cards-section {
  margin-bottom: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.bonus-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bonus-card {
  background: #0e111a;
  border: 1px solid #131a27;
  border-radius: 5px;
  padding: 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bonus-card-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

.bonus-card-content { text-align: center; flex: 1; }

.bonus-card-text {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
}

.bonus-highlight-green { color: #d0ff00; }
.bonus-highlight-purple { color: #886cff; }

.bonus-card-sub {
  color: #425a69;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.bonus-card-code {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, rgba(46, 64, 72, 0) 0%, rgba(111, 155, 174, 0.34) 100%);
  border: 1px solid #2c3c47;
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  justify-content: center;
}

.bonus-card-code span {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.code-value { font-weight: 800 !important; }
.code-green { color: #d0ff00 !important; }
.code-purple { color: #886cff !important; }

.copy-icon {
  width: 13px;
  height: 15px;
  cursor: pointer;
  opacity: 0.7;
}

.copy-icon:hover { opacity: 1; }

.bonus-card-btn {
  width: 100%;
  height: 41px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
}

.bonus-card-btn:hover { opacity: 0.85; }

.btn-green {
  background: linear-gradient(180deg, rgba(206, 255, 92, 1) 0%, rgba(208, 255, 0, 1) 100%);
  color: #0e111a;
}

.btn-purple {
  background: #886cff;
  color: #ffffff;
}

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

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

.games-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.games-section-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.games-section-title span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.view-all-btn {
  background: #0e111a;
  border: 1px solid #202b3d;
  border-radius: 5px;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
}

.view-all-btn:hover {
  background: #131a27;
}

.games-grid {
  display: grid;
  gap: 16px;
}

.games-grid-4 {
  grid-template-columns: repeat(4, 170px);
}

.featured-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.featured-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-top: 8px;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-scroll::-webkit-scrollbar {
  display: none;
}

.featured-scroll .game-card {
  width: 170px;
  flex-shrink: 0;
}

.featured-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #06080e 100%);
  pointer-events: none;
  z-index: 2;
}

.games-grid-5 {
  grid-template-columns: repeat(5, 170px);
}

.games-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.game-border-featured-1 {
  background: linear-gradient(90deg, rgb(255, 136, 237) 0%, rgb(255, 185, 244) 50%, rgb(255, 136, 237) 100%);
}

.game-border-featured-2 {
  background: linear-gradient(90deg, rgb(127, 185, 231) 0%, rgb(175, 212, 241) 50%, rgb(127, 185, 231) 100%);
}

.game-border-featured-3 {
  background: linear-gradient(90deg, rgb(250, 158, 0) 0%, rgb(255, 195, 80) 50%, rgb(250, 158, 0) 100%);
}

.game-border-featured-4 {
  background: linear-gradient(90deg, rgb(251, 90, 144) 0%, rgb(253, 145, 180) 50%, rgb(251, 90, 144) 100%);
}

.game-border-featured-5 {
  background: linear-gradient(90deg, rgb(245, 72, 120) 0%, rgb(249, 130, 160) 50%, rgb(245, 72, 120) 100%);
}

.game-border-featured-6 {
  background: linear-gradient(90deg, rgb(110, 192, 255) 0%, rgb(165, 218, 255) 50%, rgb(110, 192, 255) 100%);
}

.game-border-featured-7 {
  background: linear-gradient(90deg, rgb(228, 177, 74) 0%, rgb(241, 208, 130) 50%, rgb(228, 177, 74) 100%);
}

.game-border-featured-8 {
  background: linear-gradient(90deg, rgb(251, 191, 30) 0%, rgb(253, 215, 100) 50%, rgb(251, 191, 30) 100%);
}

.game-border-featured-9 {
  background: linear-gradient(90deg, rgb(123, 34, 245) 0%, rgb(170, 105, 250) 50%, rgb(123, 34, 245) 100%);
}

.game-card {
  border-radius: 0;
  overflow: visible;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-thumb {
  background: #0e111a;
  width: 100%;
  aspect-ratio: 186/250;
  border-radius: 5px;
}

.game-card-border {
  border-radius: 8px;
  padding: 3px;
  overflow: hidden;
}

.game-border-chicken {
  background: linear-gradient(90deg, rgb(237, 183, 3) 0%, rgb(242, 205, 79) 50%, rgb(237, 183, 3) 100%);
}

.game-border-dice {
  background: linear-gradient(90deg, rgb(5, 213, 80) 0%, rgb(80, 226, 133) 50%, rgb(5, 213, 80) 100%);
}

.game-border-mines {
  background: linear-gradient(90deg, rgb(228, 39, 53) 0%, rgb(236, 104, 114) 50%, rgb(228, 39, 53) 100%);
}

.game-border-plinko {
  background: linear-gradient(90deg, rgb(223, 32, 121) 0%, rgb(233, 99, 161) 50%, rgb(223, 32, 121) 100%);
}

.game-thumb-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.game-soon-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.game-soon-badge {
  background: #2c3c47;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 800;
  color: #88969c;
  padding: 6px 24px;
  white-space: nowrap;
}

.game-card-link {
  display: block;
  text-decoration: none;
}
.game-play-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.game-play-badge {
  background: linear-gradient(135deg, #8b2cff, #d387ff);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  padding: 6px 20px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(139, 44, 255, 0.4);
  transition: all 0.2s;
}
.game-card-link:hover .game-play-badge {
  box-shadow: 0 4px 20px rgba(139, 44, 255, 0.6);
  transform: scale(1.05);
}

.livestream-cta {
  margin-bottom: 40px;
}

.livestream-cta-inner {
  background: linear-gradient(90deg, rgba(6, 8, 14, 0) 0%, rgba(23, 29, 44, 0.33) 100%), #0e111a;
  border: 2px dashed #c06aff;
  border-radius: 9px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.livestream-cta-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.kick-highlight {
  color: #cffe1a;
  font-weight: 800;
}

.livestream-cta-btn {
  background: rgba(6, 8, 14, 0.6);
  border-radius: 5px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.livestream-cta-btn:hover {
  background: rgba(192, 106, 255, 0.2);
}

.providers-section {
  margin-bottom: 40px;
}

.providers-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.providers-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.providers-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.provider-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(176.14deg, rgba(14, 17, 26, 0) 0%, rgba(123, 150, 232, 0.2) 100%), #0e111a;
  border: 1px solid #131a27;
  border-radius: 5px;
  height: 97px;
  display: block;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.provider-card:hover,
.provider-card:focus-visible {
  border-color: #2c3c47;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.provider-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.provider-card-logo {
  opacity: 1;
  transform: scale(1);
}

.provider-card-slots {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: stretch;
}

.provider-card:hover .provider-card-logo,
.provider-card:focus-visible .provider-card-logo {
  opacity: 0;
  transform: scale(0.94);
}

.provider-card:hover .provider-card-slots,
.provider-card:focus-visible .provider-card-slots {
  opacity: 1;
  transform: scale(1);
}

.provider-slot-tile {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #1c2740;
  background: #0a0d14;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.provider-slot-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.provider-logo {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}

@media (hover: none) {
  .provider-card-slots {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .provider-card-logo {
    display: none;
  }
}

.social-section {
  margin-bottom: 40px;
}

.social-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.social-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.social-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
}

.social-grid .game-card {
  width: 170px;
  flex-shrink: 0;
}

.social-grid .game-card-border {
  border-radius: 8px;
  padding: 3px;
  overflow: hidden;
}

.social-grid .game-thumb-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  aspect-ratio: 186 / 250;
  object-fit: cover;
}

.social-border-discord {
  background: linear-gradient(90deg, rgb(88, 101, 242) 0%, rgb(140, 150, 255) 50%, rgb(88, 101, 242) 100%);
}

.social-border-instagram {
  background: linear-gradient(90deg, rgb(228, 64, 95) 0%, rgb(188, 42, 141) 50%, rgb(138, 58, 185) 100%);
}

.social-border-kick {
  background: linear-gradient(90deg, rgb(228, 39, 53) 0%, rgb(236, 104, 114) 50%, rgb(228, 39, 53) 100%);
}

.social-border-kick2 {
  background: linear-gradient(90deg, rgb(83, 252, 24) 0%, rgb(160, 255, 120) 50%, rgb(83, 252, 24) 100%);
}

.faq-section {
  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;
}

.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; }

.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 40px;
  height: 40px;
  background: #131a27;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 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: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  background: #0e111a;
  border-top: 1px solid #1c2740;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-text { flex: 1; }

.cookie-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.cookie-text p {
  color: #8ba4ba;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: #886cff;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover { color: #a88dff; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 24px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn-reject {
  background: #131a27;
  color: #8ba4ba;
  border: 1px solid #1c2740;
}

.cookie-btn-accept {
  background: linear-gradient(180deg, rgba(206, 255, 92, 1) 0%, rgba(208, 255, 0, 1) 100%);
  color: #0e111a;
}

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

  .chat-sidebar {
    display: none;
  }

  .games-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .games-grid-6 {
    grid-template-columns: repeat(5, 1fr);
  }

}

@media (max-width: 1100px) {
  .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 40px;
  }

  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card { height: 220px; }

  .games-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .games-grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }

  .games-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 70px 12px 30px;
  }

  .section-title-main,
  .faq-title-main {
    font-size: 24px;
  }

  .section-title-sub,
  .faq-title-sub {
    font-size: 12px;
  }

  .section-title-icon,
  .section-title-icon-bg {
    width: 40px;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-card {
    height: 160px;
  }

  .bonus-images-row,
  .bonus-cards-row {
    grid-template-columns: 1fr;
  }

  .section-header-block,
  .bonus-banners-section {
    display: none;
  }
  .bonus-cards-section {
    margin-top: 0;
  }

  .games-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .games-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .social-grid {
    flex-wrap: wrap;
  }

  .social-grid .game-card {
    width: calc(25% - 12px);
  }

  .game-soon-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .game-play-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .providers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .livestream-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .livestream-cta-text {
    font-size: 16px;
  }

  .livestream-cta-btn {
    width: 100%;
    text-align: center;
  }

  .faq-item-text { font-size: 16px; }
  .faq-toggle { width: 38px; height: 38px; }
  .faq-icon { width: 40px; }

  .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;
  }
}

@media (max-width: 480px) {
  .section-title-main,
  .faq-title-main {
    font-size: 20px;
  }

  .hero-card {
    height: 140px;
  }

  .hero-card-footer span {
    font-size: 13px;
  }

  .games-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .games-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .games-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .game-card-border {
    padding: 2px;
    border-radius: 4px;
  }

  .game-thumb {
    border-radius: 3px;
  }

  .game-soon-badge {
    font-size: 8px;
    padding: 2px 8px;
  }

  .game-play-badge {
    font-size: 8px;
    padding: 2px 8px;
  }

  .providers-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    flex-wrap: wrap;
  }

  .social-grid .game-card {
    width: calc(50% - 8px);
  }

  .games-section-title span {
    font-size: 16px;
  }

  .view-all-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .providers-title,
  .social-title {
    font-size: 16px;
  }

  .livestream-cta-text {
    font-size: 14px;
  }
}
