/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fafafa;
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  scroll-behavior: smooth;
  max-width: 100%;
}

/* Offset for fixed navbar (home page only) */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero .container {
  max-width: 100%;
  padding: 0;
}

/* Header styles (legacy - keeping for compatibility) */
header {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 16px 24px;
  border-radius: 20px;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 800px;
  max-width: 90%;
}

.logo {
  width: 102px;
  height: 42px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

nav a:hover,
nav a.active {
  color: #fff;
}

/* Navigation for all pages */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 16px 24px;
  width: 90%;
  max-width: 800px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 102px;
  height: 42px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
  position: relative;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  position: relative;
}

/* Hero section */
.hero {
  padding: 150px 10px 0;
  text-align: center;
  position: relative;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  contain: layout;
  overflow: hidden;
}

.hero-home {
  padding: 150px 10px 0;
  text-align: center;
  position: relative;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  contain: layout;
  overflow: hidden;
}

/* Remove extra space at bottom inside hero */
.hero .hero-content {
  margin-bottom: 0;
}
.hero .stats-circle {
  margin: 0 auto 0;
}
/* Home-only tighter vertical spacing */
.home-page .hero {
  min-height: 10vh;
}
.home-page .hero .hero-content {
  margin-bottom: 24px;
}
.home-page .stats-circle {
  margin: 0 auto 40px;
}

.hero-container {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 628px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-title span {
  display: block;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  min-height: 400px;
  width: 100%;
  position: relative;
}

.hero-image-left,
.hero-image-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(250px, 25vw, 400px);
  width: clamp(200px, 20vw, 350px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-image-left {
  left: clamp(20px, 5vw, 100px);
}

.hero-image-right {
  right: clamp(20px, 5vw, 100px);
}

/* Ensure hero images stay within viewport */
@media (max-width: 1400px) {
  .hero-image-left {
    left: clamp(10px, 3vw, 50px);
  }

  .hero-image-right {
    right: clamp(10px, 3vw, 50px);
  }
}

@media (max-width: 1024px) {
  .hero-image-left,
  .hero-image-right {
    height: clamp(200px, 20vw, 300px);
    width: clamp(150px, 15vw, 250px);
  }
}

.gamer-1fnpl3k,
.gamer-1qsrdqm {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-50px);
}

.gamer-1fnpl3k.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.gamer-1qsrdqm.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.stats-circle {
  width: clamp(300px, 30vw, 400px);
  height: clamp(300px, 30vw, 400px);
  border-radius: 200px;
  background: linear-gradient(
    180deg,
    rgba(255, 247, 230, 0.25) 49%,
    rgb(50, 50, 50) 100%
  );
  backdrop-filter: blur(15px);
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: clamp(20px, 3vw, 30px) 20px 20px;
  overflow: hidden;
  z-index: 2;
}

.pulse-text-top {
  font-size: 48px;
  font-weight: 700;
  color: #ffd400;
  line-height: 1;
  margin-bottom: 5px;
  transform: perspective(120px) rotateX(20deg);
  transform-origin: bottom center;
}

.pulse-text-middle {
  font-size: 48px;
  font-weight: 700;
  color: #ffd400;
  line-height: 1;
  margin-bottom: 10px;
  transform: perspective(120px) rotateX(20deg);
  transform-origin: bottom center;
}

.pulse-text-main {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.boxer-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 200px;
  overflow: hidden;
}

.boxer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 210px);
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.stat-box {
  background-color: rgba(239, 239, 239, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 30px;
  font-weight: 700;
}

.stat-label {
  color: #555;
}

/* Section styles */
section {
  padding: 20px 0;
}

.section-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  color: #bfbfbf;
  text-align: center;
  max-width: 380px;
  margin: 0 auto 40px;
}

.dark-bg {
  background-color: #222;
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.discover-section {
  position: relative;
  overflow: hidden;
}

.games-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 5vw, 80px);
  width: 100%;
  padding: 0 clamp(20px, 3vw, 60px);
}

.games-grid-left,
.games-grid-right {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 16px);
  flex: 1;
  min-width: 200px;
  max-width: clamp(300px, 25vw, 500px);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.games-grid-right {
  transform: translateX(30px);
}

.games-grid-left.visible,
.games-grid-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.game-row {
  display: flex;
  gap: clamp(6px, 1vw, 16px);
}

.games-grid-left .game-row {
  justify-content: flex-start;
}

.games-grid-right .game-row {
  justify-content: flex-end;
}

.game-icon-item {
  width: clamp(35px, 4vw, 70px);
  height: clamp(35px, 4vw, 70px);
  border-radius: clamp(8px, 1vw, 16px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.game-icon-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(251, 115, 17, 0.3);
}

.grid-game-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.games-center {
  flex: 0 0 auto;
  text-align: center;
  min-width: clamp(280px, 30vw, 500px);
  max-width: clamp(400px, 40vw, 700px);
  z-index: 2;
  padding: 0 clamp(10px, 2vw, 30px);
}

.section-title {
  position: relative;
  line-height: 1.1;
}

.highlight-arrow {
  color: #ffd400;
  font-size: 0.8em;
  margin: 0 10px;
  display: inline-block;
}

/* Game Categories - Clean Implementation */
.game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.game-categories .category-tag {
  background: transparent !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  padding: 4px 10px !important;
  border-radius: 15px !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  transition: all 0.3s ease !important;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease forwards;
}

.game-categories .category-tag:nth-child(1) {
  animation-delay: 0.1s;
}
.game-categories .category-tag:nth-child(2) {
  animation-delay: 0.2s;
}
.game-categories .category-tag:nth-child(3) {
  animation-delay: 0.3s;
}
.game-categories .category-tag:nth-child(4) {
  animation-delay: 0.4s;
}
.game-categories .category-tag:nth-child(5) {
  animation-delay: 0.5s;
}
.game-categories .category-tag:nth-child(6) {
  animation-delay: 0.6s;
}
.game-categories .category-tag:nth-child(7) {
  animation-delay: 0.7s;
}
.game-categories .category-tag:nth-child(8) {
  animation-delay: 0.8s;
}

.game-categories .category-tag:hover {
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  ) !important;
  color: #fff !important;
  border-color: transparent !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(251, 115, 17, 0.3) !important;
}

/* Dark discover section overrides */
.discover-section .dark-bg .section-title {
  color: #fff !important;
}

.discover-section .dark-bg .section-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.discover-section .dark-bg .game-categories .category-tag {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* Live Services Section Styles */
.live-services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.live-services-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.live-services-left {
  flex: 1;
  max-width: 500px;
}

.yellow-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd400 0%, #ffb800 100%);
  margin-bottom: 30px;
  border-radius: 2px;
}

.live-services-title {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
  margin-bottom: 24px;
}

.live-services-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.live-services-right {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/services-bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.gaming-icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.icon-element {
  position: absolute;
  font-size: 32px;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.star-icon {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.controller-icon {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}

.cube-icon {
  top: 40%;
  left: 10%;
  animation-delay: 1s;
}

.trophy-icon {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
}

.rocket-icon {
  bottom: 30%;
  left: 25%;
  animation-delay: 2s;
}

.gem-icon {
  bottom: 20%;
  right: 10%;
  animation-delay: 2.5s;
}

.target-icon {
  top: 70%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Gaming Redefinition Section */
.gaming-redefinition {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "left center right";
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding: 0 20px;
}

.gaming-left {
  grid-area: left;
  max-width: 100%;
  padding: 0 20px;
}

.gaming-center {
  grid-area: center;
  justify-self: center;
  width: 400px;
}

.gaming-right {
  grid-area: right;
  max-width: 100%;
  padding: 0 20px;
}

.gaming-title,
.join-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gaming-description,
.join-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.join-description a {
  color: #ffd400;
  text-decoration: none;
  font-weight: 600;
}

.join-description a:hover {
  text-decoration: underline;
}

.gaming-center {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 350px;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 25px;
  padding: 20px 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 100%;
}

.game-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.pulse-wave {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: linear-gradient(90deg, transparent, #ffd400, transparent);
  border-radius: 50px;
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) scaleX(1.2);
    opacity: 0.8;
  }
}

/* Technologies Section Styles */
.technologies-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.technologies-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.technologies-title {
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.2;
}

.technologies-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.technologies-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.tech-row {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-row:nth-child(2) {
  gap: 80px;
}

.tech-row:nth-child(3) {
  gap: 50px;
}

.tech-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.tech-icon:nth-child(1) {
  animation-delay: 0.1s;
}

.tech-icon:nth-child(2) {
  animation-delay: 0.2s;
}

.tech-icon:nth-child(3) {
  animation-delay: 0.3s;
}

.tech-icon:nth-child(4) {
  animation-delay: 0.4s;
}

.tech-icon:nth-child(5) {
  animation-delay: 0.5s;
}

.tech-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tech-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrolling Game Icons Section - Only on games page */
.games-page .game-icons-section {
  padding: 60px 0;
  background-color: #fafafa;
  overflow: hidden;
  margin-top: 0;
}

.games-page .scrolling-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.games-page .scroll-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 5%,
    rgba(0, 0, 0, 1) 95%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Only apply scrolling animations on games page */
.games-page .game-icon-group {
  display: flex;
  gap: 15px;
  animation: scroll-left 60s linear infinite;
  flex-shrink: 0;
}

.games-page .scroll-row-2 .game-icon-group {
  animation: scroll-right 65s linear infinite;
}

.games-page .scroll-row-3 .game-icon-group {
  animation: scroll-left 70s linear infinite;
}

/* Default styles for game-icon-group without animations */
.game-icon-group {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

/* Explicitly disable scrolling animations on non-games pages */
body:not(.games-page) .game-icon-group,
body:not(.games-page) .partner-group,
body:not(.games-page) .scroll-row,
body:not(.games-page) .scrolling-container,
body:not(.games-page) .partners-row {
  animation: none !important;
  transform: none !important;
}

.game-icon {
  flex-shrink: 0;
  width: clamp(100px, 8vw, 120px);
  height: clamp(100px, 8vw, 120px);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.game-icon:hover {
  transform: scale(1.05);
  z-index: 2;
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

/* Games Showcase Section */
.games-showcase {
  padding: 80px 0;
  background-color: #fafafa;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-header-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}

.section-header-left {
  flex: 1;
  max-width: 400px;
}

.section-header-right {
  flex: 1;
  max-width: 500px;
}

.section-header .section-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #000;
  text-align: left;
}

.section-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #000;
}

.section-decorations {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.decoration-1,
.decoration-2 {
  position: absolute;
  width: 50px;
  height: 50px;
}

.decoration-1 {
  bottom: -40px;
  left: -40px;
}

.decoration-2 {
  top: 3px;
  right: -41px;
  width: 69px;
  height: 50px;
}

.decoration-1 img,
.decoration-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Category tag styles are now handled in .game-categories .category-tag above */

.section-header-right .section-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.section-description {
  color: #666;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
}

.games-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card:nth-child(even) {
  flex-direction: row-reverse;
}

.game-image {
  flex: 1;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto;
}

.game-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.game-info {
  flex: 1;
  padding: 20px;
}

.game-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.game-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: contain;
}

.download-text {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.game-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.game-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  background-color: #f0f0f0;
  color: #757575;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.game-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.store-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.store-link:hover {
  background: #e9ecef;
}

.store-icon {
  font-size: 16px;
}

/* Tech Section */
.tech-section {
  padding: 80px 0;
  background-color: #fafafa;
  position: relative;
}

.tech-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.tech-info {
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.tech-info .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  margin-bottom: 0;
}

.title-highlight {
  color: #ffc600;
}

.tech-decoration {
  display: none;
}

.tech-description {
  flex: 1;
  max-width: 500px;
}

.tech-description p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tech Icons Scrolling Section */
.partners-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  contain: layout;
}

.partners-row {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Only apply partner animations on games page */
.games-page .partner-group {
  display: flex;
  gap: 40px;
  animation: scroll-left 40s linear infinite;
  flex-shrink: 0;
}

.games-page .partners-row-2 .partner-group {
  animation: scroll-right 45s linear infinite;
}

/* Default partner-group without animations */
.partner-group {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.partner-logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.central-tech-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 10;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.central-tech-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Player Stories & Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials-header .section-title {
  color: #000;
  font-size: 42px;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 20px;
  color: #222;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.testimonial-game {
  font-size: 12px;
  color: #777;
}

.testimonial-rating {
  color: #ffd400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonial-quote {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Testimonials responsive */
@media (max-width: 1199px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-header .section-title {
    font-size: 32px;
  }
}

/* Decorative Elements - All Pages - Pulse Theme */
.hero-decoration,
.section-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s ease;
  animation: pulse-float 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 212, 0, 0.3));
}

@keyframes pulse-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-5px) scale(1.1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-8px) scale(1.15);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    opacity: 0.4;
  }
}

.hero-decoration img,
.section-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hero Section Decorations - Pulse Icons */
.hero .hero-decoration-1 {
  top: 10%;
  right: 8%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  opacity: 0.3;
}

.hero .hero-decoration-2 {
  top: 60%;
  left: 5%;
  width: 45px;
  height: 45px;
  animation-delay: 2s;
  opacity: 0.4;
}

.hero .hero-decoration-3 {
  bottom: 20%;
  right: 15%;
  width: 35px;
  height: 35px;
  animation-delay: 4s;
  opacity: 0.5;
}

/* Games Section Decorations - Pulse Icons */
.discover-section .section-decoration-1 {
  top: 10%;
  right: 5%;
  width: 70px;
  height: 70px;
  animation-delay: 1s;
  opacity: 0.25;
}

.discover-section .section-decoration-2 {
  bottom: 15%;
  left: 3%;
  width: 55px;
  height: 55px;
  animation-delay: 3s;
  opacity: 0.35;
}

.discover-section .section-decoration-3 {
  top: 50%;
  right: 2%;
  width: 40px;
  height: 40px;
  animation-delay: 5s;
  opacity: 0.3;
}

/* Services Section Decorations - Pulse Icons */
.services-section .section-decoration-3 {
  top: 15%;
  left: 5%;
  width: 50px;
  height: 50px;
  animation-delay: 0.5s;
  opacity: 0.3;
}

.services-section .section-decoration-4 {
  bottom: 10%;
  right: 8%;
  width: 65px;
  height: 65px;
  animation-delay: 2.5s;
  opacity: 0.25;
}

/* Live Services Section Decorations - Pulse Icons */
.live-services-section .section-decoration-4 {
  top: 20%;
  right: 10%;
  width: 55px;
  height: 55px;
  animation-delay: 1.5s;
  opacity: 0.35;
}

.live-services-section .section-decoration-5 {
  bottom: 25%;
  left: 8%;
  width: 40px;
  height: 40px;
  animation-delay: 3.5s;
  opacity: 0.4;
}

.live-services-section .section-decoration-6 {
  top: 60%;
  left: 3%;
  width: 30px;
  height: 30px;
  animation-delay: 4.8s;
  opacity: 0.45;
}

/* Technologies Section Decorations - Pulse Icons */
.technologies-section .section-decoration-7 {
  top: 12%;
  left: 6%;
  width: 60px;
  height: 60px;
  animation-delay: 0.8s;
  opacity: 0.3;
}

.technologies-section .section-decoration-8 {
  bottom: 18%;
  right: 4%;
  width: 45px;
  height: 45px;
  animation-delay: 4.2s;
  opacity: 0.35;
}

.technologies-section .section-decoration-9 {
  top: 50%;
  right: 8%;
  width: 35px;
  height: 35px;
  animation-delay: 6s;
  opacity: 0.4;
}

/* Games Page Decorations */
.games-page .games-showcase .section-decoration-1 {
  top: 15%;
  right: 6%;
  width: 55px;
  height: 55px;
  animation-delay: 1.2s;
  opacity: 0.35;
}

.games-page .games-showcase .section-decoration-2 {
  bottom: 20%;
  left: 4%;
  width: 45px;
  height: 45px;
  animation-delay: 3.8s;
  opacity: 0.4;
}

.games-page .tech-section .section-decoration-7 {
  top: 18%;
  left: 7%;
  width: 50px;
  height: 50px;
  animation-delay: 2.1s;
  opacity: 0.3;
}

.games-page .tech-section .section-decoration-8 {
  bottom: 25%;
  right: 5%;
  width: 60px;
  height: 60px;
  animation-delay: 4.5s;
  opacity: 0.25;
}

/* About Page Decorations */
.about-page .about-section .section-decoration-1 {
  top: 12%;
  right: 8%;
  width: 50px;
  height: 50px;
  animation-delay: 0.8s;
  opacity: 0.35;
}

.about-page .about-section .section-decoration-2 {
  bottom: 18%;
  left: 5%;
  width: 40px;
  height: 40px;
  animation-delay: 2.3s;
  opacity: 0.4;
}

.about-page .mission-section .section-decoration-3 {
  top: 20%;
  left: 6%;
  width: 55px;
  height: 55px;
  animation-delay: 1.5s;
  opacity: 0.3;
}

.about-page .mission-section .section-decoration-4 {
  bottom: 15%;
  right: 7%;
  width: 45px;
  height: 45px;
  animation-delay: 3.2s;
  opacity: 0.35;
}

.about-page .team-section .section-decoration-5 {
  top: 10%;
  right: 4%;
  width: 65px;
  height: 65px;
  animation-delay: 0.5s;
  opacity: 0.25;
}

.about-page .team-section .section-decoration-6 {
  bottom: 22%;
  left: 8%;
  width: 35px;
  height: 35px;
  animation-delay: 4.1s;
  opacity: 0.45;
}

.about-page .join-team-section .section-decoration-7 {
  top: 25%;
  left: 3%;
  width: 50px;
  height: 50px;
  animation-delay: 1.8s;
  opacity: 0.3;
}

.about-page .join-team-section .section-decoration-8 {
  bottom: 12%;
  right: 9%;
  width: 40px;
  height: 40px;
  animation-delay: 3.6s;
  opacity: 0.4;
}

/* Contact Page Decorations */
.contact-page .contact-section .section-decoration-1 {
  top: 15%;
  right: 5%;
  width: 60px;
  height: 60px;
  animation-delay: 1.1s;
  opacity: 0.3;
}

.contact-page .contact-section .section-decoration-2 {
  bottom: 20%;
  left: 6%;
  width: 45px;
  height: 45px;
  animation-delay: 2.7s;
  opacity: 0.35;
}

.contact-page .faq-section .section-decoration-3 {
  top: 18%;
  left: 4%;
  width: 50px;
  height: 50px;
  animation-delay: 0.9s;
  opacity: 0.35;
}

.contact-page .faq-section .section-decoration-4 {
  bottom: 25%;
  right: 7%;
  width: 55px;
  height: 55px;
  animation-delay: 3.4s;
  opacity: 0.25;
}

/* Ensure all sections have proper positioning for decorations */
.about-section,
.mission-section,
.team-section,
.join-team-section,
.contact-section,
.faq-section,
.games-showcase {
  position: relative;
  overflow: hidden;
}

/* Hide decorations on mobile and tablets */
@media (max-width: 1024px) {
  .hero-decoration,
  .section-decoration {
    display: none;
  }
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px;
  margin-top: 80px;
}

.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  margin: 24px;
  padding: 40px;
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 140px;
  height: 118px;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.copyright {
  color: #999;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: none;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-column a:hover {
  color: #fff;
}

.contact-email {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-email:hover,
.footer-contact a:hover {
  color: #fff;
}

/* Prevent infinite scroll issues */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Ensure desktop nav-menu works properly */
@media (min-width: 810px) {
  .nav-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    max-width: none !important;
    flex-direction: row !important;
  }

  .nav-menu li {
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hamburger {
    display: none !important;
  }
}

/* Responsive styles */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 43px;
  }

  .hero-title {
    font-size: 48px;
  }

  .tech-info .section-title {
    font-size: 36px;
  }

  .game-card {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .game-info {
    order: 1 !important;
  }

  .game-image {
    order: 2 !important;
  }

  .game-image {
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .game-image img {
    margin: 0 auto !important;
    display: block !important;
  }

  .game-content {
    text-align: center !important;
    align-items: center !important;
  }

  .game-content h3 {
    text-align: center !important;
  }

  .game-content p {
    text-align: center !important;
  }

  .tech-info {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 1024px) {
  .games-content {
    gap: clamp(15px, 3vw, 40px);
  }

  .games-grid-left,
  .games-grid-right {
    max-width: clamp(250px, 22vw, 350px);
  }

  .games-center {
    min-width: clamp(250px, 35vw, 400px);
  }
}

@media (max-width: 809px) {
  header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .navbar {
    width: 95%;
    padding: 12px 20px;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    left: 50%;
    top: 80px;
    transform: translateX(-50%) translateY(-100%);
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    width: 95%;
    max-width: 400px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 0 0 20px 20px;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu li {
    margin: 8px 0;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.3s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-link {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 0 20px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background-color: rgba(255, 212, 0, 0.1);
    color: #ffd400 !important;
  }

  .nav-link.active {
    background-color: rgba(255, 212, 0, 0.2);
    color: #ffd400 !important;
  }

  .hamburger {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .hamburger:hover .bar {
    background-color: #ffd400;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #ffd400;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #ffd400;
  }

  .hero {
    padding: 120px 16px 60px;
  }

  /* Consistent navbar offset on mobile for all pages */
  main {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-height: 300px;
    position: relative;
  }

  .hero-image-left,
  .hero-image-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(80px, 20vw, 120px);
    height: clamp(80px, 20vw, 120px);
    z-index: 1;
  }

  .hero-image-left {
    left: clamp(2px, 1vw, 10px);
  }

  .hero-image-right {
    right: clamp(2px, 1vw, 10px);
  }

  .stats-circle {
    margin: 20px auto;
    z-index: 2;
    position: relative;
  }

  .gamer-1fnpl3k,
  .gamer-1qsrdqm {
    width: 100%;
    height: 100%;
  }

  .stats-circle {
    width: 280px;
    height: 280px;
    padding: 20px 15px 15px;
  }

  .pulse-text-top,
  .pulse-text-middle {
    font-size: 32px;
  }

  .pulse-text-main {
    font-size: 48px;
  }

  .boxer-image {
    width: 200px;
    height: 140px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .dark-bg {
    padding: 80px 15px;
  }

  .games-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .games-grid-left,
  .games-grid-right {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    flex: none;
  }

  .games-center {
    order: -1;
    min-width: auto;
    width: 100%;
    padding: 0 10px;
  }

  .footer-content {
    flex-direction: column;
  }

  /* Live Services Mobile Styles */
  .live-services-section {
    padding: 60px 0;
  }

  .live-services-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }

  .live-services-title {
    font-size: 32px;
  }

  .gaming-redefinition {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .gaming-left,
  .gaming-right {
    padding: 0;
  }

  .gaming-center {
    width: 300px;
    justify-self: center;
  }

  .gaming-left,
  .gaming-right {
    max-width: 100%;
    text-align: center;
  }

  .gaming-title,
  .join-title {
    font-size: 24px;
  }

  .phone-mockup {
    width: 160px;
    height: 280px;
    padding: 15px 12px;
  }

  .live-services-right {
    height: 300px;
  }

  /* Technologies Mobile Styles */
  .technologies-section {
    padding: 60px 0;
  }

  .technologies-title {
    font-size: 32px;
  }

  .technologies-header {
    margin-bottom: 60px;
  }

  .technologies-grid {
    gap: 30px;
  }

  .tech-row {
    gap: 30px;
  }

  .tech-row:nth-child(2),
  .tech-row:nth-child(3) {
    gap: 30px;
  }

  .tech-icon {
    width: 60px;
    height: 60px;
  }

  .tech-icon img {
    width: 35px;
    height: 35px;
  }

  .tech-content {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .tech-info {
    text-align: center !important;
    align-items: center !important;
    max-width: 100% !important;
  }

  .tech-info .section-title {
    font-size: 24px !important;
    text-align: center !important;
  }

  .tech-description {
    max-width: 100% !important;
    text-align: center !important;
  }

  .partners-section {
    gap: 15px !important;
    padding: 40px 0 !important;
  }

  .partners-row {
    gap: 20px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    overflow: hidden !important;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 5%,
      rgba(0, 0, 0, 1) 95%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
  }

  .partner-group {
    gap: 20px !important;
  }

  .partner-logo {
    width: 60px;
    height: 60px;
    padding: 10px;
  }

  .central-tech-logo {
    width: 80px !important;
    height: 80px !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 15 !important;
  }

  .games-page .game-icons-section {
    padding: 60px 0 !important;
    margin-top: 0 !important;
  }

  .game-card {
    padding: 20px;
    gap: 20px;
    text-align: center !important;
    align-items: center !important;
  }

  .game-header {
    flex-direction: column;
    text-align: center !important;
    align-items: center !important;
    gap: 10px;
  }

  .game-header h3 {
    text-align: center !important;
  }

  .game-tags {
    justify-content: center !important;
  }

  .store-links {
    justify-content: center !important;
    text-align: center !important;
  }

  .store-link {
    margin: 0 auto !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .game-description {
    text-align: center !important;
  }

  .game-icon {
    width: clamp(70px, 12vw, 90px);
    height: clamp(70px, 12vw, 90px);
    border-radius: 16px;
  }

  .game-icon-group {
    gap: 10px;
  }

  .scrolling-container {
    gap: 10px;
  }

  .footer {
    margin: 16px;
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* About Page Styles */
.about-section,
.mission-section,
.team-section,
.join-team-section {
  padding: 10px 0;
  background-color: #fafafa;
}

.about-content,
.mission-content,
.join-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

/* About content specific single column layout */
.about-content {
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

.about-text,
.mission-text,
.join-text {
  flex: 1;
}

/* About text specific centering */
.about-text {
  flex: none;
  max-width: 800px;
  text-align: center;
}

.about-image {
  flex: 1;
  max-width: 1250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.mission-image,
.join-image {
  flex: 1;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About image specific styling */
.about-image {
  flex: none;
  max-width: 1250px;
  height: 400px;
  overflow: hidden;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img,
.mission-image img,
.join-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

/* About image specific cropping */
.about-image img {
  width: 100%;
  height: 133%;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffd400;
  margin-bottom: 10px;
}

.value-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffd400;
  margin-bottom: 10px;
}

.stat-item p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

.team-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-description p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.join-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.benefit-item {
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.cta-button {
  display: block;
  padding: 12px 30px;
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
  margin: 20px auto 0;
  width: fit-content;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Contact Page Styles - New Design */
.contact-section {
  padding: 10px 0;
  background-color: #fafafa;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hero h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-hero p {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-forms-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.project-form-section,
.newsletter-section {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.project-form .form-group,
.newsletter-form .form-group {
  margin-bottom: 20px;
}

.project-form input,
.project-form select,
.project-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.project-form textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 100px;
}

.project-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus,
.newsletter-form input:focus {
  outline: none;
  border-color: #ffd400;
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.newsletter-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.contact-item .text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.contact-item .text p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  color: #fff;
  transform: translateY(-2px);
}

.faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: #ffd400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "×";
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for about and contact pages */
@media (max-width: 768px) {
  .about-content,
  .mission-content,
  .join-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-image,
  .mission-image,
  .join-image {
    align-self: center;
    max-width: 300px;
  }

  .contact-forms-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero h2 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .project-form-section,
  .newsletter-section {
    padding: 30px 20px;
  }

  /* Section Header Mobile Responsive */
  .section-header-content {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .section-header-left,
  .section-header-right {
    max-width: 100% !important;
    flex: none !important;
  }

  .section-header .section-title {
    font-size: 36px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  .game-categories {
    justify-content: center !important;
    margin-top: 20px !important;
  }

  .section-header-right .section-description {
    text-align: center !important;
    font-size: 14px !important;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .mission-values,
  .join-benefits {
    grid-template-columns: 1fr;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-stats {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }
}
/* ===== R
EDESIGNED ABOUT PAGE SECTIONS ===== */

/* Mission Section - New Design */
.mission-section-new {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.mission-header {
  text-align: center;
  margin-bottom: 80px;
}

.mission-header .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.mission-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.mission-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.mission-card p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

/* Team Section - New Design */
.team-section-new {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.team-hero {
  text-align: center;
  margin-bottom: 80px;
}

.team-hero .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.team-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  color: #000;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ffd400;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 212, 0, 0.05) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fb7311 0%, #ffd400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.stat-description {
  font-size: 14px;
  color: #666;
}

.team-expertise {
  text-align: center;
}

.team-expertise h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.expertise-tag {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 115, 17, 0.3);
}

/* Join Section - New Design */
.join-section-new {
  padding: 0;
  position: relative;
}

.join-background {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.join-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.join-hero {
  text-align: center;
  margin-bottom: 80px;
  color: #000;
}

.join-hero .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.join-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.benefit-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: #fff;
  border-color: #ffd400;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

.join-cta {
  text-align: center;
}

.cta-text {
  font-size: 24px;
  color: #000;
  margin-bottom: 30px;
  font-weight: 500;
}

.cta-button-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.9);
  color: #ffd400;
  border-color: rgba(255, 212, 0, 0.3);
}

.cta-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.cta-button-new:hover .cta-arrow {
  transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mission-section-new,
  .team-section-new {
    padding: 60px 0;
  }

  .join-background {
    padding: 60px 0;
  }

  .mission-header .section-title,
  .team-hero .section-title,
  .join-hero .section-title {
    font-size: 32px;
  }

  .mission-subtitle,
  .team-subtitle,
  .join-subtitle {
    font-size: 16px;
  }

  .mission-grid,
  .team-stats-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expertise-tags {
    gap: 10px;
  }

  .expertise-tag {
    font-size: 12px;
    padding: 8px 16px;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-button-new {
    padding: 15px 30px;
    font-size: 16px;
  }
}
/* ===== BUTTON LOADER AND STATES ===== */

/* Button loading state */
.form-submit-btn.loading {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.form-submit-btn.loading .button-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

/* Button success state */
.form-submit-btn.success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  pointer-events: none;
}

/* Button error state */
.form-submit-btn.error {
  background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
  color: #fff;
  pointer-events: none;
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced form button base styles */
.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
}

.form-submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

  /*
  =====
  SERVICES
  SECTION
  -
  REDESIGNED
  WITH
  EXISTING
  THEME
  =====
  */
  .services-section-new {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services-hero {
  text-align: center;
  margin-bottom: 80px;
}

.services-hero .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.services-hero .section-description {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fb7311 0%, #ffd400 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #ffd400;
  box-shadow: 0 15px 40px rgba(251, 115, 17, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #000 0%, #666 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.service-card:hover .service-tag {
  background: linear-gradient(
    321deg,
    rgb(251, 115, 17) 0%,
    rgb(255, 212, 0) 100%
  );
  color: #fff;
  border-color: transparent;
}

/* Services Section Decorations */
.services-section-new .section-decoration-7 {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 60px;
  height: 60px;
  opacity: 0.6;
  animation: pulse-float 4s ease-in-out infinite;
}

.services-section-new .section-decoration-8 {
  position: absolute;
  bottom: 20%;
  left: 3%;
  width: 80px;
  height: 80px;
  opacity: 0.4;
  animation: pulse-float 5s ease-in-out infinite reverse;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services-section-new {
    padding: 60px 0;
  }

  .services-hero .section-title {
    font-size: 32px;
  }

  .services-hero .section-description {
    font-size: 16px;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 18px;
  }
}
/* ===== GAME SHOWCASE HUB - REDESIGNED ===== */
.game-showcase-hub {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-showcase-hub::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-image: url("images/section-decoration-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

/* Central Pulse Core */
.pulse-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 10;
}

.core-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
}

.core-ring-1 {
  width: 80px;
  height: 80px;
  border-color: #fb7311;
  animation: pulse-ring 3s ease-in-out infinite;
}

.core-ring-2 {
  width: 100px;
  height: 100px;
  border-color: #ffd400;
  animation: pulse-ring 3s ease-in-out infinite 1s;
}

.core-ring-3 {
  width: 120px;
  height: 120px;
  border-color: #fb7311;
  animation: pulse-ring 3s ease-in-out infinite 2s;
}

/* Floating Game Icons */
.floating-games {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.game-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.game-bubble {
  position: relative;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.game-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(251, 115, 17, 0.2);
}

.game-bubble img {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}

.bubble-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #fb7311, #ffd400);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.game-bubble:hover .bubble-glow {
  opacity: 0.3;
}

/* Game Orbit Positions */
.game-orbit-1 {
  transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg);
  animation: orbit 20s linear infinite;
}

.game-orbit-2 {
  transform: translate(-50%, -50%) rotate(60deg) translateX(140px)
    rotate(-60deg);
  animation: orbit 20s linear infinite;
}

.game-orbit-3 {
  transform: translate(-50%, -50%) rotate(120deg) translateX(140px)
    rotate(-120deg);
  animation: orbit 20s linear infinite;
}

.game-orbit-4 {
  transform: translate(-50%, -50%) rotate(180deg) translateX(140px)
    rotate(-180deg);
  animation: orbit 20s linear infinite;
}

.game-orbit-5 {
  transform: translate(-50%, -50%) rotate(240deg) translateX(140px)
    rotate(-240deg);
  animation: orbit 20s linear infinite;
}

.game-orbit-6 {
  transform: translate(-50%, -50%) rotate(300deg) translateX(140px)
    rotate(-300deg);
  animation: orbit 20s linear infinite;
}

/* Platform Badges */
.platform-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.platform-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-badge span {
  font-size: 20px;
}

.platform-badge small {
  font-size: 10px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

/* Animations */
@keyframes pulse-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

@keyframes orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(140px)
      rotate(-360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .game-showcase-hub {
    width: 300px;
    height: 300px;
  }

  .game-orbit-1,
  .game-orbit-2,
  .game-orbit-3,
  .game-orbit-4,
  .game-orbit-5,
  .game-orbit-6 {
    transform: translate(-50%, -50%) translateX(100px);
  }

  .game-bubble {
    width: 45px;
    height: 45px;
  }

  .game-bubble img {
    width: 25px;
    height: 25px;
  }

  .core-center {
    width: 50px;
    height: 50px;
  }

  .platform-badges {
    bottom: -30px;
  }

  .platform-badge {
    padding: 8px 12px;
  }
} /* ====
= GAMING REDEFINITION SECTION - REIMPLEMENTED ===== */

.gaming-redefinition-new {
  display: grid;
  grid-template-columns: 400px 1fr 1fr;
  grid-template-areas: "showcase center right";
  gap: 40px;
  align-items: center;
  margin-top: 60px;
  padding: 0 20px;
}

.gaming-content-left {
  grid-area: right;
  padding: 0 20px;
}

.gaming-content-right {
  grid-area: center;
  padding: 0 20px;
}

.gaming-showcase {
  grid-area: showcase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-hub-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-hub-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-image: url("images/section-decoration-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

/* Central Title in the middle of orbit */
.central-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}

.central-title .gaming-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
  background: rgb(255, 255, 255);
  padding: 15px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

/* Gaming Content Styles */
.gaming-title,
.join-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gaming-description,
.join-description {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

.join-description a {
  color: #fb7311;
  text-decoration: none;
  font-weight: 600;
}

.join-description a:hover {
  color: #ffd400;
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gaming-redefinition-new {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .gaming-content-left,
  .gaming-content-right {
    padding: 0;
  }

  .game-hub-container {
    width: 300px;
    height: 300px;
  }

  .gaming-title,
  .join-title {
    font-size: 24px;
  }

  .gaming-description,
  .join-description {
    font-size: 14px;
  }
} /* ====
= INDEX PAGE MOBILE OPTIMIZATION ===== */

@media (max-width: 768px) {
  /* Game Icons Section Mobile */
  .games-page .game-icons-section {
    padding: 40px 0 !important;
    margin-top: -10px !important;
  }

  .games-page .scrolling-container {
    gap: 10px;
  }

  .scroll-row {
    gap: 15px;
  }

  .game-icon {
    width: 50px;
    height: 50px;
  }

  .game-icon img {
    width: 40px;
    height: 40px;
  }

  /* Discover Section Mobile - Bottom Layout */
  .discover-section {
    padding: 40px 0;
  }

  .games-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
  }

  /* Center content goes first (top) */
  .games-center {
    order: 1;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  /* Side grids go to bottom */
  .games-grid-left,
  .games-grid-right {
    order: 2;
    opacity: 1;
    transform: none;
    width: 100%;
    max-width: none;
  }

  /* Create bottom grid container */
  .games-grid-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .games-grid-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  /* Show only first row, make it horizontal */
  .games-grid-left .game-row:not(:first-child),
  .games-grid-right .game-row:not(:first-child) {
    display: none;
  }

  .games-grid-left .game-row,
  .games-grid-right .game-row {
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  /* Hide extra icons, keep only first 4 per row */
  .games-grid-left .game-icon-item:nth-child(n + 5),
  .games-grid-right .game-icon-item:nth-child(n + 5) {
    display: none;
  }

  /* Mobile icon sizing */
  .games-grid-left .game-icon-item,
  .games-grid-right .game-icon-item {
    width: 40px;
    height: 40px;
  }

  .games-grid-left .grid-game-icon,
  .games-grid-right .grid-game-icon {
    width: 35px;
    height: 35px;
  }

  .games-center .section-title {
    font-size: 28px !important;
    margin-bottom: 20px;
  }

  .games-center .section-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .game-categories {
    justify-content: center !important;
    gap: 8px;
  }

  .game-categories .category-tag {
    font-size: 9px !important;
    padding: 3px 8px !important;
  }

  /* Services Section Mobile */
  .services-section-new {
    padding: 60px 0;
  }

  .services-hero .section-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .services-hero .section-description {
    font-size: 14px;
    padding: 0 10px;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .service-card {
    padding: 25px 20px;
    margin: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .service-tags {
    gap: 6px;
    justify-content: center;
  }

  .service-tag {
    font-size: 9px;
    padding: 3px 8px;
  }

  /* Live Services Section Mobile */
  .live-services-section {
    padding: 60px 0;
  }

  .live-services-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .live-services-left {
    max-width: 100%;
  }

  .live-services-title {
    font-size: 28px;
    text-align: center;
  }

  .live-services-description {
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
  }

  .yellow-line {
    width: 60px;
    margin: 0 auto 20px;
  }

  .live-services-right {
    height: 250px !important;
    margin: 0 !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .gaming-icons {
    padding: 120px;
  }

  .icon-element {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }

  /* Gaming Redefinition Mobile */
  .gaming-redefinition-new {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "showcase"
      "center"
      "right" !important;
    gap: 30px !important;
    text-align: center !important;
    padding: 0 15px !important;
  }

  .gaming-content-left,
  .gaming-content-right {
    padding: 0 !important;
  }

  .game-hub-container {
    width: 280px !important;
    height: 280px !important;
  }

  .central-title .gaming-title {
    font-size: 18px !important;
    padding: 10px 15px !important;
  }

  .gaming-title,
  .join-title {
    font-size: 22px !important;
    margin-bottom: 15px !important;
  }

  .gaming-description,
  .join-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .game-orbit-1,
  .game-orbit-2,
  .game-orbit-3,
  .game-orbit-4,
  .game-orbit-5,
  .game-orbit-6 {
    transform: translate(-50%, -50%) translateX(90px) !important;
  }

  .game-bubble {
    width: 40px !important;
    height: 40px !important;
  }

  .game-bubble img {
    width: 25px !important;
    height: 25px !important;
  }

  .platform-badges {
    bottom: -25px !important;
    gap: 10px !important;
  }

  .platform-badge {
    padding: 6px 10px !important;
    font-size: 10px !important;
  }

  .platform-badge span {
    font-size: 16px !important;
  }

  /* Tech Section Mobile */
  .tech-section {
    padding: 60px 0;
  }

  .tech-content {
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .tech-info .section-title {
    font-size: 24px !important;
  }

  .tech-description {
    font-size: 14px !important;
    padding: 0 10px;
  }

  .tech-decoration {
    margin: 20px auto;
  }

  /* Partners Section Mobile */
  .partners-section {
    padding: 40px 0 !important;
  }

  .partners-row {
    gap: 15px !important;
  }

  .partner-logo {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
  }

  .central-tech-logo {
    width: 60px !important;
    height: 60px !important;
  }

  /* Hero Content Mobile - No overlap layout */
  .hero-content {
    margin-bottom: 10px !important;
    min-height: 180px !important;
    margin-top: -60px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 20px !important;
  }

  .hero-image-left,
  .hero-image-right {
    flex: 0 0 80px !important;
    height: 100px !important;
    width: 80px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .hero-image-left img,
  .hero-image-right img {
    width: 70px !important;
    height: 90px !important;
    object-fit: contain !important;
  }

  .hero-title {
    margin-bottom: 0px !important;
  }

  .hero h1 {
    margin-bottom: 0px !important;
  }

  .hero-container {
    margin-bottom: 0px !important;
  }

  /* Stats Circle Mobile Optimization */
  .stats-circle {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto 30px !important;
    padding: 15px 15px 15px !important;
    border-radius: 100px !important;
  }

  .pulse-text-top {
    font-size: 20px !important;
    transform: perspective(80px) rotateX(25deg) !important;
    transform-origin: bottom center !important;
  }

  .pulse-text-middle {
    font-size: 20px !important;
    transform: perspective(80px) rotateX(25deg) !important;
    transform-origin: bottom center !important;
  }

  .pulse-text-main {
    font-size: 32px !important;
    transform: perspective(80px) rotateX(25deg) !important;
    transform-origin: bottom center !important;
    margin-top: -15px !important;
    margin-bottom: -10px !important;
  }

  .pulse-text-bottom {
    font-size: 20px !important;
  }

  .pulse-text-center {
    font-size: 12px !important;
    margin: 5px 0 !important;
  }

  /* Boxer Image Mobile Optimization */
  .boxer-image {
    width: 120px !important;
    height: 160px !important;
    display: flex !important;
    align-items: stretch !important;
  }

  .boxer-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* General Mobile Optimizations */
  .container {
    padding: 0 15px;
  }

  .section-decoration {
    display: none !important;
  }

  .section-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }

  .section-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  /* Hide complex animations on mobile for performance */
  .core-ring {
    animation: none !important;
  }

  .game-orbit {
    animation-duration: 30s !important;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .gaming-redefinition-new {
    padding: 0 10px !important;
  }

  .game-hub-container {
    width: 240px !important;
    height: 240px !important;
  }

  .game-orbit-1,
  .game-orbit-2,
  .game-orbit-3,
  .game-orbit-4,
  .game-orbit-5,
  .game-orbit-6 {
    transform: translate(-50%, -50%) translateX(70px) !important;
  }

  .services-grid-new {
    margin: 0 5px;
  }

  .service-card {
    margin: 0 5px;
  }
}
