/* Google font - Work sans with font-display swap for better performance */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ===========================================================
Common sharable components 
=============================================================*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: "Work Sans", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
*,
::before,
::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/* Image optimization - prevent distortion */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
/* Mobile optimization */
@media only screen and (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
:root {
  --primary-black: #0b0223;
  --gradient-color: linear-gradient(180deg, #f948b2 0%, #8758f1 100%);
  --primary-color: linear-gradient(90deg, #ff42a5 0%, #ff42a5 100%);
  --secondary-color: #4ec5f7;
  --bg-color: #ff42a5;
}
section {
  padding: 2rem 0;
}
/* Mobile responsive padding */
@media only screen and (min-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
/* Primary button */
.primary_btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: linear-gradient(90deg, #ff42a5 0%, #ff42a5 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 66, 165, 0.3);
}
.primary_btn:hover {
  background: linear-gradient(90deg, #e63a94 0%, #e63a94 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 66, 165, 0.4);
}
/* Desktop button size */
@media only screen and (min-width: 768px) {
  .primary_btn {
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}
.primary_btn:hover {
  background-color: transparent;
  border: 1px solid var(--bg-color);
  color: var(--primary-black);
}
/* Secondary button */
.secondary_btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: #fff;
  color: #FF42A5;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 48px;
  border: 3px solid #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}
.secondary_btn:hover {
  background: #ffe600;
  color: #FF42A5;
  border-color: #ffe600;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 230, 0, 0.5);
}

/* ===========================================================
Header
=============================================================*/
header {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
}
.navbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0;
  width: 100%;
}
.nav_logo {
  display: flex;
  align-items: center;
  color: var(--primary-black);
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
}
.nav_logo img {
  max-width: 45px;
  width: 100%;
  margin-right: 0.5rem;
}
/* Tablet and desktop */
@media only screen and (min-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  .nav_logo {
    font-size: 1.5rem;
  }
  .nav_logo img {
    max-width: 60px;
    margin-right: 0.85rem;
  }
}
.nav_logo span {
  background: var(--primary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu {
  list-style: none;
  margin-top: 0.75rem;
  text-align: center;
}
.menu .nav_item {
  margin: 0.5rem 0;
}
.menu .nav_item .nav_link {
  text-decoration: none;
  color: var(--primary-black);
  font-size: 0.9rem;
  font-weight: 500;
}
.menu .nav_icons {
  display: flex;
  gap: 0.75rem;
  background-color: #d1d1d1;
  padding: 6px 10px;
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}
.nav_icons .nav_text {
  color: var(--primary-black);
  font-weight: 400;
  font-size: 0.8rem;
}
/* Tablet and up */
@media only screen and (min-width: 768px) {
  .menu {
    margin-top: 1rem;
  }
  .menu .nav_item {
    margin: 0.85rem 0;
  }
  .menu .nav_item .nav_link {
    font-size: 1rem;
  }
  .menu .nav_icons {
    gap: 1rem;
    padding: 8px 12px;
  }
  .nav_icons .nav_text {
    font-size: 0.958rem;
  }
}
.nav_icons .fa-youtube {
  color: #eb322b;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.nav_icons .fa-youtube:hover {
  transform: scale(1.2);
}
.nav_icons .fa-instagram {
  color: #e4405f;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.nav_icons .fa-instagram:hover {
  transform: scale(1.2);
}
.nav_icons .fa-facebook {
  color: #1877f2;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.nav_icons .fa-facebook:hover {
  transform: scale(1.2);
}
/* Responsive Navbar for tablet and desktop devices */
@media only screen and (min-width: 768px) {
  header {
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.09);
  }
  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .menu {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 1.8rem;
  }
}

/* ===========================================================
Banner Section
=============================================================*/
.banner_container {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}
.banner_content {
  background-image: url(https://res.cloudinary.com/dwigce6pp/image/upload/f_auto,q_auto,w_760,c_limit/v1760516686/Group_14_m9yqyx.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 510px;
  padding: 1.5rem;
  overflow: hidden;
}
.section_title {
  font-size: 1.5rem;
  color: var(--primary-black);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
}
.banner_title {
  font-size: 2.5rem;
  background: var(--gradient-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.85rem;
}
.list_container {
  margin-bottom: 1rem;
}
.list_item {
  list-style: none;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--primary-black);
}
.list_item i {
  width: 25px;
  color: #ff42a5;
}
.go_btn {
  background-color: var(--secondary-color);
  margin-left: 0.5rem;
  margin-top: 0.5rem;
}
/* Tablet and up */
@media only screen and (min-width: 768px) {
  .section_title {
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
  }
  .banner_title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .list_container {
    margin-bottom: 1.3rem;
  }
  .list_item {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  .list_item i {
    width: 30px;
  }
  .go_btn {
    margin-left: 0.95rem;
    margin-top: 0;
  }
  .banner_content {
    padding: 2rem;
  }
}
.banner_photo {
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}
.banner_photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}
/* Responsive banner section for large devices */
@media only screen and (min-width: 800px) {
  .banner_container {
    flex-direction: row;
  }
}

/* ===========================================================
We are gamer section
=============================================================*/
.gamer {
  background: linear-gradient(
    90deg,
    rgba(255, 66, 165, 0.03) 0%,
    rgba(255, 66, 165, 0.03) 100%
  );
}
.gamer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  overflow-x: hidden;
}
.gamer_image {
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}
.gamer_image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.gamer_content {
  width: 90%;
  text-align: center;
}
.gamer_title {
  text-transform: capitalize;
  background: var(--gradient-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.5rem;
}
.gamer_content .text {
  color: var(--primary-black);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.95rem;
}
.gamer_content .purpose {
  display: block;
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 400;
}
.gamer_content .quote_text {
  font-size: 1.2rem;
  color: var(--primary-black);
  font-weight: 300;
  margin-top: 0.75rem;
}
/* Tablet and desktop */
@media only screen and (min-width: 768px) {
  .gamer_title {
    font-size: 2rem;
  }
  .gamer_content .text {
    font-size: 1.2rem;
  }
  .gamer_content .purpose {
    margin-top: 2.5rem;
    font-size: 1.1rem;
  }
  .gamer_content .quote_text {
    font-size: 1.4rem;
  }
}
/* Responsive We are gamer for all large devices */
@media only screen and (min-width: 840px) {
  .gamer_container {
    flex-direction: row;
  }
  .gamer_content {
    text-align: right;
  }
  .gamer_image {
    max-width: 800px;
  }
}

/* ===========================================================
Funnly Video Section
=============================================================*/
.funny {
  padding-top: 3rem;
}
.title {
  font-size: 1.5rem;
  color: var(--primary-black);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
}
.title .lead_title {
  background: var(--gradient-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text {
  color: var(--primary-black);
  font-size: 0.85rem;
  text-align: center;
}
/* Tablet and up */
@media only screen and (min-width: 768px) {
  .funny {
    padding-top: 5rem;
  }
  .title {
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
  }
  .text {
    font-size: 0.924rem;
  }
}
.funny_container {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  overflow-x: hidden;
}
/* Tablet */
@media only screen and (min-width: 768px) {
  .funny_container {
    margin-top: 2rem;
    gap: 5rem;
  }
}
.funny_item {
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.funny_item .text {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: 1.2rem;
  word-wrap: break-word;
  color: #1a1a1a;
  font-weight: 500;
}
.funny_inner {
  max-width: 400px;
  width: 100%;
  height: auto;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin: auto;
}
.funny_inner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.funny_inner img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.overlay_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.overlay_content i {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  line-height: 40px;
}
.overlay_content span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.85rem;
  display: block;
}
/* Hover Effect */
.funny_inner:hover::before {
  opacity: 1;
}
.funny_inner:hover .overlay_content {
  opacity: 1;
}
/* Responsive Online Games Funny videos for tablet devices */
@media only screen and (min-width: 768px) {
  .funny_container {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 5rem;
  }
}
/* Responsive Online Games Funny videos for large devices */
@media only screen and (min-width: 992px) {
  .funny_container {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
  }
}

/* ===========================================================
Play Instanly Section 
=============================================================*/
.instanly {
  padding-bottom: 3rem;
}
.instanly_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  overflow-x: hidden;
}
.instanly_content .title {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  word-wrap: break-word;
  line-height: 1.4;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .instanly {
    padding-bottom: 5rem;
  }
  .instanly_container {
    gap: 4rem;
  }
  .instanly_content .title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.instanly_content .title .lead_title {
  background: var(--primary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.instanly_content .text {
  width: 90%;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.6;
}
/* Desktop - larger text */
@media only screen and (min-width: 768px) {
  .instanly_content .text {
    width: 70%;
    font-size: 1rem;
  }
}
.instanly_images {
  max-width: 320px;
  width: 90%;
  position: relative;
  overflow: visible;
}
.instanly_images .big_one {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
.instanly_images .small_one {
  max-width: 130px;
  width: 38%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 60%;
  left: -5%;
  border-radius: 8px;
}

/* Responsive Play Instanly for large devices  */
@media only screen and (min-width: 840px) {
  .instanly_container {
    flex-direction: row;
  }
  .instanly_images {
    max-width: 475px;
    width: 100%;
  }
  .instanly_images .small_one {
    max-width: 168px;
    width: 35%;
    left: -8%;
  }
}

/* ===========================================================
Play Games Online Anywhere, Anytime!
=============================================================*/
.business_hours {
  margin-top: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 66, 165, 0.85) 0%, rgba(78, 197, 247, 0.85) 100%);
  border-radius: 10px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
}
.business_hours h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
  word-wrap: break-word;
}
.business_hours p {
  font-size: 0.85rem;
  margin: 0.4rem 0;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  word-wrap: break-word;
}
.business_hours p i {
  margin-right: 0.4rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.business_hours a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  display: inline-block;
  word-break: break-all;
}
.business_hours a:hover {
  color: #ffe600;
  border-bottom-color: #ffe600;
  text-shadow: 0 2px 8px rgba(255, 230, 0, 0.8);
  transform: scale(1.05);
}
/* Desktop - Larger sizes */
@media only screen and (min-width: 768px) {
  .business_hours {
    padding: 1.5rem;
  }
  .business_hours h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }
  .business_hours p {
    font-size: 1.05rem;
    margin: 0.5rem 0;
    line-height: 1.8;
  }
  .business_hours p i {
    margin-right: 0.5rem;
    font-size: 1.05rem;
  }
  .business_hours a {
    font-size: 1.15rem;
    border-bottom: 3px solid #fff;
  }
}
.game_image .small_one {
  left: 68%;
  width: 40%;
}
/* Responsive Play Games Online for large devices  */
@media only screen and (min-width: 840px) {
  .game_online {
    flex-direction: row-reverse;
  }
  .instanly_content .title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  .game_image .small_one {
    left: 78%;
    width: 35%;
  }
}

/* ===========================================================
Google Maps Section
=============================================================*/
.maps_section {
  padding: 2.5rem 0;
  background: linear-gradient(
    90deg,
    rgba(255, 66, 165, 0.03) 0%,
    rgba(255, 66, 165, 0.03) 100%
  );
}
.map_container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.map_container iframe {
  width: 100%;
  min-height: 350px;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .maps_section {
    padding: 4rem 0;
  }
  .map_container {
    margin-top: 2rem;
  }
  .map_container iframe {
    min-height: 450px;
  }
}

/* ===========================================================
Career Section
=============================================================*/
.careers {
  background: linear-gradient(135deg, #FF42A5 0%, #4EC5F7 100%);
  position: relative;
}
.careers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.career_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.career_content h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}
.career_content > .text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}
.career_data {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.5rem;
}
.career_data .data_item > p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}
/* Tablet and desktop */
@media only screen and (min-width: 768px) {
  .career_main {
    gap: 2rem;
  }
  .career_content h2 {
    font-size: 2rem;
    margin-bottom: 1.1rem;
  }
  .career_content > .text {
    font-size: 1rem;
    margin-bottom: 2.2rem;
  }
  .career_data {
    flex-direction: row;
  }
  .career_data .data_item > p {
    margin-bottom: 0.854rem;
  }
}
.data_loc {
  text-align: right;
}
.career_image {
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.career_image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 550px;
  margin: 0 auto;
}

/* Responsive careers section for tablet devices */
@media only screen and (min-width: 576px) {
  .career_content,
  .career_image {
    max-width: 550px;
    width: 100%;
  }
  .career_data .data_item > p {
    font-size: 1.1rem;
  }
}
/* Responsive careers section for large devices */
@media only screen and (min-width: 960px) {
  .career_main {
    flex-direction: row;
  }
  .career_content,
  .career_image {
    flex: 1;
  }
}

/* ===========================================================
Category Section
=============================================================*/
.category {
  background: linear-gradient(45deg, #f1eef8, #fae8e8);
  padding: 2.5rem 0;
}
.category_main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  overflow-x: hidden;
}
.category_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  border-radius: 50px;
  padding: 5px 8px;
  background: #fdf8f8;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.category_item .icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.category_item .name {
  color: var(--primary-black);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
/* Tablet */
@media only screen and (min-width: 768px) {
  .category {
    padding: 3.5rem 0;
  }
  .category_main {
    gap: 1rem;
  }
  .category_item {
    gap: 0.854rem;
    padding: 6px 8px;
  }
  .category_item .icon {
    width: 50px;
    height: 50px;
  }
  .category_item .name {
    font-size: 0.95rem;
  }
}
/* Desktop */
@media only screen and (min-width: 1024px) {
  .category {
    padding: 5rem 0;
  }
  .category_item .name {
    font-size: 1rem;
  }
}
.category_item:hover {
  border: 1px solid var(--bg-color);
  cursor: pointer;
}
/* Responsive Category Section for tablet devices  */
@media only screen and (min-width: 768px) {
  .category {
    padding: 5rem 0;
  }
  .category_main {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Responsive Category Section for desktop devices  */
@media only screen and (min-width: 1024px) {
  .category_main {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 2rem;
    align-items: center;
  }
}
/* ===========================================================
Trending Games Section
=============================================================*/
.trending {
  background-color: #3a299f;
  padding: 2.5rem 0;
}
.trending_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.trending_top .title {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  margin: 0;
}
.trending_top .simple_btn {
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.11);
  padding: 8px 16px;
  transition: all 0.3s ease;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .trending {
    padding: 4rem 0;
  }
  .trending_top {
    margin-bottom: 2rem;
  }
  .trending_top .title {
    font-size: 1.5rem;
  }
  .trending_top .simple_btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 992px) {
  .trending_top .title {
    font-size: 1.7rem;
  }
}
.trending_top .simple_btn:hover {
  background-color: var(--bg-color);
}
/* Main Area */
.trending_main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  overflow-x: hidden;
}
.trending_main .item {
  width: 100%;
  max-width: 400px;
}
.trending_main .item .image {
  max-width: 400px;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 8px;
}
/* Tablet */
@media only screen and (min-width: 768px) {
  .trending_main {
    gap: 2rem;
  }
  .trending_main .item .image {
    height: 300px;
    margin-bottom: 1.4rem;
  }
}
.trending_main .image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.trending_main .image img:hover {
  opacity: 0.4;
  cursor: pointer;
}
.trending_main .status {
  color: #fff;
  text-align: center;
}
.trending_main .status::before {
  content: "\f004";
  font: var(--fa-font-solid);
  margin-right: 8px;
}
/* Responsive Trending Games for tablet devices */
@media only screen and (min-width: 768px) {
  .trending_main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 2rem;
  }
  .trending_main .item {
    width: calc(50% - 1rem);
  }
}
/* Responsive Trending Games for desktop devices */
@media only screen and (min-width: 992px) {
  .trending_main {
    justify-content: space-between;
  }
  .trending_main .item {
    width: calc(25% - 2rem);
  }
  .trending_top .title {
    font-size: 1.7rem;
  }
}
/* ===========================================================
Footer Section
=============================================================*/
.footer_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 2rem 1rem;
  background: var(--primary-black);
}
.footer_inner {
  text-align: center;
  max-width: 1140px;
  width: 100%;
}
/* Footer Logo */
.footer_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.footer_logo img {
  max-width: 45px;
  width: 100%;
  margin-right: 0.5rem;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .footer_container {
    padding: 3rem 1rem;
  }
  .footer_logo {
    font-size: 1.5rem;
    margin-bottom: 2.4rem;
  }
  .footer_logo img {
    max-width: 60px;
    margin-right: 0.85rem;
  }
}
.footer_logo span {
  background: var(--primary-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Footer Navigation */
.footer_inner .footer_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  list-style-type: none;
  width: 100%;
  overflow-wrap: break-word;
}
.footer_menu .item {
  list-style-type: none;
}
.footer_menu .link {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s ease;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .footer_inner .footer_menu {
    gap: 1.2rem;
    margin-bottom: 2.4rem;
  }
  .footer_menu .link {
    font-size: 1.1rem;
  }
}
.footer_menu .link:hover {
  color: var(--bg-color);
}
/* Footer Social Links */
.footer_social {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}
.footer_social .social_link {
  color: #fff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .footer_social {
    margin-bottom: 2.4rem;
    gap: 1.5rem;
  }
  .footer_social .social_link {
    font-size: 2rem;
  }
}
.footer_social .social_link:hover {
  color: var(--bg-color);
  transform: scale(1.2);
}
/* Footer Additional Links */
.additional_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  list-style-type: none;
}
.additional_menu .item {
  list-style-type: none;
}
.additional_menu .link {
  text-decoration: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 300;
  transition: all 0.3s ease;
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .additional_menu {
    gap: 1.3rem;
    margin-bottom: 1.4rem;
  }
  .additional_menu .link {
    font-size: 0.85rem;
  }
}
.additional_menu .link:hover {
  text-decoration: underline;
}
/* Footer Bottom text */
.bottom_text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
/* Desktop */
@media only screen and (min-width: 768px) {
  .bottom_text {
    font-size: 0.8rem;
  }
}
