body {
  font-family: "Poppins", sans-serif;
  overflow:auto;
}

/* ================= HEADER ================= */
.top-nav {
  background: var(--navbarbg);
  height: 4.5rem;
  position: sticky;
  top: 0;
  z-index: 1;
}
.top-nav-inner {
  width: 100%;
  height: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 48px;
}
.logo {
  height: 36px;
}
.top-links a {
  margin-right: 32px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 280px;             
  padding: 0.25rem 0.50rem;
  background: var(--blue-400);       
  border-radius: 1.25rem;
  box-sizing: border-box;
  height: 2.5rem;
  border: 1px solid var(--blue-300);
}

.search-box img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-color);
}

.search-box input::placeholder {
  color: var(--blue-50);
}
.country-btn {
 display: flex;
  align-items: center;
  gap: 0.5rem;             
  padding: 0.25rem 1rem;
  background: var(--blue-400);       
  border-radius: 1.25rem;
  box-sizing: border-box;
  height: 2.5rem;
  border: 1px solid var(--blue-300);
  color: var(--text-color);
}
.icon-btn {
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}


/* ================= LAYOUT ================= */
.layout {
  display: flex;
  min-height: calc(100vh - 72px);
  overflow:hidden;
  
}

/* ================= SIDEBAR ================= */
.sidebar {
  background: var(--sidebarbg);
  width: 12.5rem;
  transition: width .25s ease;
  box-shadow: var(--sidebarshadow);
  padding: 1.5rem 1rem;
}
.sidebar.collapsed {
  width: 4.75rem;
  padding: 1.5rem 1rem;
}
.sidebar-hr {
  border-color: var(--sidebarhr);
}
.collapse-btn {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.collapse-btn span {
  color: var(--collapsecolor);
  font-weight: 600;
  font-size: 0.6rem;
  line-height: 0.8rem;
}
.side-menu {
  list-style: none;
  margin-top: 0.5rem;
}
 
.side-menu a {
  text-decoration: none;
}
 

.side-menu li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
}
.sidebar.collapsed li {
  width: fit-content;
}
.side-menu li:hover {
  background: var(--sidebarmenubackground);
  color: var(--text-color);
}
.side-menu li:hover span, .side-menu li:hover img {
  color: var(--text-color);
}

.side-menu li.active {
  color: var(--text-color);
  background: var(--sidebarmenubackground);
}
.side-menu li.active span, .side-menu li.active img {
  color: var(--text-color);
}
.side-menu span {
  white-space: nowrap;
  color: var(--sidebarmenucolor);
  font-size: 0.80rem;
  line-height: 1rem;
  font-weight: 600;
}
.sidebar.collapsed span {
  display: none;
}
.side-menu img {
  width: 1.5rem;
}

/* Mob Categories */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10;
}

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

.sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 24.375rem;
  background: var(--contentbg);
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 1rem;
  transition: 0.35s ease;
  z-index: 20;
  box-shadow: 1px 0rem 0.6rem rgba(0, 0, 0, 0.15);
}

.sheet.active {
  transform: translateX(-50%) translateY(0);
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.sheet-header h2 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  color: var(--contentheading);
}

.close-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.1rem solid #4f66ff;
  background: transparent;
  color: #4f66ff;
  font-size: 1.1rem;
  cursor: pointer;
}

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

.tile {
  background: var(--catergoriescardbg);
  border-radius: 0.9rem;
  height: 5.8rem;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  /* box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.15); */
  position: relative;
  border:  1px solid #0A2575;
  cursor: pointer;
}


.tile p {
  margin: 0;
}

/* how to play */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10;
}

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

.how-to-play {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 24.375rem;
  background: var(--contentbg);
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 1rem;
  transition: 0.35s ease;
  z-index: 20;
  box-shadow: 1px 0rem 0.6rem rgba(0, 0, 0, 0.15);
 
}
.how-to-play .content-wrapper {
  max-height:28.125rem;
  overflow-block: auto;
}

.how-to-play.active {
  transform: translateX(-50%) translateY(0);
}

.launch-btn {
  padding: 0.8rem 1.3rem;
  font-size: 1rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
}

/* Overlay */
.game-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 100;
}

/* Modal */
.game-modal {
  position: fixed;
  inset: 0;
  background: #121217;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: 0.3s ease;
  z-index: 101;
}

/* Active */
.game-modal.active,
.game-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Header */
.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
}

.game-controls {
  display: flex;
  gap: 0.4rem;
}
.game-controls .action-chip-btn img {
  rotate: 90deg;
}

.exit-btn {
  background: var(--logoutbtn);
  color: #fff;
  border: none;
  height: 2rem;
  display: flex;
align-items: center;
  gap: 0.625rem;
  border-radius: 0.25rem;
  padding: 0.438rem 0.5rem;
}

/* Body */
.game-body {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.game-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* login sign up */


.overlay-login {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 50;
}

.login-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--loginmodalbg);
  width: 90%;
  max-width: 22.5rem;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 60;
}

.login-modal.active,
.overlay-login.active {
  opacity: 1;
  visibility: visible;
}

.login-modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background:none;
  border: none;
  cursor: pointer;
  position:static !important;
}
.close-btn img {
	width:100%;
	height:100%;
}

.login-body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-btn {
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #626366;
}



/* Share :modal */
/* Overlay */
.share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
}

/* Bottom Sheet */
.share-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  width: 95%;
  max-width: 24.375rem;
  background:#121217;
  border-radius: 1rem 1rem 1rem 1rem;
  padding: 1.5rem 1rem;
  color: #fff;
  transition: 0.35s cubic-bezier(.25,.8,.25,1);
  z-index: 101;
}

.share-sheet.active {
  transform: translateX(-50%) translateY(-150%);

}

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

/* Header */
.share-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
}

.cancel {
  color: var(--cancelbtn);
  font-size: 0.8rem;
  line-height: 1rem;
  cursor: pointer;
}

.share-header h3 {
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: 400;
  color: #fff;
}

/* Card */
.share-card {
  background: #3A3B3C;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  opacity: 0.8;
}

.game-thumb {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  object-fit: cover;
  border:  1px solid #fff;
}

.share-info {
  flex: 1;
  overflow: hidden;
  gap: 0.5rem;
}

.title {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 400;
}

.link {
  font-size: 0.8rem;
  color: #5F7FE2;
}

.copy-btn {
  background: none;
  border: none;
  color: #5F7FE2;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Options */
.share-options {
  display: flex;
  justify-content: space-between;
  padding: 0 0.2rem;
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: 400;
  cursor: pointer;
}

.icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: bold;
}







/* sidebar mobile  */
.open-btn {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  width:100%;
  max-width: 24.375rem;
  height: 100vh;
  background: var(--sidebarbg);
  color: var(--text-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
  z-index: 20;
  box-shadow: var(--sidebarshadow);
}
.offcanvas.offcanvas-left {
  left: -24.375rem;
}
.offcanvas.offcanvas-right {
  right: -24.375rem;
  box-shadow: var(--sidebarshadow);
}
.offcanvas-left.active {
  left: 0;
}
.offcanvas-right.active {
  right: 0;
}
.canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.bottom-area {
  padding-top: 1rem;
}

.bottom-area span {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--whiteheading);
}
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Toggle */
.switch {
  position: relative;
  width: 2.5rem;
  height: 1.3rem;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #555;
  border-radius: 2rem;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  left: 0.15rem;
  top: 0.15rem;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider {
  background: #4f7cff;
}

.switch input:checked + .slider::before {
  transform: translateX(1.2rem);
}
.lang-dropdown {
  position: relative;
}

.lang-selected {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 0.7rem;
  border-radius: 0.4rem;
  cursor: pointer;
}

.flag {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  object-fit: cover;
}

.lang-options {
  position: absolute;
  left: 0;
  right: 0;
  top: 120%;
  background: #0f1c4d;
  border-radius: 0.4rem;
  overflow: hidden;
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.7rem;
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(255,255,255,0.1);
}


.social-row {
  display: flex;
  justify-content: space-between;
}

.social-circle {
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
}

.profile-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  border-bottom: 1px solid var(--sidebarhr);
}

.img-wraper {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
}
.img-wraper img  {
  width: 100%;
  height: 100%;
}


/* ================= MAIN ================= */
.main-content {
  flex: 1;
  background: var(--mainbg);
  padding: 0.5rem 1rem 1rem 1rem;
  min-width:0px;
}
.content-inner {
  display: flex;
  flex: 1;
  gap: 1rem;
  min-width:0px;
}
.col-left {
width: calc(100% - 21rem);
 min-width:0px;
}
.col-right {
  width: 21rem;
   min-width:0px;
}
.gameplay-placeholder {
  
  height: fit-content;
  max-height:90vh;
  
}

.cta-wrapper {
  display: none;
}


.game-action-bar{
  height: 2.5rem;
  background: #0A2575;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  width:100%;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.game-action-bar .logo {
  height: 1.375rem;
}
.action-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;            
}
.action-chip-btn {
  height: 2rem;
  background: var(--actionchipbg);
  display: flex;
  gap: 0.625rem;
  border-radius: 0.25rem;
  padding: 0.438rem 0.5rem;
}
.action-chip-btn span {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.3rem;
}

.suggestions {
  padding: 0.5rem 0rem;
}
.infobar {
gap: 0.5rem;
}

.games-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
}

.game-card {
  width: 6.625rem;
  height: 7.75rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px dashed var(--gamecardbordercolor)
}

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

.content-box {
  background-color: var(--contentbg);
  padding: 1.5rem 1rem;
}
.content-number-list {
  list-style-type: number;
  margin-left: 0rem;
  
  margin-top: 1.5rem;
  color: var(--paracolor);
}
.content-number-list li {
 font-weight: 400;
  line-height: 1.3rem;
  font-size: 0.90rem;
  color: var(--paracolor);
}
.chip-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chips {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: fit-content;
  padding: 0.25rem 0.50rem;
  border-radius: 0.75rem;
  border: 1px solid var(--chipsborder);
  color: var(--contentheading);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1rem;
}




/* ===== GAMEPLAY TWO COLUMN LAYOUT ===== */
.gameplay-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* LEFT COLUMN */
.gameplay-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* GAME SCREEN – IMPORTANT FIX */
.game-screen {
  height: 420px;                 /* 👈 FIXED HEIGHT (Figma like) */
  width: 100%;                   /* only left column width */
  background: #07163d;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #ffffff;
}



/* LIKE CHIP */
.action-chip {
  height: 40px;
  width: 96px;               /* 🔥 fixed like figma */
  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #5F7FE2;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1;

  flex-shrink: 0;
}

.action-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* ICON BUTTONS */
.action-btn {
  width: 40px;
  height: 40px;

  background: #5F7FE2;
  border: none;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;
  cursor: pointer;

  flex-shrink: 0;
}

.action-btn img {
  width: 18px !important;
  height: 18px !important;
  display: block;
  object-fit: contain;
}


.action-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #5F7FE2;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
}





/* icons same box like chip */
.action-icon-box {
  width: 40px;
  height: 40px;
  background: #5F7FE2;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  flex-shrink: 0;
}

.action-icon-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

/* TEXT SECTION */
.game-info {
  background: #05133a;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.game-info h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

/* AD */
.ad-banner {
  height: 90px;
  background: linear-gradient(90deg, #7b2cff, #ff4fa3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* RIGHT COLUMN */
.gameplay-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.like-box {
  background: #05133a;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}

.game-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.side-game {
  height: 90px;
  background: #071c52;
  border-radius: 10px;
}

.tall-ad {
  height: 280px;
  background: linear-gradient(180deg, #2d00ff, #ff4d4d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}



/* fixed-bottom */

.fixed-bottom-menu {
  display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5.25rem;
    position: fixed;
    bottom: 0px;
    background-color: var(--sidebarbg);
    border-top: 1px solid var(--footerbottomborder);
    padding: 0rem 1rem 1.5rem 1rem;
    z-index: 1;
}
.menu-items-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  padding-top: 1rem;
  color: var(--breadcum);
  border-top: 2px solid transparent;
  width: fit-content;
  cursor: pointer;
  font-size: 0.6rem;
  line-height: 0.8rem;
  font-weight: 600;
}
.menu-items-bottom img {
width: 1.5rem;
height: 1.5rem; 
}

.menu-items-bottom.active {
  border-top: 2px solid var(--botttemactive);
  color: var(--botttemactive);
}
.menu-items-bottom.active img {
  filter: var(--filter-white);
  filter: brightness(0) invert(1) contrast(200%);
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--footerbg);
  padding: 1.5rem;
}
.footer-logo {
 height: 2.2rem;
}
.footer-inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  column-gap: 70px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--footerlinktext);
}
.footer-right {
  width: 320px;
}
.subscribe-box {
  display: flex;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.subscribe-box .input-wrapper {
  position: relative;
  display: flex;
  flex: 1;
}
.subscribe-box input {
  flex: 1;
  padding: 0.6rem 0.6rem 0.6rem 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--subscriptionborder);
}
.subscribe-box input::placeholder {
  color: var(--subscriptionborde);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.input-wrapper .input-icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}
.subscribe-box button {
  padding: 0.6rem 1.5rem;
  border: none;
  background: var(--subscriptionbuttonbg);
  color: var(--text-color);
  border-radius: 0.5rem;
  text-align: center;
}
.socials {
  display: flex;
  justify-content: flex-end;
  height: 1.25rem;
  gap: 1.5rem;
}
.socials img {
  height: 100%;
  width: 100%;
}
.footer-bottom {
  margin-top: 1.25rem;
  border-top: 1px solid var(--footerbottomborder);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.copy-right-text {
  color: var(--footerlinktext);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
}
.favourite-active {
    background-color: #ff4d4d !important;
    color: white !important;
}
/* Make dockbar visible above everything */
.dockbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20000;
}


/* ===== Breadcrumb Container ===== */


/* form details */
 
.label {
  font-size:0.8rem;
  line-height: 1rem;
  color: var(--labelcolor);
  padding: 0rem 0rem 0.25rem 0rem;
  display: block;
}
.form-control {
    width: 100%;
    padding: 0.6rem 0.6rem 0.6rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid var(--inputborder);
    min-height: 2.5rem;
    color: var(--inputcolor);
}
.form-control:focus-visible {
    outline: var(--inputoutline) auto 1px;
}
 







/* ================================
   HEADER – INDIA COUNTRY BUTTON
   (Pixel-perfect Figma match)
   ================================ */

/* .country-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 8px 12px;
  background: #2F4C8F;         
  border-radius: 16px;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.country-btn img {
  display: block;
}

.country-btn img:first-child {
  width: 18px;
  height: auto;
}

.country-btn .chevron {
  width: 12px;
  height: auto;
  opacity: 0.9;
}

.country-btn:hover {
  background: #355AA8;
} */



/* ✅ ACTION BAR FINAL (ONLY ONE BLOCK) */

/* @media (min-width: 1201px){
  .game-action-bar{
    margin-left: calc(-1 * ((100vw - 1200px) / 2) - 16px + 200px) !important;
  }
}

.sidebar.collapsed ~ .main-content .game-action-bar{
  margin-left: calc(-1 * ((100vw - 1200px) / 2) - 16px + 64px) !important;
} */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
 
.modal-overlay.show {
  display: flex;
}
 
.modal {
  background: var(--loginmodalbg);
  color: var(--text-color);
  width: 100%;
  max-width: 520px;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
 
/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
 
/* Tabs */
.tabs {
  display: flex;
  border-radius: 8px;
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid var(--tabborder);
 
}
 
.tab {
  flex: 1;
  padding: 0.25rem 0.50rem;
  background: transparent;
  color: var(--tabcolor);
  cursor: pointer;
  border: none;
  min-height: 2.5rem;
}
.tab:first-child {
  border-radius: 0.50rem 0 0 0.50rem;
  border-right: 1px solid var(--tabborder);
}
.tab:last-child {
  border-radius: 0rem 0.50rem 0.50rem 0;
}
 
.tab.active {
  background: var(--tabactivebg);
  color: var(--text-color);
}
 
/* Content */
.tab-content {
  display: none;
}
 
.tab-content.active {
  display: block;
}
 
/* Form */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: end;
}
 
 
.form-grid input {
  width: 100%;
}
 
 
/* KYC */
.kyc-section h4 {
  margin: 8px 0 12px;
  font-size: 14px;
  font-weight: 600;
}
 
.kyc-section select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}
 
/* Upload boxes */
/* Upload before state */
 
/* Upload boxes */
.upload-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
 
.upload-box.single {
  margin-top: 18px;
}
 
 
.upload-input {
  background-color: var(--uploadinput);
  color: var(--inputcolor);
  border-radius: 0.5rem;
  padding: 0.5rem 0.6rem 0.5rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  min-height: 2.5rem;
 
}
 
/* After upload state */
.upload-box {
  background: rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-color);
  padding: 0.5rem 0.6rem 0.5rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid var(--inputborder);
    min-height: 2.5rem;
 
}
 
.upload-box button {
  background:transparent;
  border: none;
  width: 1.37rem;
  height: 1.37rem;
  border-radius: 50%;
  cursor: pointer;
}
.upload-box button img  {
  width: 100%;
}
.upload-wrapper {
  position: relative;
}
 
.hidden {
  display: none;
}

.gameplay-placeholder .game-container canvas{   
    margin: 0 !important;  
    width: 100% !important;   
    height: 100% !important;   
     transform: scale(0.85) !important;   
    transform-origin: top left !important;
}
 #app {
    height: reset !important;
}
 #game-container {
    height: reset !important;
}
.category-card {
text-decoration : none;
} 