/* ---- Base ---- */
hr { border-color: #DADADA; }
body { font-family: 'Open Sans', sans-serif !important; font-size: 16px; background-color: #F0F0F0; }

/* ---- Footer ---- */
.eg-footer {
  background-color: #000;
  padding: 20px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---- Navbar ---- */
.navbar {
  transition: padding 0.3s ease;
  background: linear-gradient(180deg, #1c1c1c 0, #0d0d0d 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.7);
  border: 0;
}

.navbar img { margin-right: 30px; }

.navbar .navbar-nav > .active > a {
  background-color: rgba(0,0,0,0.5);
  color: black;
}

.navbar .navbar-nav > li > a {
  font-weight: bold;
  color: white;
  border: 4px solid transparent;
  border-radius: 10px;
  transition: all 0.15s;
}

.navbar .navbar-nav > li > a:hover {
  color: white;
}

.nav-link {
  color: rgba(255,255,255,1) !important;
}

@media screen and (min-width: 993px) {
  .navbar img { height: 44px; }
  .navbar { padding: 12px 24px; }
  .navbar .navbar-brand,
  .navbar .navbar-nav > li > a {
    font-weight: bold;
    color: white;
    margin-left: 20px;
  }
  .navbar .navbar-nav > li > a:hover {
    background-color: transparent;
    border-radius: 10px;
    color: white;
    border: 4px solid white;
  }
}

@media screen and (max-width: 992px) {
  .navbar { padding: 8px 16px; }
  .navbar img { height: 38px; }
  .navbar .navbar-nav > li > a:hover {
    background-color: transparent;
    color: white;
    border: 4px solid white;
  }
}

/* Navbar dropdown */
.navbar .navbar-nav .dropdown-menu {
  border-radius: 10px;
  background: linear-gradient(-145deg, rgba(190,190,190,0.92) 0, rgba(90,90,90,0.92) 50%, rgba(10,10,10,0.92) 51%, rgba(10,10,10,0.92) 100%);
  min-width: 280px;
}

.navbar .navbar-nav .dropdown-menu .dropdown-item {
  color: white;
  font-weight: bold;
  border-bottom: thin solid rgba(255,255,255,0.2);
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar .navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.15s;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

@media screen and (min-width: 767px) {
  .navbar-right { margin-right: 0; }
}

/* ---- Utility ---- */
.no-gutter {
  padding-right: 0;
  padding-left: 0;
}

/* ---- Jumbo row ---- */
.gradient {
  background: transparent;
  background: radial-gradient(rgba(255,255,255,0.5) 5%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.0) 100%);
}

.jumboRow h1 {
  font-size: 80px;
  color: black;
  font-weight: bold;
  -webkit-text-stroke: 3px rgba(255,255,255,0.1);
}

@media screen and (max-width: 767px) {
  .jumboRow h1 { font-size: 40px; }
}

.jumboRow hr {
  height: 3px;
  border: 0;
  border-top: 3px solid rgba(255,255,255,0.1);
  max-width: 500px;
}

.jumboRow { margin-bottom: -220px; padding-top: 160px; padding-bottom: 340px; }
@media screen and (max-width: 1199px) { .jumboRow { padding-top: 120px; padding-bottom: 260px; } }
@media screen and (max-width: 991px)  { .jumboRow { padding-top: 90px;  padding-bottom: 220px; } }
@media screen and (max-width: 767px)  { .jumboRow { margin-bottom: -80px; padding-top: 80px; padding-bottom: 100px; } }

/* ---- Game cards (home page) ---- */
div [class*="GameCardCol"] {
  background-color: transparent;
  transition: background-color 0.4s;
}

div [class*="GameCardCol"]:hover {
  background-color: white;
  border-radius: 10px;
  transition: background-color 0.4s;
  box-shadow: 3px 3px 20px 10px rgba(0,0,0,0.11);
}

.fitBackgroundImage {
  height: 100%;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.cardImageContainer {
  height: 400px;
  border-radius: 5px 5px 2px 2px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gameCard {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media screen and (min-width: 767px) {
  .gameCardDesription {
    max-height: 150px;
    min-height: 150px;
    margin-top: 10px;
  }
}

.GameCardCol {}

.btn-default {
  border-radius: 20px;
  background-color: transparent;
}

/* ---- Screenshot thumbnails ---- */
.animatedThumbContainer {
  width: 100%;
  height: 200px;
  min-height: 200px;
  position: relative;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
  vertical-align: top;
}

.animatedThumbContainer div {
  transition: all 0.5s ease-in-out;
}

.animatedThumbContainer:hover div {
  transition: all 0.5s ease-in-out;
  transform: scale3d(1.2, 1.2, 1);
}

.animatedThumbFitBackgroundImage {
  height: 100%;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  -webkit-filter: grayscale(0.5);
}

.thumbContainer {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  vertical-align: top;
}

animatedThumbCaption {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  text-align: center;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: table;
}

animatedThumbCaption div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: 20px;
  opacity: 0;
  color: #2c3e50;
  text-transform: uppercase;
}

animatedThumbCaption:hover div { opacity: 1; top: 0; }

.animatedThumbContainer:hover animatedThumbCaption {
  background: rgba(255,255,255,0.1);
  transition: all 0.5s ease-in-out;
}

/* ---- Download buttons ---- */
[class*="BtnDownload"] {
  margin-bottom: 10px;
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: rgba(255,255,255,0.9);
  text-overflow: clip;
  background-color: rgba(190,190,190,1);
  background-position: 50% 50%;
  background-clip: border-box;
  background-size: auto auto;
  box-shadow: 0px 0px 0 0 #a3a3a3;
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.4;
}

[class*="BtnDownload"]:hover {
  box-shadow: 0 0 18px 3px rgba(0,0,0,0.3);
  background-color: rgba(170,170,170,1);
}

[class*="BtnDownload"]:active { background-color: rgba(170,170,170,1); }

.BtnDownload-Windows::before {
  content: "\f17a  \f108";
  font-family: FontAwesome;
  float: left;
  font-size: 35px;
  padding-right: 10px;
  background: -webkit-linear-gradient(rgb(0,173,239), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.BtnDownload-Windows::after { content: "Download For \A Windows"; white-space: pre; }

.BtnDownload-iOS::before {
  content: "\f179";
  font-family: FontAwesome;
  float: left;
  font-size: 35px;
  padding-right: 10px;
  background: -webkit-linear-gradient(white, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.BtnDownload-iOS::after { content: "Download For \A iOS"; white-space: pre; }

.BtnDownload-Android::before {
  content: "\f17b";
  font-family: FontAwesome;
  float: left;
  font-size: 35px;
  padding-right: 10px;
  background: -webkit-linear-gradient(#A4C639, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.BtnDownload-Android::after { content: "Download For \A Android"; white-space: pre; }

/* ---- 5-column grid for screenshots ---- */
@media (min-width: 576px)  { .col-sm-15  { flex: 0 0 20%; max-width: 20%; } }
@media (min-width: 768px)  { .col-md-15  { flex: 0 0 20%; max-width: 20%; } }
@media (min-width: 992px)  { .col-lg-15  { flex: 0 0 20%; max-width: 20%; } }
@media (min-width: 1200px) { .col-xl-15  { flex: 0 0 20%; max-width: 20%; } }
