.policy,
.success {
  padding-block: 120px 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;
}

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

.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: "Roboto", sans-serif;
  line-height: 1.6;
  color: #232555;
  background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #5a6c7d;
  line-height: 1.7;
}

/* Buttons */
.btn-primary {
  background: #232555;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #3b3d79;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 95, 220, 0.3);
}

.btn-outline {
  background: transparent;
  color: #4e71f6;
  border: 2px solid #4e71f6;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-outline:hover {
  background: #4e71f6;
  color: white;
  transform: translateY(-2px);
}

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

@keyframes floatLarge {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.floating:nth-child(2n) {
  animation: floatLarge 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.floating:nth-child(3n) {
  animation-delay: 1s;
}

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

.cookie-popup.hidden {
  display: none;
}

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

.cookie-content {
  background: #4e71f6;
  color: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cookie-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.cookie-buttons .btn-primary {
  background: white;
  color: #4e71f6;
}

.cookie-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cookie-buttons .btn-outline:hover {
  background: white;
  color: #4e71f6;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
}

.diamond {
  color: #4e71f6;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #5a6c7d;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #4e71f6;
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-text {
  max-width: 600px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-visual {
  position: relative;
  text-align: center;
}

.character-illustration {
  position: relative;
  z-index: 2;
}

.character-illustration img {
  width: 100%;
}

.game-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.icon {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 15px;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-1 {
  top: 10%;
  left: 20%;
  background: #ffd93d;
}

.icon-2 {
  top: 20%;
  right: 15%;
}

.icon-3 {
  top: 60%;
  right: 25%;
  background: #ff9f9f;
}

.icon-4 {
  bottom: 30%;
  left: 10%;
  background: #4e71f6;
  color: white;
}

.icon-5 {
  bottom: 10%;
  right: 30%;
  background: #50e3c2;
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: #4e71f6;
  color: white;
  border-radius: 40px;
  margin: 0 20px;
}

.playground-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.playground-visual {
  position: relative;
  text-align: center;
}

.playground-visual img {
  width: 100%;
}

.playground-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.playground-icons .icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.playground-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.playground-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Player Types Section */
.player-types {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header p {
  font-size: 1.1rem;
}

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

.player-type-content p {
  text-align: left;
}

.player-visual {
  position: relative;
  text-align: center;
}

.player-visual img {
  width: 100%;
}

.player-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.player-icons .icon {
  background: #ffd93d;
}

.games-philosophy h3 {
  margin-bottom: 1.5rem;
}

.games-philosophy p {
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;

  margin-bottom: 60px;
  background: #4e71f6;
  color: white;
  padding: 40px;
  border-radius: 40px;
}

@media (max-width: 768px) {
  .testimonial-featured {
    padding: 24px;
  }
}

.testimonial-featured .testimonial-card p {
  margin-bottom: 60px;
  color: #fff;
  font-size: 16px !important;
}

.testimonial-card {
  padding: 40px;
}

.testimonial-card.featured {
  background: #4e71f6;
  color: white;
}

.testimonial-card p {
  font-family: Roboto;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 24px !important;
  line-height: 120%;
  letter-spacing: 8%;
  text-transform: capitalize;

  margin-bottom: 30px;
  color: #232555;
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;

  gap: 15px;
}

.testimonial-author-featured {
  flex-direction: column;
}

.author-avatar img {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 24px;
}

.testimonial-card.featured .testimonial-author strong {
  color: white;
}

.testimonial-author span {
  font-size: 24px;
}

.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

/* Why Xydarion */
.why-xydarion {
  padding: 100px 0;
}

.why-xydarion h2 {
  text-align: center;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 250px));
  gap: 24px;
}

.feature-card {
  padding: 40px;
  border-radius: 20px;
  text-align: center;

  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 100%;
  object-fit: contain;
  margin-bottom: 30px;
}

.feature-card h3 {
  margin-bottom: 20px;
}

/* Games Collection */
.games-collection {
  padding: 100px 0;
}

.collection-header {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 600px;
  text-align: center;
}

.collection-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

.collection-header h1 {
  text-align: center;
}

.games-showcase {
  margin-bottom: 80px;
  background-color: #4e71f6;
  padding: 40px;
  border-radius: 40px;
}

.games-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .games-grid {
    flex-direction: column;
  }
}

.games-box img {
  width: 100%;
  max-width: 165px;
}

.game-card {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.collection-principles {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.principle h3 {
  margin-bottom: 20px;
}

.principle p {
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #4e71f6, #6c7ce0);
  color: white;
  text-align: center;
}

.contact-form h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-form p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

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

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.form button {
  background: white;
  color: #4e71f6;
  margin-top: 20px;
}

.form button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  color: white;
  padding: 60px 0 20px;
  background: #4e71f6;
  margin-inline: 18px;
  margin-bottom: 20px;
  border-radius: 40px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: white;
  font-size: 1.8rem;
}

.footer-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.social-link {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link img {
  width: 100px;
  height: 100px;
}

.footer-right {
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Mobile Navigation */
  .burger-menu {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    transition: right 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  /* Stats Section */
  .stats-section {
    margin: 0 10px;
    padding: 60px 20px;
  }

  .playground-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 60px;
  }

  .playground-content {
    order: 2;
  }

  .playground-visual {
    order: 1;
  }

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

  /* Player Types */
  .player-type-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .games-philosophy {
    order: 2;
  }

  .player-visual {
    order: 1;
  }

  /* Testimonials */
  .testimonial-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    padding: 30px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-card {
    padding: 30px;
  }

  /* Games Grid */
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-principles {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Cookie Popup */
  .cookie-content {
    padding: 30px;
    margin: 0 15px;
  }

  .cookie-content h3 {
    font-size: 1.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Sections padding */
  .player-types,
  .testimonials,
  .why-xydarion,
  .games-collection,
  .contact-form {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

  .icon {
    padding: 10px;
    font-size: 1.2rem;
  }
}

/* Games Page Styles */
.games-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.games-hero-content h1 {
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.games-hero-content p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.games-grid-section {
  padding: 80px 0;
}

.games-collection-large {
  margin-bottom: 80px;
}

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

.game-card-large {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.game-card-large:hover img {
  transform: scale(1.05);
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.game-card-large:hover .game-overlay {
  transform: translateY(0);
  opacity: 1;
}

.game-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.game-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.games-philosophy-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.philosophy-item h3 {
  margin-bottom: 20px;
}

.philosophy-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.load-more-section {
  padding: 80px 0;
  text-align: center;
}

.load-more-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #5a6c7d;
}

/* Game Page Styles */
.game-hero {
  padding: 120px 0 80px;
}

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

.game-info h1 {
  margin-bottom: 2rem;
  max-width: 500px;
}

.game-preview {
  position: relative;
  text-align: center;
}

.game-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffd93d;
  color: #2c3e50;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(255, 217, 61, 0.4);
}

.game-preview img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.game-description {
  padding: 80px 0;
}

.description-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.description-visual {
  position: relative;
  text-align: center;
}

.description-visual img {
  width: 100%;
  max-width: 500px;
}

.description-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.description-icons .icon {
  background: #4e71f6;
  color: white;
}

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

.game-features {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-content h2 {
  text-align: center;
  margin-bottom: 60px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2rem;
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-content p {
  color: #5a6c7d;
  margin: 0;
  line-height: 1.6;
}

.game-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #4e71f6, #6c7ce0);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.btn-primary.large {
  padding: 20px 40px;
  font-size: 1.2rem;
  background: white;
  color: #4e71f6;
}

.btn-primary.large:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.more-games {
  padding: 80px 0;
}

.more-games h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.more-games > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 60px;
  color: #5a6c7d;
}

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

.related-games .game-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.related-games .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-games .game-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.2rem;
}

.related-games .game-card p {
  padding: 0 20px 20px;
  margin: 0;
  color: #5a6c7d;
}

.more-games-cta {
  text-align: center;
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
  .games-grid-large {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .game-card-large {
    aspect-ratio: 16/10;
  }

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

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

  .game-info {
    order: 2;
  }

  .game-preview {
    order: 1;
  }

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

  .description-text {
    order: 2;
  }

  .description-visual {
    order: 1;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 20px;
  }

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

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

  .game-card-large {
    aspect-ratio: 4/3;
  }

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

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .floating,
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus states */
button:focus,
a:focus,
input:focus {
  outline: 2px solid #4e71f6;
  outline-offset: 2px;
}

.main-title {
  font-family: Roboto;
  font-weight: 700;
  font-style: Bold;
  font-size: 64px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: left;
}

.section-title {
  font-family: Roboto;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: left;
}

section p {
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px !important;
  line-height: 160%;
  letter-spacing: 0%;
}

.testimonial-visual img {
  width: 100%;
}
