@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  -webkit-font-smoothing: antialiased;
  background-color: #f5f5f5;
  color: #1e1e1e;
  font-family: 'Ubuntu', sans-serif;
  font-size: 17.92px;
  line-height: 1.3;
  touch-action: manipulation;
  overflow-x: hidden;
}

@media screen and (max-width: 992px) {
  html, body {
    font-size: 3.7333333333vw;
  }
}

img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; color: #1e1e1e; }

/* ===== UTILITIES ===== */
.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.text-center { text-align: center; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.position-relative { position: relative; }
.w-100 { width: 100%; }
.p-0 { padding: 0; }
.m-0 { margin: 0; }

/* ===== BACKGROUND & LAYOUT ===== */
.background-body {
  background-image: url('../images/landing pahe/imgi_10_velki-back.d458839a4f54fc8269a3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

.background-body-home {
  background-image: url('../images/home/imgi_10_velki-back.d458839a4f54fc8269a3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

.new-bg {
  background-attachment: fixed;
  left: 10%;
  position: fixed;
  top: 45%;
  pointer-events: none;
  z-index: 0;
}

.main-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-container {
  background: #eef6fb;
  min-height: 100vh;
  position: relative;
  width: 480px;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .inner-container {
    width: 100vw;
  }
}

/* ===== MAIN ===== */
main {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-top: 2.857rem;
}

/* ===== HEADER ===== */
.header {
  align-items: center;
  font-size: .786rem;
  position: fixed;
  top: 0;
  width: 480px;
  z-index: 100;
  padding: 6px;
  height: 2.857rem;
}

@media screen and (max-width: 480px) {
  .header {
    width: 100%;
  }
}

.bg-yellow {
  background-color: #150f47 !important;
  border: none !important;
  color: #000 !important;
}

.header .logo-sec {
  flex: 0 0 129px;
  max-width: 129px;
  height: 100%;
  display: flex;
  align-items: center;
}

.header .logo-sec img {
  height: auto;
  width: 6rem;
}

.header .social-header {
  display: flex;
  flex: 1 1;
  justify-content: flex-end;
  text-align: right;
}

.header .social-header a {
  align-items: center;
  background: rgb(255 200 0);
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-size: .9rem;
  font-weight: 600;
  height: 1.857rem;
  margin-right: 13px;
  text-decoration: none;
  cursor: pointer;
}

.header .social-header a:last-child {
  margin-right: 0;
}

.header .social-header a.login {
  background: #e20000;
  padding: .75rem;
}

.header .social-header a.signup {
  padding: 2px 6px;
}

.header .social-header a i {
  font-size: 1rem;
  margin-right: 4px;
}

/* ===== HEADER AFTER LOGIN ===== */
.header-logged-in .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logged-in .balance-display {
  background:#faaf13;
  border-radius: 5px;
  color: #fff;
  padding: 2px 8px;
  font-size: .8rem;
  font-weight: 600;
}

.header-logged-in .balance-refresh-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: #faaf13;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.header-logged-in .balance-refresh-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.header-logged-in .balance-refresh-btn:hover {
  background: rgba(0,0,0,0.65);
}

.header-logged-in .menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logged-in .menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #faaf13;
  position: relative;
}

.header-logged-in .menu-btn span::before,
.header-logged-in .menu-btn span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #faaf13;
  position: absolute;
  left: 0;
}

.header-logged-in .menu-btn span::before { top: -7px; }
.header-logged-in .menu-btn span::after { top: 7px; }

/* ===== BANNER SLIDER ===== */
.home-banner-sec {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.slider-wrapper .slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slider-wrapper .slide img {
  display: block;
  width: 100%;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  position: absolute;
  bottom: 4px;
  width: 100%;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
}

.slider-dots .dot.active {
  background: #ffc800;
}

/* ===== MARQUEE ===== */
.marquee-notification {
  align-items: center;
  background: #fff;
  padding: .1rem 0;
  display: flex;
}

.audio-tracker {
  background-color: #fff;
  border-right: 1px solid #d4e0e5;
  display: flex;
  padding: 0 9px;
  align-items: center;
  font-size: 1.143rem;
}

.marquee-notification marquee {
  align-items: center;
  display: flex;
  padding-bottom: 4px;
  font-size: .85rem;
  color: #555;
}

/* ===== GAME CATEGORY TABS ===== */
.games-slot {
  background: #150f47;
  color: #fff;
  padding: 0px 10px 0px;
  position: relative;
  overflow: hidden;
}

.games-slot-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.games-slot-scroll::-webkit-scrollbar { display: none; }

.slot1 {
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 4px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.slot1:hover,
.slot1:active {
  background-color: #3d7489;
}

.slot1.active {
  background-image: linear-gradient(90deg, rgba(168,177,202,0.2), rgba(245,246,250,0.2));
  border-radius: 9px;
}

.games-slot span {
  color: #ffff;
  display: block;
  font-size: .857rem;
  margin-top: 4px;
}

.slot1.active span {
  color: #fff;
}

.slot1 .icon {
  font-size: 36px;
  display: block;
}

.slot1 .icon img {
  width: 36px;
  height: 36px;
}

/* ===== GAME ICONS SVG ===== */
.game-icon {
  width: 36px;
  height: 36px;
  fill: rgba(255,255,255,0.7);
}

.slot1.active .game-icon {
  fill: #ffc800;
}

/* ===== SIDEBAR + GAMES AREA ===== */
.games-inner {
  background: #2c457bfa;
  display: flex;
  padding: 12px 6px 0;
}

.games-inner aside {
  background: #150f47;
  border-radius: 6px;
  box-shadow: 0 1px 4px 2px rgba(0,0,0,0.03);
  flex: 0 0 53px;
  max-width: 3.643rem;
  padding: 4px 2px;
  margin-right: 6.72px;
}

.sideicon li {
  align-items: center;
  border-radius: 11px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 4.5rem;
  margin-bottom: 15.38px;
  padding: .6rem 0;
  text-align: center;
  font-size: 22px;
}

.sideicon li:last-child { margin-bottom: 0; }

.sideicon li.active {
  background-color: #ffc800;
  border-radius: .5rem;
  transition: all 1s cubic-bezier(.4,0,.2,1);
}

.sideicon li span {
  color: white;
  display: block;
  font-size: .643rem;
  margin-top: 8px;
}
/*svg {*/
/*    color: white;*/
/*}*/
.sideicon li i {
  font-size: 1.3rem;
}

/* ===== GAME CARDS ===== */
.games-wrapper {
  flex: 1 1;
}

.games-wrapper .card {
  background-position: right;
  background-size: cover;
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 6px 4px rgba(0,0,0,0.06);
  height: 6.857rem;
  margin-bottom: .5rem;
  padding: 6px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.games-wrapper .card span {
  font-size: 1.071rem;
  font-weight: 700;
  opacity: .8;
  display: block;
  color:white;
}

.games-wrapper .card strong {
  font-size: 3.429rem;
  font-weight: 700;
  line-height: 50px;
  color:white;
}

.games-wrapper .card.card1 {
  background-image: url('/new%20design/assets/images/sports.jpg');
}
.games-wrapper .card.card2 {
  background-image: url('/new%20design/assets/images/cricket.jpg');
}
.games-wrapper .card.card3 {
  background-image: url('/new%20design/assets/images/socces.jpg');
}
.games-wrapper .card.card4 {
  background-image: url('/new%20design/assets/images/tennis.jpg');
}

/* Home page cards use home folder images */
.home-page .games-wrapper .card.card1 {
  background-image: url('/new%20design/assets/images/sports.jpg');
}
.home-page .games-wrapper .card.card2 {
  background-image: url('/new%20design/assets/images/cricket.jpg');
}
.home-page .games-wrapper .card.card3 {
  background-image: url('/new%20design/assets/images/socces.jpg');
}
.home-page .games-wrapper .card.card4 {
  background-image: url('/new%20design/assets/images/tennis.jpg');
}

/* ===== GAME TABLE CARDS (games page) ===== */
.games-card-inner {
  background-image: linear-gradient(-180deg, #d4e0e5, #eef6fb);
  margin-bottom: 12px;
  padding: 10px 20px;
}

.games-card-inner h2 {
  border-left: 3px solid #000;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 5px;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-card {
  width: calc(33.33% - 6px);
  border-radius: .75rem;
  cursor: pointer;
  overflow: hidden;
}

.game-card img {
  height: 6.786rem;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* ===== ENTRANCE BUTTON ===== */
.betbtn1 {
  position: absolute;
}

.betbtn1 img {
  width: 48px;
  height: 48px;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 0px;
  padding: 34px 12px 14px;
  position: relative;
  background: #2c457bfa;
}

.download-apk {
  text-align: center;
}

.download-apk img {
  max-width: 157px;
}

.download-apk span {
  color: black;
  font-size: .786rem;
  font-weight: 600;
  display: block;
}

.social-icon {
  margin: 10px 0;
  text-align: center;
}

.social-icon a {
  color: #000;
  display: inline-block;
  text-decoration: none;
  margin: 0 8px;
}

.social-icon i,
.social-icon svg {
  font-size: 2.143rem;
  width: 32px;
  height: 32px;
}

.footer-links {
  text-align: center;
  padding: 0;
  margin: 0;
}

.footer-links li {
  border-right: 1px solid #d4e0e5;
  display: inline-block;
  font-size: .786rem;
  line-height: 5px;
  padding: 6px 9px;
}

.footer-links li:last-child { border: none; }
.footer-links li span { cursor: pointer; }

/* ===== LEFT SIDEBAR MENU ===== */
.sidebar-overlay {
  background: rgba(0,0,0,0.44);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  display: none;
}

.sidebar-overlay.active { display: block; }

.sidebar-wrapper {
  background: #f0f8ff;
  position: fixed;
  top: 0;
  left: 0;
  width: 341px;
  height: 100vh;
  overflow-y: auto;
  padding: 13px;
  z-index: 999;
  display: none;
}

.sidebar-wrapper.open {
  display: block;
}

/* Center sidebar within the 480px container on desktop */
@media screen and (min-width: 481px) {
  .sidebar-overlay {
    left: calc(50% - 240px);
    width: 480px;
  }
  .sidebar-wrapper {
    left: calc(50% - 240px);
  }
}

.top-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.top-sidebar .sidebar-logo img {
  width: 6rem;
}

.top-sidebar strong {
  font-size: 1.071rem;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  padding: 4px;
}

.sidebar-wrapper ul {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 10px;
}

.sidebar-wrapper ul li {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.sidebar-wrapper ul li:last-child { border: none; }

.sidebar-wrapper ul a {
  align-items: center;
  color: #000;
  display: flex;
  padding: 10px;
  font-size: .9rem;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYEAYAAACw5+G7AAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAGYktHRAAAAAAAAPlDu38AAAAJcEhZcwAAAGAAAABgAPBrQs8AAAAHdElNRQfnBR0KMSkkfpugAAACvElEQVRYw+2UX0iTURiHf+ebqExMszBDmIX0z1BM0hZI6o3OLFNTg0DQiRqBzWEkotvHZmniFJ0SYejUElORFFaWmFLZCByBmNAo0fTCQkmFLKbze7sIb4oucjOk9twezvs+v3PecwAnTpz8n6iP1Z5sbo+LU+fVlRvSlpfV1ro8w1OVCiAiYuxveXCb3chei44y+doaGjCEwx4euIEgzGi1fES9d2tYW1v+I71ML3Nz2+oAdp8UT3pZy6fYWFqkV+Tb1YVaaNDi5YUaWBFhMq29Y0N0LympYu+Vx/KK+fltF2AD1aH6j4b44GAWKAwARiOOYxHpEgkuYAajk5PCDK0IAQkJ1+MLbmcXWSyO6rvpEfqZMku+X1b/+LjtlvDEpVoqRROusptmMzohQXhgINfJLnPnTSbVN72suTgqatsF2KB8n7I9I2hu7mvMahP3LDqazrF+jPf2QoJhvPDxYSp6yD4MDKgNdbOGjowMe/tt+W/BE088cRyF7XLbX6jT4SxVUbBSCR61aCZCEU2wA2lpWl2BOLO5p+dP6zv8Bn7ThkOAMEbVYvEvSwvsvZBrs222sstWKV87WPm2qdLTkxrcd3KnOzoQAg3SExJQjFVkWq0UhEV0yeVlFkWIXNrXt20ClMTUSFtD/P1FsyJfgYxGzEOD9NBQTCGPlS0sMHf4rZ9KTtZaFEvZ/SMj9vZz2AjxpF9pDYmIEO0WfRFyzWZcxF3sCQ3FGVaFlxMTrE1wo8nwcA1TLGUH2i/usAA86QcMJ1JSSEEy4cHwMI4gBx5+flSIKqYbHGTh67O4ExmpYUqWxaanHSVudwCeai+1jCUmUgmtoqO7G95IxXOxmHUDlNrYyO34PDv1Jj7+h/jSkqPFN7DjDXDTwn1XV5SQjQ1ZrTSKHEhLS7VahVieVVMDBsVWSTtx4uQf4jsIRA4ZfaraZAAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMy0wNS0yOVQxMDo0OTo0MSswMDowMPHXZGEAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjMtMDUtMjlUMTA6NDk6NDErMDA6MDCAitzdAAAAKHRFWHRkYXRlOnRpbWVzdGFtcAAyMDIzLTA1LTI5VDEwOjQ5OjQxKzAwOjAw15/9AgAAAABJRU5ErkJggg==");
  background-position: right 6px top 5px;
  background-repeat: no-repeat;
  transition: color 0.2s;
}

.sidebar-wrapper ul a:hover {
  color: #a1841a;
}

.sidebar-wrapper ul a svg,
.sidebar-wrapper ul a i {
  font-size: 15px;
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

/* ===== LOADING OVERLAY ===== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.loading.active {
  display: flex;
}

.loading-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ffc800;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== ICON FONT REPLACEMENT (SVG inline icons) ===== */
.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* ===== BALANCE SECTION (home) ===== */
.balance-label-detail {
  align-items: center;
  background: #000;
  color: #fff;
  display: flex;
  height: 2.429rem;
  margin-top: -1px;
  padding-left: .5rem;
  padding-right: .5rem;
  text-align: center;
}

.balance-label-detail span {
  font-size: 1rem;
  line-height: 22px;
}

.balance-label {
  background: #000;
  color: #fff;
  font-size: 1rem;
  height: 3rem;
  padding: 11px 10px;
  text-align: center;
}

.balance-sec {
  background: #262c32;
  border-radius: 14px;
  color: #fff;
  padding: 14px;
}

.balance-sec span {
  background: #ffc800;
  border-radius: 6px;
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 5px;
}

/* ===== BALANCE PAGE ===== */
.page-title-bar {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 600;
}

.page-title-bar .back-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  margin-right: 10px;
  padding: 0;
  display: flex;
  align-items: center;
}

.balance-page-content {
  padding: 12px;
}

.balance-card {
  background: #262c32;
  border-radius: 14px;
  color: #fff;
  padding: 14px;
  margin-bottom: 12px;
}

.balance-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff !important;
}

.balance-card .balance-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc800;
  margin-bottom: 8px;
}

.balance-card .balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.balance-card .balance-row:last-child {
  border-bottom: none;
}

.balance-card .balance-row .label {
  font-size: .85rem;
  color: rgba(255,255,255,0.7);
}

.balance-card .balance-row .value {
  font-size: .95rem;
  font-weight: 600;
}

.balance-btn-group {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.balance-btn-group .btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-deposit {
  background: #ffc800;
  color: #000;
}

.btn-withdraw {
  background: #e20000;
  color: #fff;
}

.btn-p2p {
  background: #1b1f23;
  color: #fff;
}

/* Balance table */
.balance-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.balance-table th {
  background-color: #d4e0e5;
  text-align: left;
  padding: 8px 10px;
  font-size: .8rem;
  font-weight: 600;
}

.balance-table td {
  padding: 8px 10px;
  font-size: .85rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.balance-table tr:last-child td {
  border-bottom: none;
}

/* Sport balance expander */
.sport-balance-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.sport-balance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
}

.sport-balance-header .arrow {
  transition: transform 0.3s;
  font-size: .75rem;
  color: #6f8898;
}

.sport-balance-header .arrow.open {
  transform: rotate(180deg);
}

.sport-balance-body {
  display: none;
  padding: 0 14px 12px;
}

.sport-balance-body.open {
  display: block;
}

.sport-balance-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .85rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sport-balance-row:last-child {
  border-bottom: none;
}

.master-pass {
  font-weight: 600;
  margin-left: 10px;
  padding-left: 15px;
  position: relative;
  font-size: .93rem;
}

.master-pass:before {
  border-color: transparent transparent transparent #9cb1bd;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.master-pass.first:before {
  border: none;
  content: "";
}

.master-pass.first {
  padding-left: 0;
  margin-left: 0;
  color: #000;
  font-weight: 700;
}

/* Active log table */
.active-log-table {
  margin-top: 12px;
}

.active-log-table table {
  width: 100%;
  border-collapse: collapse;
}

.active-log-table table th {
  background: #d5f2b8;
  padding: .3rem .5rem;
  font-size: .857rem;
  text-align: left;
}

.active-log-table table td {
  padding: .3rem .5rem;
  font-size: .857rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.active-log-table table .success {
  color: #73be24;
}

/* Low buttons */
.low-button {
  font-size: .714rem;
  font-weight: 700;
  padding: 3px 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.low-button.deposit {
  background: #ffc800;
  color: #000;
}

.low-button.withdraw {
  background: #e20000;
  color: #fff;
}

/* Select container (for dropdowns) */
.select-container {
  background: #262c32;
  padding: 8px;
  text-align: center;
}

.select-container select {
  background: transparent;
  border: 1px solid #ffc800;
  border-radius: 5px;
  color: #ffc800;
  font-size: 1.071rem;
  font-weight: 500;
  padding: 7px 10px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-container select:focus {
  outline: none;
}

.select-container select option {
  background: #262c32;
  color: #ffc800;
}

/* ===== GAMES PAGE ===== */
.games-page-content {
  padding: 0;
}

.games-tab-header {
  background: #1b1f23;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 6px;
  gap: 4px;
}

.games-tab-header::-webkit-scrollbar { display: none; }

.games-tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.games-tab-btn.active,
.games-tab-btn:hover {
  background: #ffc800;
  color: #000;
  border-color: #ffc800;
}

.games-provider-bar {
  background: #262c32;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px;
  gap: 6px;
}

.games-provider-bar::-webkit-scrollbar { display: none; }

.provider-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.provider-btn.active,
.provider-btn:hover {
  background: #ffc800;
  color: #000;
}

.games-search-bar {
  padding: 8px 12px;
  background: #f0f8ff;
}

.games-search-bar input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border: 1px solid #d4e0e5;
  border-radius: 8px;
  font-size: .85rem;
  background: #fff;
  outline: none;
}

.games-search-bar input:focus {
  border-color: #ffc800;
}

.games-search-bar .search-wrap {
  position: relative;
}

.games-search-bar .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f8898;
}

.games-list-section {
  padding: 10px 12px;
  background: #f0f8ff;
}

.games-list-section h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 3px solid #000;
}

.games-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.games-grid-3 .game-card-item {
  width: calc(33.33% - 4px);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.games-grid-3 .game-card-item img {
  width: 100%;
  height: 6.5rem;
  object-fit: cover;
  display: block;
}

.games-grid-3 .game-card-item .game-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: .65rem;
  padding: 12px 4px 4px;
  text-align: center;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffc800;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  font-size: 18px;
  color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===== SLICK-LIKE DOTS FOR GAME TABS ===== */
.tab-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.tab-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}

.tab-dots .dot.active {
  background: #ffc800;
}

/* ===== LOGIN PAGE ===== */
.login-panel {
  background-image: url('../images/landing pahe/imgi_10_velki-back.d458839a4f54fc8269a3.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-panel .inner-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login-header {
  background:#150f47;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.login-header .back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #faaf13;
  font-size: 0.9rem;
  font-weight: 500;
}

.login-header .header-logo img {
  height: 32px;
}

.login-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 40px;
}

.login-logo {
  height: 4.285rem;
  margin: 20px auto 18px;
  max-width: 185px;
  display: block;
}

.login-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 28px;
  width: calc(100% - 32px);
  max-width: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.login-form-wrap h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1b1f23;
  margin-bottom: 20px;
  text-align: center;
}

/* Floating label inputs */
.lf-group {
  position: relative;
  margin-bottom: 16px;
}

.lf-group .lf-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f8898;
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.lf-group input {
  width: 100%;
  height: 50px;
  border: 1px solid #6f8898;
  border-radius: 8px;
  padding: 14px 14px 6px 42px;
  font-size: 0.875rem;
  font-family: 'Ubuntu', sans-serif;
  color: #1b1f23;
  background: #fff;
  outline: none;
  transition: border 0.2s;
}

.lf-group input:focus {
  border: 2px solid #c0a024;
}

.lf-group label {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.84rem;
  color: #6f8898;
  pointer-events: none;
  transition: 0.2s ease;
  background: transparent;
  z-index: 2;
}

.lf-group input:focus ~ label,
.lf-group input:not(:placeholder-shown) ~ label {
  top: 10px;
  transform: none;
  font-size: 0.72rem;
  color: #c0a024;
  background: #fff;
  padding: 0 2px;
}

.lf-group .pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #6f8898;
  display: flex;
  align-items: center;
  padding: 4px;
  z-index: 2;
}

.lf-group .pw-toggle:hover { color: #c0a024; }

.login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #555;
}

.login-remember input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #c0a024;
  cursor: pointer;
}

.btn-login-submit {
  display: block;
  width: 100%;
  height: 46px;
  background: #ffc800;
  border: 2px solid #ffc800;
  border-radius: 6px;
  color: #1b1f23;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.btn-login-submit:hover {
  background: transparent;
  color: #1b1f23;
}

.login-divider {
  text-align: center;
  color: #aaa;
  font-size: 0.8rem;
  margin: 14px 0;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #e0e0e0;
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.btn-register-link {
  display: block;
  width: 100%;
  height: 46px;
  background: transparent;
  border: 2px solid #1b1f23;
  border-radius: 6px;
  color: #1b1f23;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Ubuntu', sans-serif;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  line-height: 42px;
  text-decoration: none;
}

.btn-register-link:hover {
  background: #1b1f23;
  color: #ffc800;
}

.login-demo-link {
  display: block;
  text-align: center;
  color: #6f8898;
  font-size: 0.8rem;
  margin-top: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.login-demo-link:hover { color: #c0a024; }

.login-footer-note {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  margin-top: 20px;
  padding: 0 16px;
}

/* ===== STICKY ENTRANCE FLOAT BUTTON ===== */
.entrance-float {
  position: fixed;
  bottom: 10%;
  left: 5%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.214rem;
  height: 3.214rem;
  background: #1b1f23;
  border-radius: 50%;
  cursor: pointer;
}

.entrance-float img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 481px) {
  .entrance-float {
    left: calc(50% - 240px + 5%);
  }
}

/* ===== INNER SIDEBAR CONTENT (for home page) ===== */
.inner-sidebar-content {
  background: #f0f8ff;
  min-height: calc(100vh - 106px);
}
