.policy,
.success {
  padding-block: 160px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #ffffff;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Luckiest Guy", cursive;
  background-color: #0c0d0c;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Luckiest Guy", cursive;
  font-size: 16px;
  font-weight: normal;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00cc6a, #00aa55);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Luckiest Guy", cursive;
  font-size: 18px;
  font-weight: normal;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-play:hover {
  background: linear-gradient(135deg, #00cc6a, #00aa55);
  transform: scale(1.05);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-popup.show {
  display: flex;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(0px);
}

.cookie-content {
  position: relative;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: 20px;
  z-index: 10001;
}

.cookie-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

.cookie-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cccccc;
  font-family: Arial, sans-serif;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-accept {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  font-family: "Luckiest Guy", cursive;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-refuse {
  background: transparent;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #666666;
  font-family: "Luckiest Guy", cursive;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-accept:hover {
  background: linear-gradient(135deg, #00cc6a, #00aa55);
  transform: translateY(-2px);
}

.btn-refuse:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
  background-color: transparent !important;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #00ff88;
}

.logo img {
  width: 30px;
  height: 30px;
}

.logo span {
  font-size: 24px;
  font-weight: normal;
}

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

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: #00ff88;
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #00ff88;
}

/* Mobile Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: 1px;
}

.burger-menu.open span:nth-child(1) {
  transform: rotate(-45deg) translate(-10px, 15px);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3) {
  transform: rotate(45deg) translate(-10px, -15px);
}

.mobile-menu {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  display: none;
  margin-inline: 24px;
  border-radius: 20px;
}

.mobile-menu.show {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-list li {
  margin: 20px 0;
}

.mobile-nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
  transition: color 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  color: #00ff88;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;

  padding-block: 32px;
}

.hero-content {
  width: 100%;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/hero-bg.jpg) center/cover no-repeat;
  padding: 188px 80px 97px 80px;
  border-radius: 80px;
}

.hero--game1 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-1.png) center/cover no-repeat;
}


.hero--game2 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-2.png) center/cover no-repeat;
}

.hero--game3 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-3.png) center/cover no-repeat;
}


.hero--game4 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-4.png) center/cover no-repeat;
}


.hero--game5 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-5.png) center/cover no-repeat;
}


.hero--game6 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-6.png) center/cover no-repeat;
}


.hero--game7 .hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/themes/quarveta.com/img/game-bg-7.png) center/cover no-repeat;
}


.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #cccccc;
  font-family: Arial, sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Curiosity Section */
.curiosity-section {
  padding: 100px 0;
  color: #000000;
  position: relative;
  overflow: hidden;
  margin-inline: 20px;
}

.curiosity-section .container {
  border-radius: 80px;
  padding: 40px;
  background-color: #30f030;
}

.curiosity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 20px;
}

.curiosity-image img {
  width: 100%;
  height: auto;
  max-width: 460px;
  border-radius: 20px;
}

.curiosity-text h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.curiosity-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* Different Section */
.different-section {
  padding: 100px 0;
}

.different-section h2 {
  font-size: 48px;

  margin-bottom: 30px;
  text-transform: uppercase;
  color: #ffffff;
}

.section-description {
  font-size: 18px;

  max-width: 800px;
  margin: 0 0 60px;
  color: #cccccc;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

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

.feature-card {
  background-color: #ffffff;
  color: #000000;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

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

.feature-card--black {
  background-color: #000;
  color: #fff;
}

.feature-card--black .feature-number {
  background-color: #fff;
  color: #000;
}

.feature-number {
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 32px;
  margin-bottom: 15px;
  margin-top: 25px;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

/* About Section */
.about-section {
  padding: 100px 0;
  margin-inline: 20px;
}

.about-section .container {
  padding: 40px;
  border-radius: 80px;
  background-color: #fff;
  color: #1b1c1b;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #1b1c1b;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1b1c1b;
  font-family: Arial, sans-serif;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Form Section */
.form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
}

.form-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.form-content p {
  font-size: 18px;
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
}

.contact-form .btn-primary {
  background-color: #000000;
  color: #ffffff;
  margin-top: 20px;
  align-self: center;
}

.contact-form .btn-primary:hover {
  background-color: #333333;
  color: #00ff88;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 60px 0 20px;
  color: #cccccc;
}

.footer-content {
 display: flex;
 flex-direction: column;
 align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: Arial, sans-serif;
}

.footer-links a:hover {
  color: #00ff88;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: Arial, sans-serif;
}

.social-link:hover {
  color: #00ff88;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333333;
  font-family: Arial, sans-serif;
}

/* Games Page Styles */
.games-header {
  padding: 120px 0 60px;
  background-color: #1a1a1a;
  text-align: center;
}

.games-header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.games-header p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #cccccc;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.games-section {
  padding: 60px 0 100px;
  background-color: #1a1a1a;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 20px;
  margin-bottom: 60px;
}

.game-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #2a2a2a;
}

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

.game-card.large-card {
  grid-column: span 2;
  grid-row: span 2;
}

.game-card a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.game-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-info {
  padding: 15px;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #ffffff;
  text-transform: uppercase;
}

.game-info p {
  font-size: 12px;
  color: #00ff88;
  font-family: Arial, sans-serif;
}

.load-more-section {
  text-align: center;
}

/* Game Detail Page Styles */
.breadcrumb {
  padding: 100px 0 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #cccccc;
}

.breadcrumb a {
  color: #00ff88;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.game-hero {
  padding: 20px 0 60px;
  background-color: #1a1a1a;
}

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

.game-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.game-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.game-hero-info h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

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

.tag {
  background-color: #00ff88;
  color: #000000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.stars {
  color: #ffd700;
  font-size: 18px;
}

.rating-text {
  font-family: Arial, sans-serif;
  color: #cccccc;
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 15px;
  background-color: #2a2a2a;
  border-radius: 10px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #cccccc;
  margin-bottom: 5px;
  font-family: Arial, sans-serif;
}

.stat-value {
  display: block;
  font-size: 16px;
  color: #00ff88;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.game-about {
  padding: 60px 0;
  background-color: #2a2a2a;
}

.game-about h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #ffffff;
}

.game-about p {
  font-size: 18px;
  line-height: 1.7;
  color: #cccccc;
  font-family: Arial, sans-serif;
}

.game-features {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.game-features h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.game-screenshots {
  padding: 60px 0;
  background-color: #2a2a2a;
}

.game-screenshots h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.screenshot {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.screenshot:hover img {
  transform: scale(1.05);
}

.how-to-play {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.how-to-play h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.instructions {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #00ff88;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
}

.step-content p {
  font-size: 16px;
  color: #cccccc;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.related-games {
  padding: 60px 0;
  background-color: #2a2a2a;
}

.related-games h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

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

.game-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .curiosity-content,
  .about-content,
  .game-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 200px);
  }

  .game-card.large-card {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

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

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

  .different-section h2,
  .about-text h2,
  .games-header h1 {
    font-size: 32px;
  }

  .curiosity-text h2 {
    font-size: 28px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 180px);
  }

  .game-card.large-card {
    grid-column: span 2;
    grid-row: span 2;
  }

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

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

  .instruction-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .different-section h2,
  .about-text h2,
  .games-header h1 {
    font-size: 24px;
  }

  .curiosity-text h2 {
    font-size: 20px;
  }

  .cookie-content {
    margin: 10px;
    padding: 30px 20px;
  }

  .cookie-content h2 {
    font-size: 24px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .games-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(10, 200px);
  }

  .game-card.large-card {
    grid-column: span 1;
    grid-row: span 2;
  }

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

  .game-cta .cta-content h2 {
    font-size: 24px;
  }
}

.text {
  font-family: "Arial";
  font-weight: 400 !important;
  font-style: Regular;
  font-size: 16px !important;
  line-height: 160%;
  letter-spacing: 0%;
}

.section-title {
  font-family: "Luckiest Guy";
  font-weight: 400 !important;
  font-style: Regular;
font-size: 64px !important;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 40px !important;
  }
}
