/* ==========================================================================
   MOBILE GAMES PAGE STYLES
   ========================================================================== */

/* Mobile Games Page Hero Section */
.mobile-hero {
  position: relative;
  background-image: url('../images/mobile-games-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* border-bottom: 1px solid var(--border-color); */
}

.mobile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mobile-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.mobile-hero .container {
  position: relative;
  z-index: 2;
}

.mobile-hero-content {
  max-width: 600px;
  text-align: left;
}

.mobile-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

.mobile-hero-title .red-text {
  background: linear-gradient(135deg, #FF154B, #B00927);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}


/* Mobile Games About Section */
.mobile-about-section {
  padding: 100px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.mobile-about-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -250px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.32;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.mobile-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mobile-about-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.mobile-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.mobile-about-content {
  display: flex;
  flex-direction: column;
}

.mobile-about-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.mobile-about-title .red-text {
  color: #FF154B;
  display: inline-block;
  font-weight: 700;
}

.mobile-about-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  /* line-height: 1.7; */
  margin-bottom: 15px;
  font-weight: 300;
}

.mobile-about-text:last-child {
  margin-bottom: 0;
}


/* Mobile Games Ready To Play Section */
.mobile-ready-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  /* border-top: 1px solid var(--border-color); */
}

.mobile-ready-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mobile-ready-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mobile-ready-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  max-width: 590px;
}

.mobile-ready-title .red-text {
  background: linear-gradient(135deg, #FF154B, #B00927);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.mobile-ready-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #D6D6D6;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
}

.mobile-ready-image-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.mobile-ready-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}


/* Mobile Casino Games Catalog Section */
.mobile-catalog-section {
  padding: 100px 0;
  background-color: #000000;
}

.mobile-catalog-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.mobile-catalog-title .red-text {
  color: #FF154B;
}

.mobile-catalog-group {
  margin-bottom: 80px;
}

.mobile-catalog-group:last-child {
  margin-bottom: 0;
}

.mobile-catalog-subtitle {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.mobile-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mobile-catalog-card {
  background-color: #090a0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.mobile-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 21, 75, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 21, 75, 0.1);
}

.mobile-catalog-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}

.mobile-catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mobile-catalog-card:hover .mobile-catalog-img {
  transform: scale(1.05);
}

.mobile-catalog-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 5px;
  line-height: 1.3;
  letter-spacing: 0.2px;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
  .mobile-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .mobile-hero-title {
    font-size: 3.2rem;
  }

  .mobile-about-section {
    padding: 60px 0;
  }

  .mobile-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-about-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .mobile-ready-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-ready-title {
    font-size: 2.75rem;
  }

  .mobile-ready-desc {
    margin-bottom: 25px;
  }

  .mobile-catalog-section {
    padding: 60px 0;
  }

  .mobile-catalog-title {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .mobile-catalog-subtitle {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .mobile-catalog-group {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .mobile-hero {
    height: 320px;
  }

  .mobile-hero-title {
    font-size: 2.5rem;
  }

  .mobile-about-title {
    font-size: 30px;
  }

  .mobile-about-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .mobile-ready-section {
    padding: 70px 0;
  }

  .mobile-ready-title {
    font-size: 2.25rem;
  }

  .mobile-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mobile-catalog-title {
    font-size: 30px;
  }

  .mobile-catalog-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .mobile-catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mobile-catalog-card {
    padding: 16px;
  }
}