/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


.neon-gradient-text .elementor-heading-title{
    font-size: 2em;
    letter-spacing: 0.1em;

    background: linear-gradient(270deg, #ff6ec7, #12fff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: pulsate 0.11s ease-in-out infinite alternate; 

}

@keyframes pulsate {
  100% {
    /* Larger blur radius */
    text-shadow:
      0 0 19px #12fff7,
      0 0 40px #f09,
      0 0 100px #f09,
      0 0 150px #f09;
  }
 0% {
    /* A slightly smaller blur radius */
    text-shadow:
      0 0 18px #12fff7,
      0 0 38px #f09,
      0 0 94px #f09,
      0 0 140px #f09;
  }
}



.btn-gradient-main-colors > a{
  background: 
    linear-gradient(#181818, #181818) padding-box,
    linear-gradient(60deg, var(--e-global-color-primary), var(--e-global-color-secondary)) border-box;
  color: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: 1em;
}


.btn-gradient-main-colors > a > span{
  background: linear-gradient(45deg, var(--e-global-color-primary), var(--e-global-color-secondary));
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}




/* HOME GRID */



.mm-game-grid-home {
  background: transparent;
}

.mm-game-grid-home .mm-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1440px) {
  .mm-game-grid-home .mm-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .mm-game-grid-home .mm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .mm-game-grid-home .mm-grid { grid-template-columns: 1fr; }
}

.mm-game-grid-home .mm-card {
  position: relative;
  background: transparent;
  border: 1px solid var(--e-global-color-text);
  border-radius: 14px;
  overflow: hidden;
  color: var(--e-global-color-text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mm-game-grid-home .mm-thumb {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: transparent;
}
.mm-game-grid-home .mm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mm-game-grid-home .mm-body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

  .mm-game-grid-home .mm-title-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

.mm-game-grid-home .mm-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}
.mm-game-grid-home .mm-title a {
  color: var(--e-global-color-primary);
  text-decoration: none;
}
.mm-game-grid-home .mm-title a:hover {
  text-decoration: underline;
}

.mm-game-grid-home .mm-coins {
  color: var(--e-global-color-secondary);
}

.mm-game-grid-home .mm-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: .92;
}

.mm-game-grid-home .mm-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
      grid-template-columns: repeat(auto-fit, minmax(0, max-content));
      justify-content: space-between;
  gap: 15px;
  font-size: 13px;
      color: #fff;
}

.mm-game-grid-home .mm-meta li {
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.mm-game-grid-home .mm-meta strong {
  color: var(--e-global-color-secondary);
  font-weight: 700;
}

.mm-game-grid-home .mm-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  background:rgba(0,0,0,.55);
}
.mm-game-grid-home .mm-card:hover .mm-actions,
.mm-game-grid-home .mm-card:focus-within .mm-actions {
  opacity: 1;
  pointer-events: auto;
}
/* Always visible on touch / small screens */
@media (max-width: 767px) {
  .mm-game-grid-home .mm-actions {
    opacity: 1;
    pointer-events: auto;
  }
}
.mm-game-grid-home .mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s ease, background-color .2s ease, border-color .2s ease;
  user-select: none;
}

.mm-game-grid-home .mm-btn-primary {
  background: var(--e-global-color-primary);
  color: #fff;
}
.mm-game-grid-home .mm-btn-primary:hover { opacity: .92; }
.mm-game-grid-home .mm-btn-secondary {
  background: var(--e-global-color-secondary);
  color: #fff;
}
.mm-game-grid-home .mm-btn-secondary:hover {
  opacity: .92;
}
.mm-game-grid-home .mm-status {
  font-size: 13px;
  opacity: .85;
}

/* “List” layout on small screens */
@media (max-width: 767px) {
  .mm-game-grid-home .mm-card {
    flex-direction: row;
    align-items: stretch;
  }
  .mm-game-grid-home .mm-thumb { aspect-ratio: auto; width: 42%; }
  .mm-game-grid-home .mm-body { width: 58%; }
}

/* Modal */
.mm-game-grid-home .mm-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  z-index: 99999;
  padding: 18px;
}
.mm-game-grid-home .mm-modal[aria-hidden="false"] { display: flex; }
.mm-game-grid-home .mm-modal__panel {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,.35);
}
.mm-game-grid-home .mm-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--e-global-color-text);
}
.mm-game-grid-home .mm-modal__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--e-global-color-primary);
}
.mm-game-grid-home .mm-modal__close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #333;
}
.mm-game-grid-home .mm-modal__body {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.mm-game-grid-home .mm-login-links {
  display: grid;
  gap: 10px;
}