/*--------------------------------------------------------------
# Basics
--------------------------------------------------------------*/
html {
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
ul {
  list-style: none;
}
textarea,
input,
a,
button {
  outline: none;
}
.clearfix {
  position: relative;
  clear: both;
}
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper img {
  max-width: 65%;
  height: auto;
}
/*--------------------------------------------------------------
# Typography & Theme
--------------------------------------------------------------*/
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 1px;
}
a {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
a:hover,
a:visited,
a:focus,
a:active,
button:hover,
button:visited,
button:active,
button:focus {
  text-decoration: none !important;
  outline: none !important;
}
::selection {
  background: #f8d52d; /* Fortnite Yellow */
  color: #1a1a1a;
  text-shadow: none;
}
::-moz-selection {
  background: #f8d52d; /* Fortnite Yellow */
  color: #1a1a1a;
  text-shadow: none;
}

/*--------------------------------------------------------------
# Main Layout & Header
--------------------------------------------------------------*/
.cm-d {
  background-color: #1e1f2f; /* Dark Purple/Blue Background */
  color: #ffffff;
}
header {
  position: relative;
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(145deg, #7b4afa, #3d9bff); /* Fortnite Purple/Blue Gradient */
  border-bottom: 5px solid #f8d52d;
}
#header-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.header-title {
  font-size: 4em;
  font-weight: 900;
  margin: 10px 0;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
.header-subtitle {
  margin: 0;
  font-size: 1.3em;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Sections & Titles
--------------------------------------------------------------*/
.featured-section {
  position: relative;
  padding: 50px 0 0px 0;
}
.section-title-wrapper h3 {
  text-transform: uppercase;
  font-size: 1.8em;
  position: relative;
  padding-left: 20px;
  color: #f8d52d;
}
.section-title-wrapper h3:before {
  content: '';
  height: 100%;
  left: 0;
  width: 8px;
  border-radius: 4px;
  display: block;
  position: absolute;
  top: 0;
  background-color: #f8d52d; /* Fortnite Yellow */
}
.featured-section .container {
  max-width: 900px;
}

/*--------------------------------------------------------------
# Sliders & Cards
--------------------------------------------------------------*/
.slick-slide {
  margin: 0 15px;
}
.slick-list {
  margin: 0 -15px;
  padding: 20px 0;
}
.featured-app-slider-item {
  text-align: center;
  padding: 20px;
  cursor: pointer;
  border-radius: 12px;
  background-color: #2a2c44; /* Darker Card BG */
  border: 2px solid #3c4069;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.featured-app-slider-item:hover {
  transform: translateY(-5px);
  border-color: #3d9bff; /* Blue Accent */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.featured-app-slider-item-img {
  border-radius: 22px; /* Squircle shape */
  display: table;
  margin: 0 auto;
  max-width: 100px;
  border: 3px solid #3c4069;
}
.featured-app-slider-item-name {
  margin: 15px auto 0 auto;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.1em;
  color: #fff;
}
.featued-app-slider-item-hidden-meta {
  display: none !important;
}
.listing-section {
  position: relative;
  min-height: 85vh;
  padding: 50px 0;
}
.listing-section .container {
  max-width: 900px;
}
.listing-section .section-title-wrapper {
  margin-bottom: 40px;
}
.listing-content .row {
  margin: 0 -10px;
}
.listing-content .listing-item-wrapper {
  padding: 0 10px;
  margin-bottom: 20px;
}
.listing-item {
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 15px 25px;
  cursor: pointer;
  border-radius: 12px;
  background-color: #2a2c44; /* Darker Card BG */
  border: 2px solid #3c4069;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.listing-item:hover {
  transform: translateY(-5px);
  border-color: #7b4afa; /* Purple Accent */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.listing-item .listing-item-left {
  position: relative;
  width: 100px;
  float: left;
  padding-right: 15px;
}
.listing-item .listing-item-right {
	position: relative;
	width: calc(100% - 100px);
	float: left;
	padding-left: 15px;
}
.listing-item-img {
  border-radius: 22px; /* Squircle shape */
}
.listing-item-auos {
	display: flex;
	align-items: center;
}
.listing-item-os {
	margin-left: auto;
}
.listing-item-os i {
	font-size: 1.2em;
}
.listing-item-os i.imr {
	margin-right: 3px;
}
.listing-item-by {
	line-height: 1;
	font-size: 0.7em;
}
.listing-item-name-rating-wrapper {
	margin: 4px 0 7px 0;
	display: flex;
	align-items: center;
}
.listing-item-name {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.6em;
  color: #fff;
  line-height: 1;
}
.listing-item-rating {
	display: inline-flex;
	position: relative;
	padding-left: 0;
	margin-left: 10px;
	align-items: center;
}
.listing-item-rating .material-icons-two-tone {
  color: #f8d52d; /* Yellow for stars */
  filter: none;
}
.listing-item-rating-separator, .aspr-sep {
  display: none;
}
.listing-item-about {
  color: #a6b0cf;
  font-size: 0.9em;
  line-height: 1.4;
	font-weight: 400;
}
.listing-item-rating-val, .listing-item-by, .listing-item-os i {
  color: #a6b0cf;
}
.listing-item-by-val {
  color: #3d9bff; /* Blue Accent */
  font-weight: 700;
}

/*--------------------------------------------------------------
# Forms & Modals
--------------------------------------------------------------*/
.search-input-wrapper {
	position: relative;
}
.search-input {
  width: 100%;
  height: 45px;
  padding: 0 20px 0 55px;
  font-size: 1em;
  border-radius: 50px;
  border: 2px solid #3c4069;
  background: #2a2c44;
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input:focus {
  border-color: #f8d52d;
  box-shadow: 0 0 15px rgba(248, 213, 45, 0.3);
}
.search-input::placeholder {
  color: #a6b0cf;
  opacity: 1;
}
.search-input-wrapper span.material-icons-two-tone {
  position: absolute;
  font-size: 1.4em;
  top: 12px;
  left: 20px;
  color: #7b4afa;
}
.mfp-bg {
    background: #12121d;
    opacity: 0.9;
}
.step-container, .proccessing-wrapper {
  max-width: 440px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  background-color: #2a2c44;
  border: 2px solid #7b4afa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.step-exit {
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
}
.step-exit .material-icons-two-tone {
  font-size: 2em;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.step-exit:hover .material-icons-two-tone {
    opacity: 1;
}
.step-icon-wrapper {
	margin: 0 auto 20px auto;
	text-align: center;
}
.app-step-icon {
    border-radius: 22px;
    max-width: 100px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#app-step-title {
    font-size: 2em;
    margin: 0 auto 5px auto;
}
.step-proccesing-content {
    border-top: 2px solid #3c4069;
    margin-top: 20px;
    padding-top: 20px;
}
#s-p-c-title {
    color: #f8d52d; /* Yellow */
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.5em;
    text-align: center;
	margin: 0 auto 3px auto;
}
#s-p-c-msg {
	font-size: 1em;
	text-align: center;
}
.s-p-c-btn-wrapper {
	margin: 20px auto 0 auto;
}
.s-p-c-btn {
  width: 100%;
  padding: 15px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.4em;
  letter-spacing: 1px;
  cursor: pointer;
  max-width: 280px;
  margin: 20px auto 0 auto;
  color: #1a1a1a;
  text-align: center;
  background-color: #f8d52d; /* Yellow */
  border: none;
  box-shadow: 0 4px 0 #c8ab2a;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.s-p-c-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #c8ab2a;
}
.s-p-c-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c8ab2a;
}
#proccessing-outer-wrapper {
  background: none;
}
.proccessing-loader {
    text-align: center;
	margin: 0 auto 5px auto;
}
.proccessing-loader span.material-icons-two-tone {
    font-size: 7em;
    color: #7b4afa;
    animation: fa-spin 2s infinite linear;
}
@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.proccessing-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.2em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  text-align: center;
  color: #a6b0cf;
}
.proccessing-msg {
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    color: #fff;
}
.proccessing-loadbar {
    width: 100%;
    height: 20px;
    background: #1e1f2f;
    border-radius: 10px;
    margin-top: 30px;
    border: 2px solid #3c4069;
    overflow: hidden;
    position: relative;
}
.proccessing-loadbar div {
    background: linear-gradient(90deg, #7b4afa, #3d9bff);
    height: 100%;
    border-radius: 8px;
    font-size: 7px;
	text-indent: 9999px;
	overflow: hidden;
}
footer {
  text-align: center;
  padding: 20px;
  background: #1e1f2f;
  color: #6c757d;
  font-size: 0.9em;
}
footer p {
	margin: 0 auto;
	max-width: 600px;
}
/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media screen and (max-width: 575px) {
  .header-title {
    font-size: 2.8em;
  }
  .listing-item-name {
    font-size: 1.3em;
  }
  .listing-item-by {
		font-size: 0.6em;
	}
	.listing-item-about {
		font-size: 0.8em;
	}
}
@media screen and (max-width: 480px) {
  header { padding: 30px 0; }
  .header-logo-img {
		max-width: 220px;
		max-height: 50px;
	}
  .header-title {
      font-size: 2.5em;
      margin-top: 5px;
		margin-bottom: 5px;
    }
  .header-subtitle { font-size: 1.1em; }
  .step-container, .proccessing-wrapper {
      padding: 30px;
      max-width: 95%;
    }
  .featured-section {
		padding: 30px 0 0 0;
	}
	footer {
		padding: 10px 15px;
	}
	footer p {
		font-size: 0.8em;
	}
}
@media screen and (max-width: 420px) {
	.listing-section {
		padding: 30px 0;
	}
	.listing-item {
		padding: 15px 15px;
	}
	.listing-item .listing-item-left {
		padding-right: 7px;
		width: 60px;
	}
	.listing-item .listing-item-right {
		padding-left: 7px;
		width: calc(100% - 60px);
	}
}
@media screen and (max-width: 365px) {
	.listing-item-name {
		font-size: 1em;
	}
}