* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.template-selector {
  position: fixed;
  bottom: 2%;
  right: 1%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #ff6b35;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  width: clamp(7.5rem, 12vw, 9rem);
}

.template-selector:hover,
.template-selector:active,
.template-selector:focus {
  opacity: 1;
}

.template-selector button {
  display: block;
  margin: 0.3rem 0;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 0.3rem;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 0.9rem;
  width: clamp(5rem, 8vw, 6rem);
}

.template-selector button:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* When the clan is selected, it uses this style change */
.template-selector button.selected {
  font-size: 1.1rem;
  width: clamp(6rem, 9vw, 7rem);
}

/* ========== SAMURAI THEME ========== */
body.samurai {
  background: #1a1612;
  color: #e8d5b7;
}

body.samurai .nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 3px solid #c41e3a;
}

body.samurai .logo {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: #c41e3a;
  text-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
  letter-spacing: 3px;
}

body.samurai .nav-links a {
  color: #e8d5b7;
}

body.samurai .nav-links a:hover {
  color: #c41e3a;
  text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

body.samurai .hero {
  background: linear-gradient(135deg, #1a1612 0%, #2d0a0e 100%);
}

body.samurai .particle {
  background: #c41e3a;
  opacity: 0.6;
  animation: sakuraFall 8s infinite ease-in-out;
}

@keyframes sakuraFall {
  0% {
    transform: translateY(-10%) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(110%) rotate(360deg);
    opacity: 0;
  }
}

body.samurai .hero h1 {
  color: #c41e3a;
  text-shadow: 0 0 30px rgba(196, 30, 58, 0.8);
}

body.samurai .hero p {
  color: #e8d5b7;
}

body.samurai .btn {
  background: #c41e3a;
  border: 2px solid #8b0000;
  color: #e8d5b7;
  text-decoration: none;
}

body.samurai .btn:hover {
  background: #8b0000;
  box-shadow: 0 0 30px rgba(196, 30, 58, 0.8);
}

body.samurai .section-title {
  color: #c41e3a;
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
}

body.samurai .section-subtitle {
  color: #e8d5b7;
}

body.samurai .our-core {
  background: linear-gradient(135deg, #2d0a0e 0%, #1a1612 100%);
}

body.samurai .our-core-text h3 {
  color: #c41e3a;
}

body.samurai .our-core-text p {
  color: #e8d5b7;
}

body.samurai .our-core-image {
  /* background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), rgba(139, 0, 0, 0.3));
  border: 3px solid #c41e3a; */
  color: #c41e3a;
}

body.samurai .our-core-image-content {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), rgba(139, 0, 0, 0.3));
  border: 3px solid #c41e3a;
}

body.samurai .games {
  background: #1a1612;
}

body.samurai .game-card {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(139, 0, 0, 0.2));
  border: 2px solid #c41e3a;
}

body.samurai .game-card:hover {
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.5);
}

body.samurai .game-strategy {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(139, 0, 0, 0.2));
  border: 2px solid #c41e3a;
}

body.samurai .game-strategy:hover {
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.5);
}

body.samurai .game-card-image {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.4), rgba(139, 0, 0, 0.4));
  border-bottom: 2px solid #c41e3a;
  overflow: hidden;
}

body.samurai .game-card-image-content {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.4), rgba(139, 0, 0, 0.4));
  border-bottom: 2px solid #c41e3a;
}

body.samurai .game-strategy-image {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.4), rgba(139, 0, 0, 0.4));
  border-bottom: 2px solid #c41e3a;
  overflow: hidden;
}

body.samurai .game-strategy-image-content {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.4), rgba(139, 0, 0, 0.4));
  border-bottom: 2px solid #c41e3a;
}

body.samurai .game-card-info h3 {
  color: #c41e3a;
}

body.samurai .game-card-info p {
  color: #e8d5b7;
}

body.samurai .game-strategy-info h3 {
  color: #c41e3a;
}

body.samurai .game-strategy-info p {
  color: #e8d5b7;
}

body.samurai .about {
  background: linear-gradient(135deg, #2d0a0e 0%, #1a1612 100%);
}

body.samurai .form input,
body.samurai .form textarea {
  background: rgba(196, 30, 58, 0.1);
  border: 2px solid #c41e3a;
  color: #e8d5b7;
}

body.samurai .contact-card {
  background: #453333;
  color: #e8d5b7;
}

body.samurai .contact-card:hover {
  border-color: #c41e3a;
  color: #c41e3a;
}

body.samurai .footer {
  background: #1a1612;
  border-top: 3px solid #c41e3a;
}

body.samurai .footer-social a {
  color: #c41e3a;
}

body.samurai .footer-social a:hover {
  color: #e8d5b7;
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.8);
}

body.samurai .footer-text {
  color: #e8d5b7;
}

/* ========== MECHA THEME ========== */
body.mecha {
  background: #0a0e1a;
  color: #00d4ff;
}

body.mecha .nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 2px solid #00d4ff;
}

body.mecha .logo {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  letter-spacing: 2px;
}

body.mecha .nav-links a {
  color: #00d4ff;
  position: relative;
}

body.mecha .nav-links a::before {
  content: '>';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s;
}

body.mecha .nav-links a:hover::before {
  opacity: 1;
  left: -20px;
}

body.mecha .nav-links a:hover {
  color: #ff6b00;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

body.mecha .hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a0a2e 100%);
}

body.mecha .hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.1) 2px, transparent 2px);
  background-size: 40px 40px;
  animation: mechaGrid 15s linear infinite;
}

@keyframes mechaGrid {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}

body.mecha .hero h1 {
  color: #00d4ff;
  text-shadow: 0 0 40px rgba(0, 212, 255, 1);
}

body.mecha .hero p {
  color: #ff6b00;
}

body.mecha .btn {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  position: relative;
  overflow: hidden;
}

body.mecha .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  transition: left 0.5s;
}

body.mecha .btn:hover::before {
  left: 100%;
}

body.mecha .btn:hover {
  background: #00d4ff;
  color: #0a0e1a;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

body.mecha .section-title {
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

body.mecha .section-subtitle {
  color: #ff6b00;
}

body.mecha .our-core {
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0e1a 100%);
}

body.mecha .our-core-text h3 {
  color: #ff6b00;
}

body.mecha .our-core-text p {
  color: #00d4ff;
}

body.mecha .our-core-image {
  /* background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 0, 0.3)); */
  /* border: 2px solid #00d4ff; */
  color: #00d4ff;
  /* box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); */
}

body.mecha .our-core-image-content {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 0, 0.3));
  border: 2px solid #00d4ff;
}

body.mecha .games {
  background: #0a0e1a;
}

body.mecha .game-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 0, 0.1));
  border: 2px solid #00d4ff;
}

body.mecha .game-card:hover {
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
  border-color: #ff6b00;
}

body.mecha .game-strategy {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 0, 0.1));
  border: 2px solid #00d4ff;
}

body.mecha .game-strategy:hover {
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
  border-color: #ff6b00;
}

body.mecha .game-card-image {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 0, 0.3));
  border-bottom: 2px solid #00d4ff;
  overflow: hidden;
}
body.mecha .game-card-image-content {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 0, 0.3));
  border-bottom: 2px solid #00d4ff;
}
body.mecha .game-strategy-image {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 0, 0.3));
  border-bottom: 2px solid #00d4ff;
  overflow: hidden;
}

body.mecha .game-strategy-image-content {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 0, 0.3));
  border-bottom: 2px solid #00d4ff;
}

body.mecha .game-card-info h3 {
  color: #00d4ff;
}

body.mecha .game-card-info p {
  color: #00d4ff;
  opacity: 0.8;
}
body.mecha .game-strategy-info h3 {
  color: #00d4ff;
}

body.mecha .game-strategy-info p {
  color: #00d4ff;
  opacity: 0.8;
}

body.mecha .about {
  background: linear-gradient(135deg, #1a0a2e 0%, #0a0e1a 100%);
}

body.mecha .form input,
body.mecha .form textarea {
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid #00d4ff;
  color: #00d4ff;
}

body.mecha .contact-card {
  background: #2f4d7f;
  color: #00d4ff;
}

body.mecha .contact-card:hover {
  border-color: #ff6b00;
  color: #ff6b00;
}

body.mecha .footer {
  background: #0a0e1a;
  border-top: 2px solid #00d4ff;
}

body.mecha .footer-social a {
  color: #00d4ff;
}

body.mecha .footer-social a:hover {
  color: #ff6b00;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

body.mecha .footer-text {
  color: #00d4ff;
}

/* ========== YOKAI THEME ========== */
body.yokai {
  background: #0f0a15;
  color: #b19cd9;
}

body.yokai .nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  background: rgba(15, 10, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 2px solid #9d4edd;
}

body.yokai .logo {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: #9d4edd;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.8);
  letter-spacing: 2px;
}

body.yokai .nav-links a {
  color: #b19cd9;
}

body.yokai .nav-links a:hover {
  color: #7209b7;
  text-shadow: 0 0 15px rgba(114, 9, 183, 0.8);
}

body.yokai .hero {
  background: radial-gradient(ellipse at center, #240046 0%, #0f0a15 100%);
}

body.yokai .particle {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.4), transparent);
  animation: spiritFloat 10s infinite ease-in-out;
}

@keyframes spiritFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, -30px) scale(1.2);
    opacity: 0.6;
  }
}

body.yokai .hero h1 {
  color: #9d4edd;
  text-shadow: 0 0 40px rgba(157, 78, 221, 0.8);
}

body.yokai .hero p {
  color: #b19cd9;
}

body.yokai .btn {
  background: rgba(157, 78, 221, 0.2);
  border: 2px solid #9d4edd;
  color: #b19cd9;
}

body.yokai .btn:hover {
  background: #9d4edd;
  color: #0f0a15;
  box-shadow: 0 0 40px rgba(157, 78, 221, 0.8);
}

body.yokai .section-title {
  color: #9d4edd;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

body.yokai .section-subtitle {
  color: #b19cd9;
}

body.yokai .our-core {
  background: radial-gradient(ellipse at center, #240046 0%, #0f0a15 100%);
}

body.yokai .our-core-text h3 {
  color: #9d4edd;
}

body.yokai .our-core-text p {
  color: #b19cd9;
}

body.yokai .our-core-image {
  /* background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(114, 9, 183, 0.3));
  border: 2px solid #9d4edd; */
  color: #9d4edd;
}
body.yokai .our-core-image-content {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(114, 9, 183, 0.3));
  border: 2px solid #9d4edd;
}

body.yokai .games {
  background: #0f0a15;
}

body.yokai .game-card {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(114, 9, 183, 0.15));
  border: 2px solid #9d4edd;
}

body.yokai .game-card:hover {
  box-shadow: 0 10px 40px rgba(157, 78, 221, 0.5);
}

body.yokai .game-strategy {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(114, 9, 183, 0.15));
  border: 2px solid #9d4edd;
}

body.yokai .game-strategy:hover {
  box-shadow: 0 10px 40px rgba(157, 78, 221, 0.5);
}

body.yokai .game-card-image {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(114, 9, 183, 0.3));
  border-bottom: 2px solid #9d4edd;
  overflow: hidden;
}
body.yokai .game-card-image-content {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(114, 9, 183, 0.3));
  border-bottom: 2px solid #9d4edd;
}
body.yokai .game-strategy-image {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(114, 9, 183, 0.3));
  border-bottom: 2px solid #9d4edd;
  overflow: hidden;
}

body.yokai .game-strategy-image-content {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(114, 9, 183, 0.3));
  border-bottom: 2px solid #9d4edd;
}

body.yokai .game-card-info h3 {
  color: #9d4edd;
}

body.yokai .game-card-info p {
  color: #b19cd9;
}

body.yokai .game-strategy-info h3 {
  color: #9d4edd;
}

body.yokai .game-strategy-info p {
  color: #b19cd9;
}

body.yokai .about {
  background: radial-gradient(ellipse at center, #240046 0%, #0f0a15 100%);
}

body.yokai .form input,
body.yokai .form textarea {
  background: rgba(157, 78, 221, 0.1);
  border: 2px solid #9d4edd;
  color: #b19cd9;
}

body.yokai .contact-card {
  background: #4d3e6a;
  color: #b19cd9;
}

body.yokai .contact-card:hover {
  border-color: #9d4edd;
  color: #9d4edd;
}

body.yokai .footer {
  background: #0f0a15;
  border-top: 2px solid #9d4edd;
}

body.yokai .footer-social a {
  color: #9d4edd;
}

body.yokai .footer-social a:hover {
  color: #7209b7;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.8);
}

body.yokai .footer-text {
  color: #b19cd9;
}

/* ========== SHARED LAYOUT STYLES ========== */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Georgia', serif;
  font-weight: 600;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: 'Georgia', serif;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.hero p.subtitle {
  font-size: clamp(1rem, 1.5vw, 2rem);
  line-height: 1.75rem;
  letter-spacing: 3px;
  margin-bottom: 40px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  padding: 15px 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Georgia', serif;
  font-weight: bold;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: max(1rem, calc((100% - 1200px) / 2));
  padding-right: max(1rem, calc((100% - 1200px) / 2));
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  text-align: center;
  font-family: 'Georgia', serif;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: 'Georgia', serif;
}

.our-core-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.our-core-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.our-core-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.our-core-text ul {
  margin-left: 0;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.our-core-text ul li {
  margin-left: 2rem;
}

.our-core-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.our-core-image-content {
  width: 75%;
  height: auto;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  transition: all 0.3s;
  cursor: pointer;
}

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

.game-strategy {
  transition: all 0.3s;
  cursor: pointer;
}

.game-strategy:hover {
  transform: translateY(-10px);
}

.game-card-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.game-card-image-content {
  margin-top: -10%;
  width: 100%;
  height: auto;
}

.game-strategy-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.game-strategy-image-content {
  width: 100%;
  height: auto;
}

.game-card-info {
  padding: 20px;
}

.game-card-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
}

.game-card-info p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.game-strategy-info {
  padding: 20px;
}

.game-strategy-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
}

.game-strategy-info p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form input,
.form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.form textarea {
  height: 150px;
  resize: none;
}

.footer {
  padding: 1%;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 0.5%;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact-links {
  margin-top: 5%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border: 1px solid rgba(100, 200, 255, 0.1);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  /* .template-selector {
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }

  .template-selector button {
    padding: 8px 15px;
    font-size: 0.8rem;
  } */

  .nav {
    padding: 15px 5%;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.9rem;
  }

  .our-core-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .section {
    padding: 60px 5%;
  }

  .our-core-image {
    height: 300px;
  }
}
