.game-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.action-btn {
  padding: 10px 16px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #007bff;
  color: white;
  font-weight: 500;
  transition: 0.2s;
}

.action-btn:hover {
  background: #0056b3;
}

.share-wrapper {
  position: relative;
}

.share-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  display: flex;
  gap: 12px;
}

.share-dropdown a {
  font-size: 22px;
  color: #444;
  text-decoration: none;
}

.share-dropdown a:hover {
  color: #007bff;
}

.share-dropdown.show {
  display: flex;
}

 



/* ======================================================
   GLOBAL / THEME VARIABLES
   ====================================================== */
:root{
  /* Header */
  --nav-h: 64px;
  --nav-bg: #121826;
  --nav-text: #e9eef7;

  /* Rail (left sidebar) */
  --cg-w: 300px;
  --rail-collapsed: 64px;
  --rail-bg: #0f1420;
  --rail-line: #22304a;
  --rail-text: #dfe7ff;
  --rail-hover: #111a2e;
}

/* ======================================================
   BASE / MISC (modal, body, comments)
   ====================================================== */
html, body{ margin:0; }
body{ background:#2C2C2C; color:#FFFFFF; }

/* Report modal */
.report-modal{
  display:none; position:fixed; inset:0; z-index:20;
  padding-top:100px; background:rgba(0,0,0,.4);
}
.report-modal-content{
  background:#fff; color:#000; margin:auto; padding:20px;
  border:1px solid #888; max-width:320px;
}
.close{ color:#aaa; float:right; font-size:28px; font-weight:bold; cursor:pointer; }
.close:hover, .close:focus{ color:#000; text-decoration:none; }

.report-label{
  padding:0 10px; margin-right:5px; border-radius:15px;
  display:inline-block; margin-bottom:8px;
}

/* Article helpers */
.feature-list{ padding:15px 25px; border-left:4px solid #3498db; margin:20px 0; }
.game-card{ border-radius:8px; box-shadow:0 2px 5px rgba(0,0,0,.1); background:radial-gradient(black, transparent); }
.game-title{ font-size:1.3em; color:#a8ffec; margin-bottom:10px; }
.pro-tip{ font-style:italic; padding:10px; border-left:3px solid #f1c40f; }
ul{ padding-left:20px; } li{ margin-bottom:8px; }

/* Comments */
.comments-section{ margin-top:var(--section-spacing, 24px); }
.comment{
  padding:1rem; border-bottom:1px solid #2a3a4a; margin-bottom:1rem; color:#e0e0e0;
}
.comment-header{ display:flex; justify-content:space-between; margin-bottom:.5rem; }
.comment-author{ font-weight:bold; color:#0077ff; }
.comment-date{ color:#aaa; font-size:.9rem; }
.comment-text{ line-height:1.5; }
.comment-form{
  margin-top:var(--section-spacing, 24px);
  padding:1.5rem; background:#0f1923; border-radius:8px; border:1px solid #2a3a4a;
}
.form-group{ margin-bottom:1rem; }
.form-group label{ display:block; margin-bottom:.5rem; font-weight:600; color:#e0e0e0; }
.form-group input, .form-group textarea{
  width:100%; padding:.8rem; border:1px solid #2a3a4a; border-radius:4px;
  font:inherit; box-sizing:border-box; background:#1a2a3a; color:#fff;
}
.form-group textarea{ min-height:100px; resize:vertical; }
.submit-btn{
  background:#416d93; color:#fff; border:0; padding:.8rem 1.5rem; border-radius:4px;
  cursor:pointer; font-weight:600; transition:.2s; width:100%;
}
.submit-btn:hover{ background:#003a66; }

/* ======================================================
   HEADER (cg-nav)
   Fixed top bar with hamburger + brand + search
   ====================================================== */
.cg-nav{
  position:fixed; inset:0 0 auto 0; height:var(--nav-h);
  z-index:2000;  /* always above rail & grid */
  display:flex; align-items:center; justify-content:space-between;
  padding:0 14px;
  background:var(--nav-bg);
  box-shadow:0 1px 0 rgba(0,0,0,.35);
}

/* Left chunk: hamburger + brand */
.cg-left{ display:flex; align-items:center; gap:14px; }
.cg-brand{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--nav-text); text-decoration:none; font-weight:800; font-size:18px; letter-spacing:.2px;
}
.cg-logo{ width:28px; height:28px; border-radius:8px; display:block; }

/* Hamburger (CrazyGames-like) */
.cg-hamburger{
  position:relative;  align-items:center; justify-content:center;
  width:36px; height:36px; border:0; background:transparent; cursor:pointer; border-radius:10px;
}
.cg-hamburger:hover{ background:#1a2336; }
.cg-hb{ display:block; width:20px; height:2px; background:#fff; border-radius:2px; }
.cg-hb + .cg-hb{ margin-top:5px; }
/* tiny left caret like CG */


/* Header search (pill input) */
.cg-search{ position:relative; display:flex; align-items:center; min-width:260px; }
@media (min-width:1200px){ .cg-search{ min-width:380px; } }

.cg-input--nav{
  -webkit-appearance:none; appearance:none;
  height:36px; line-height:36px; width:100%;
  padding:0 42px 0 14px; /* space for icon button at right */
  border-radius:9999px;
  border:1px solid #2a3856; background:#0c1220; color:#e9eef7; font-size:14px;
  outline:none; transition:border .12s ease, box-shadow .12s ease;
}
.cg-input--nav::placeholder{ color:#8ca0bd; }
.cg-input--nav:focus{ border-color:#2f4a76; box-shadow:0 0 0 2px rgba(142,203,255,.15); }

.cg-search > button{
  position:absolute; right:6px; top:50%; transform:translateY(-50%);
  width:28px; height:28px; border:0; border-radius:8px;
  background:transparent; color:#a9b6cb; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
}
.cg-search > button:hover{ color:#dfe8ff; background:#182338; }

/* Layout offset so content isn’t hidden under fixed header */
.cg-main{ padding-top:var(--nav-h); }

/* ======================================================
   LEFT RAIL (always visible on desktop; expands on hover)
   ====================================================== */
.cg-rail{
  position:fixed; top:var(--nav-h); left:0; bottom:0;
  z-index:999;  /* under header */
  width:var(--rail-collapsed);
  background:var(--rail-bg);
  border-right:1px solid var(--rail-line);
  transition:width .22s ease;
  contain:layout paint;
}
.cg-rail__inner{
  height:100%; overflow-y:auto; padding:10px 8px;
  scrollbar-width:thin; scrollbar-color:#2c3a56 transparent;
}
.cg-rail__inner::-webkit-scrollbar{ width:8px; }
.cg-rail__inner::-webkit-scrollbar-thumb{ background:#2c3a56; border-radius:999px; }

/* Expand rail on hover/focus */
.cg-rail:hover,
.cg-rail:focus-within{ width:var(--cg-w); }

.cg-rail__brand{
  display:flex; align-items:center; gap:10px;
  height:48px; padding:6px 10px; border-radius:12px;
  color:var(--rail-text); text-decoration:none;
}
.cg-rail__logo{
  width:32px; height:32px; border-radius:10px;
  background:linear-gradient(135deg,#8a5cff,#5bd1ff);
  display:inline-block;
}

.cg-rail__list{ list-style:none; margin:8px 0; padding:0; }
.cg-rail__list a{
  display:flex; align-items:center; gap:12px;
  height:44px; padding:0 10px; border-radius:12px;
  color:var(--rail-text); text-decoration:none;
  white-space:nowrap; overflow:hidden;
}
.cg-rail__list a:hover{ background:var(--rail-hover); }
.cg-rail__list a.active{ background:#142246; border:1px solid #2d4d8e; }
.cg-rail__list .bi{ font-size:20px; width:28px; min-width:28px; text-align:center; }

/* Labels fade in when expanded */
.cg-rail__label{
  opacity:0; transform:translateX(-6px);
  transition:opacity .18s ease, transform .18s ease;
  color:#e9eef7; font-weight:600;
}
.cg-rail:hover .cg-rail__label,
.cg-rail:focus-within .cg-rail__label{ opacity:1; transform:translateX(0); }

.cg-rail__sep{ height:1px; background:var(--rail-line); margin:8px 10px; }

/* Keep content clear of rail on desktop */
.cg-main{ margin-left:var(--rail-collapsed); transition:margin-left .22s ease; }
@media (max-width: 992px){
  .cg-rail{ display:none; }
  .cg-main{ margin-left:0; }
}

/* Expand rail when JS adds .hover-open (desktop) */
.cg-rail.hover-open { width: var(--cg-w); }

/* ======================================================
   SEARCH SUGGEST DROPDOWN (floating under header input)
   ====================================================== */
.cg-suggest{
  position:fixed; /* avoids clipping by header/parents */
  z-index:2100;   /* above header (2000) */
  background:#0f1420; color:#e9eef7;
  border:1px solid #22304a; border-radius:10px;
  box-shadow:0 12px 36px rgba(0,0,0,.35);
  width:320px; max-height:300px; overflow-y:auto;
  display:none;
}
.cg-suggest-item{
  display:flex; align-items:center; gap:8px;
  padding:8px 10px; cursor:pointer; border-bottom:1px solid rgba(255,255,255,.04);
}
.cg-suggest-item:last-child{ border-bottom:0; }
.cg-suggest-item:hover, .cg-suggest-item.active{ background:#142246; }
.cg-suggest-thumb{ width:36px; height:36px; border-radius:6px; object-fit:cover; }
.cg-suggest-title{ font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* ======================================================
   MOBILE (optional slide-in rail if you wire it in JS)
   ====================================================== */
@media (max-width: 992px){
  .cg-rail{
    display:block; /* if you want a mobile slide-in, keep block and position off-canvas */
    left:-280px; width:280px; transition:left .25s ease; height:calc(100vh - var(--nav-h));
    top:var(--nav-h);
  }
  .cg-rail.is-open{ left:0; }
  #cgOverlay{ position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:1500; display:none; }
  #cgOverlay.is-open{ display:block; }
}

/* Optional: pause rail expansion while searching to avoid “flap” */
body.search-focused .cg-rail{ width:var(--rail-collapsed) !important; }




body {
  font-family: 'Montserrat', sans-serif;
  color: rgba(225, 225, 225, 0.6);
  color: white;
  background-color: #211328;
}
body.login-body {
  background-color: #211328;
}
img {
  max-width: 100%;
  height: auto;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
.top-nav {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.top-nav a {
  color: #fff;
}
.nav-link {
  font-weight: 500;
}
.navbar-nav {
  margin-right: 20px;
}
.dropdown-menu {
  background: #002432;
}
.dropdown-menu .dropdown-item {
  padding: 15px 25px;
}
ul.user-links {
  background: #3b3255;
  z-index: 20;
}
ul.user-links li {
  color: unset;
}
.search-bar {
  max-width: 200px;
  margin-left: auto;
  position: relative;
}
.search-bar input.search {
  text-indent: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px!important;
  border: none;
  height: 50px;
  margin-bottom: 0;
}
.search-bar .bi-search {
  position: absolute;
  color: #fff;
  top: 14px;
  left: 15px;
}
.search-bar .form-control::placeholder {
  color: #fff;
  opacity: 0.5;
}
.category-description {
  padding: 20px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  border-left-width: 5px;
  border-radius: 3px;
  border-left-color: #5bc0de;
  margin-bottom: 40px;
}
.pagination-wrapper {
  margin-top: 20px;
}
.pagination .page-link {
  background: #7f598e;
  color: #fff;
  border: 0;
  padding: 10px 18px;
}
.page-link:hover {
  background: #574260;
}
.pagination .disabled .page-link {
  background: #503759;
}
.single-title, .page-title {
  font-size: calc(1.3rem + .6vw);
  color: #fff;
}
.item-title {
  color: #fff;
  margin-bottom: 30px;
}
.section-title {
  margin-bottom: 30px;
  color: #fff;
  font-weight: bold;
}
.grid-container {
  margin-top: 15px;
  margin-bottom: 15px;
}
.img-rounded {
  border-radius: 20%;
}
.small-thumb {
  width: 100%;
}
.list-info {
  color: rgba(255, 255, 255, 0.5);
}
.list-title {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-category {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.text-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.game-tag-list {
  display: flex;
  flex-wrap: wrap;
}
.tag-item {
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 8px;
  margin-top: 8px;
  border-radius: 8px;
  color: #fff;
}
.game-item {
  display: flex;
  flex-wrap: wrap;
}
.grid-2 .game-item:hover, .grid-3 .game-item:hover, .list-vertical:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.list-game {
  width: 100%;
}
.list-game-x:hover {
  padding: 10px;
  background-color: #eef0f2;
  border-radius: 10px;
  scale: 1.2;
}
.list-rating {
  font-size: 14px;
}
.gamelist-vertical-widget .list-thumbnail {
  max-width: 80px;
  float: left;
  margin-right: 15px;
}
.grid-1 .list-game {
  margin-bottom: 40px;
}
.grid-1 .list-info {
    overflow: hidden;
    margin: 0.35714em;
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    position: relative;
    bottom: 65px;
    margin-bottom: -53px;
    opacity: 0;
    font-weight: 700;
    font-size: 18px;
}
.grid-2 {
  margin-bottom: 20px;
}
.grid-2 .list-thumbnail {
  max-width: 100px;
  float: left;
  margin-right: 15px;
}
.grid-2 .list-title {
  font-size: 20px;
  font-weight: 500;
}
.grid-3 .list-game {
  background:  rgba(225, 225, 225, 0.15);
  border-radius: 15px;
}
.grid-3 .list-thumbnail {
  overflow: hidden;
  margin: 0;
}
.grid-3 .list-title {
  font-size: 18px;
  font-weight: 500;
}
.grid-3 .list-category, .gamelist-vertical-widget .list-category {
  font-style: italic;
  opacity: 0.7;
}
.grid-3 .list-game {
  overflow: hidden;
}
.grid-3 .list-info {
  padding: 10px;
}
.grid-3 {
  margin-bottom: 20px;
}
@media(hover: hover) and (pointer: fine) {
  .grid-1 .list-game:hover > .list-info {
    transition: all 0.5s ease;
  }
  .list-thumbnail:hover {
    opacity: 1;
    transition: all 0.5s ease;
  }
}
.list-1 .list-thumbnail {
  max-width: 90px;
  margin-right: 15px;
}
.list-1 .list-thumbnail img {
  border-radius: 50%;
}
.row-list-1 {
  position: relative;
}
.list-1-wrapper {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 70px;
}
.list-1-wrapper .game-item {
  display: inline-block;
  text-align: center;
}
.footer {
  padding: 40px 0;
}
.border-line {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.dsb-panel {
  float: right;
}
.footer-copyright {
  background: #001a24;
}
.header-area {
  margin-bottom: 40px;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.masthead-title {
  color: #fff;
}
.masthead-description {
  max-width: 800px;
  margin: 0 auto;
}
.masthead-description h3 {
  font-size: 20px;
}
ul.list-categories {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
ul.list-categories li {
  padding: 10px 15px;
  background-color: #c9d2d5;
  border-radius: 15px;
  margin-right: 12px;
  margin-bottom: 16px;
  color: #fff;
}
.widget .category-wrapper {
  float: none;
  margin-right: 0;
}
.widget ul.category-item {
  width: 100%;
  list-style: none;
  padding-left: 0;
}
.category-item li {
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
}
.category-item li:hover {
  background: rgba(255, 255, 255, 0.15);
}
ul.category-list-wrapper {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.category-list-wrapper .cat-item {
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 20px;
  margin-bottom: 16px;
  width: 155px;
  color: #4f5053;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
ul.category-list-wrapper .cat-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cat-name {
  color: #fff;
  font-weight: bold;
}
.cat-game-amount {
  color: rgba(255, 255, 255, 0.3);
  font-weight: normal;
}
.icon-category {
  margin-right: 8px;
}
.category-list-global .icon-category {
  float: left;
}
ul.category-list-game .icon-category {
  float: none;
}
ul.category-list-game {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.category-list-game .cat-item {
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 20px;
  margin-bottom: 16px;
  color: #4f5053;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
ul.category-list-game .cat-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cat-info {
  margin-top: 5px;
  color: #fff;
  font-weight: bold;
}
.game-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 18px 18px 18px;
  display: flex;
  flex-wrap: wrap;
}
.header-left {
  margin: 10px 0;
}
.header-right {
  margin-left: auto;
  text-align: right;
}
.header-right .btn, .header-right .social-icon {
  margin-top: 10px;
}
.game-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 600px;
}
.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.widget-title {
  margin-bottom: 20px;
  color: #fff;
}
.btn-default {
  border: 1px solid #bdc0c1;
  background-color: #fff;
}
.b-left {
  position: absolute;
  top: 20px;
}
.b-right {
  position: absolute;
  top: 20px;
  right: 10px;
}
.btn-primary {
  background-color: #01b6ff;
  border-color: #13a5df;
}
@media only screen and (max-width: 992px) {
  body {
    background-size: contain;
  }
  .search-bar {
    max-width: 100%;
  }
  .nav-item  {
    padding: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .top-user {
      width: 80px;
      margin: 10px;
  }
  .leaderboard-cell.user-xp {
    margin-top: 12px;
    position: absolute;
    right: 20px;
  }
  .leaderboard-cell.rank {
    display: none;
  }
  .post-media .post-thumb {
    float: none;
    overflow: unset;
    margin-left: 0;
    margin-bottom: 20px;
    width: unset;
  }
  .post-media .post-thumb img {
    width: 100%;
    height: auto;
  }
}
  
.dropdown-icon {
  display: inline-block;
  margin-left: .455em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.btn-load-more {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 50px;
  border-radius: 40px;
}
.b-load-more {
  margin-bottom: 40px;
}
.btn-load-more:hover {
  background: rgba(255, 255, 255, 0.05);
}
.header-right .btn-capsule, .header-right .btn-share {
  margin-left: 10px;
}
.btn-circle {
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 15px;
  color: #fff;
  border-radius: 40px;
}
.btn-capsule {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  color: #fff;
  border-radius: 40px;
}
.btn-capsule:hover, .btn-capsule.active, .btn-circle:hover {
  background: rgba(255, 255, 255, 0.5);
}
.b-white {
  background: #fff;
  color: #000000;
  font-size: 18px;
}
.b-login {
  margin-left: 10px;
}
.star-on {
  color: #FFA73F;
  margin-right: 4px;
}
.star-off {
  color: #5C5B5F;
  margin-right: 4px;
}
.b-icon {
  margin-right: 8px;
}
.content-wrapper {
  margin-top: 40px;
}
.highlight-text {
  color: #fff;
}
.list-vertical {
  margin-bottom: 20px;
}

/* COMMENTS */

.jquery-comments .textarea-wrapper .textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 8px;
}
.comments-container {
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
.jquery-comments ul.navigation {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.jquery-comments ul.navigation li.active, .jquery-comments ul.navigation li:hover {
  color: unset;
}
.jquery-comments .textarea-wrapper::before, .jquery-comments .textarea-wrapper::after {
  display: none;
}
.jquery-comments .textarea-wrapper .control-row > span {
  padding: 10px 20px;
  border-radius: 8px;
}

/* END COMMENTS */

/* BLOG / POST */

.post-title {
  font-size: 25px;
}
.post-thumb {
  float: right;
  width: 200px;
  overflow: hidden;
  margin-left: 20px;
}
.post-thumb img {
  height: 180px;
  max-width: unset;
}
.post-item {
  display: flex;
}
.post-media {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 25px;
}
.post-title a {
  color: #fff;
}
.post-meta {
  font-style: italic;
  margin-bottom: 5px;
}
.page-content {
  margin-top: 40px;
}
/* END BLOG / POST */

/* USER PROFILE */

.user-page {
  background: unset;
}
.user-page .section {
  background-color: rgba(255, 255, 255, 0.1);
}
.profile-comment-item {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: unset;
}
.user-page .comment-text {
  color: #fff;
}
.user-page .comment-date.text-secondary {
  color: unset!important;
}
input.form-control {
  margin-bottom: 10px;
}

/* USER PROFILE */

#mobile-back-button {
    display: none;
    align-items: center;
    position: fixed;
    z-index: 101;
    top: 100px;
    left: 0;
    width: 56px;
    height: 46px;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 24%) 0px 16px 32px;
    border-radius: 0px 16px 16px 0px;
    overflow: hidden;
    cursor: pointer;
}
#mobile-back-button i {
  color: #94a2a2;
  font-size: 30px;
  margin-left: 14px;
}
.btn-left, .btn-right {
  z-index: 1;
}

/* LOGIN & REGISTER */

.login-form, .register-form {
  background: rgba(255, 255, 255, 0.1);
}

/* */

.mobile-thumb-play img {
  width: 100%;
  opacity: 0.7;
}
.mobile-thumb-play {
  background: #000000;
  overflow: hidden;
}
#mobile-play {
  position: relative;
}
#mobile-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 100px;
  color: #fff;
  transform: translate(-50%, -50%);
}
.game-container {
  overflow: hidden;
  border-radius: 18px;
}
.color-red {
  background: rgba(238, 19, 39, 0.4);
}
.top-3 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}
.top-user {
    display: inline-block;
    text-align: center;
    margin: 15px;
    position: relative;
    white-space: nowrap;
}
.top-number {
    width: 40px;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 20%;
    transform: translate(-50%, -50%);
}
.top-avatar img {
    border-radius: 50%;
    display: block;
}
.rank-1 .top-avatar img {
    width: 120px;
}
.leaderboard-table {
    clear: both;
    display: block;
    width: 100%;
}
.leaderboard-row {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 15px;
    margin-top: 15px;
    white-space: nowrap;
}
.leaderboard-cell {
    vertical-align: middle;
    padding: 0 10px;
    display: inline-block;
}
.leaderboard-user-avatar img {
    width: 50px;
    border-radius: 50%;
    display: block;
}
.leaderboard-cell.username {
    font-weight: bold;
    min-width: 160px;
}
.leaderboard-cell.rank {
    float: right;
}
.level-badge {
    float: left;
    margin-right: 10px;
}
.top-player-wrapper {
  margin-bottom: 20px;
}
.gamelist-widget .list-game {
  margin-bottom: 20px;
}

@import url('https://fonts.googleapis.com/css?family=Acme|Montserrat');

body {
    font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #FBFBFB;

}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Acme', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white;
}


.wrapper {
    max-width: 1400px;
}

.main-bg-color {
    background-color: #e7e7e7;
}

.game-list-item {
    margin-left: 7px;
    margin-right: 7px;
    width: 200px;
}

.game-list-item .game-img {
    width: 200px;
    height: 170px;
}

.game-list-item .game-name {

}

.google-ads {
    margin: 0 auto;
    text-align: center;
}

.google-ads1 {
    margin: 5px;
    width: 336px;
    height: 280px;
    display: inline-block;
}

.google-ads2 {
    margin: 5px;
    width: 336px;
    height: 280px;
    display: inline-block;
}

.google-ads-type-2 {
    margin: 0 auto;
    text-align: center;
    width: 970px;
    height: auto;
    display: inline-block;
}

.google-ads-type-2-banner {
    max-width: 970px;
    height: auto;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;

}

.cpmstar-bottom {
    max-width: 300px;
    height: auto;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

@media screen and (max-width: 1200px) {
    .cpm_right {
        display: none;
    }
}


@media screen and (max-width: 800px) {
    .google-ads1 {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .google-ads2 {
        display: none;
    }


    .google-ads-type-2 {
        margin: 0 auto;
        text-align: center;
        width: 100%;
        height: auto;
        display: inline-block;
    }

    .google-ads-type-2-banner {
        width: 300px;
        height: auto;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 5px;

    }

    .cpm_left {
        display: none;
    }

    
    
}

.footer_black{
    color: black;
}

nav.navbar.navbar-default {
  display: none;
}
