:root {
  /* Основная цветовая палитра */
  --primary-color: #6c63ff;
  --primary-dark: #5a52d5;
  --primary-light: #7f78ff;
  
  /* Акцентные цвета */
  --accent-color: #ff6b6b;
  --accent-dark: #e55a5a;
  --accent-light: #ff8080;
  
  /* Пастельные цвета для неоморфизма */
  --neo-bg: #f0f2f5;
  --neo-shadow-dark: #d1d9e6;
  --neo-shadow-light: #ffffff;
  
  /* Нейтральные цвета */
  --text-primary: #333344;
  --text-secondary: #666677;
  --text-light: #9999aa;
  --bg-light: #ffffff;
  --bg-dark: #f2f4f8;
  --border-color: #e1e5eb;
  
  /* Дополнительные цвета для секций */
  --success-color: #4caf50;
  --info-color: #2196f3;
  --warning-color: #ff9800;
  --error-color: #f44336;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  --gradient-dark-overlay: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  
  /* Тени для объемных элементов */
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  --card-hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
  --neo-shadow: 6px 6px 12px var(--neo-shadow-dark), -6px -6px 12px var(--neo-shadow-light);
  
  /* Размеры и отступы */
  --container-padding: 5%;
  --section-spacing: 5rem;
  --card-border-radius: 12px;
  --button-border-radius: 30px;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--neo-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

h1 {
  font-size: 4.2rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.6rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--card-border-radius);
  object-fit: cover;
}

ul {
  list-style: none;
}

/* Контейнеры */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Секции */
section {
  padding: 6rem 0;
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  color: var(--text-secondary);
  font-size: 1.8rem;
}

/* Кнопки */
.btn-primary, 
.btn-secondary,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--button-border-radius);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--button-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
  color: white;
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 0;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list li a {
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-list li a:hover {
  color: var(--primary-color);
  background-color: rgba(108, 99, 255, 0.1);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark-overlay);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 3rem;
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease;
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease;
}

/* Top Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: 2rem;
  flex: 1;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

/* Insights Section */
.insights {
  background-color: var(--bg-dark);
  position: relative;
}

.insights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/insights-pattern.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.insight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--neo-shadow);
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-8px);
}

/* Projects Section */
.projects {
  position: relative;
  background-color: var(--bg-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neo-bg);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--neo-shadow);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
}

.project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.05);
}

.project-card .card-content {
  padding: 2rem;
  flex: 1;
}

/* Resources Section */
.resources {
  background-color: var(--bg-dark);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: var(--bg-light);
  border-radius: var(--card-border-radius);
  padding: 2.5rem;
  box-shadow: var(--neo-shadow);
  transition: transform 0.3s ease;
}

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

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.resource-card ul li {
  margin-bottom: 1rem;
}

.resource-card ul li a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.resource-card ul li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Stories Section */
.stories {
  background-color: var(--bg-light);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--neo-bg);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.story-card .card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  text-align: center;
}

.story-card .card-content {
  padding: 2rem;
  flex: 1;
}

.story-card h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Webinars Section */
.webinars {
  background-color: var(--bg-dark);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

.webinar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--neo-shadow);
  transition: all 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-8px);
}

.webinar-card .card-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
  text-align: center;
}

.webinar-card .card-content {
  padding: 2rem;
  flex: 1;
}

.event-date, .event-location {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* History Section */
.history {
  background-color: var(--bg-light);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  box-sizing: border-box;
  margin-bottom: 5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  position: absolute;
  width: 120px;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 6px;
  font-weight: bold;
  top: 0;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -60px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -60px;
}

.timeline-content {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--card-border-radius);
  box-shadow: var(--neo-shadow);
  position: relative;
}

.timeline-content::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -13px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -13px;
}

.timeline-image {
  margin-top: 2rem;
  text-align: center;
}

.timeline-image img {
  max-width: 100%;
  border-radius: var(--card-border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

/* Media Section */
.media {
  background-color: var(--bg-dark);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-item {
  height: 160px;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.video-section {
  margin-top: 5rem;
}

.video-section h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

.video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.05);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent var(--primary-color);
  transform: translateX(2px);
}

.video-item h4 {
  margin-top: 1.5rem;
  text-align: center;
}

/* Contact Section */
.contact {
  background-color: var(--bg-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form {
  background-color: var(--neo-bg);
  padding: 3rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--neo-shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-light);
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-item {
  margin-bottom: 2.5rem;
}

.info-item h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.social-links h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--primary-color);
  background-color: var(--neo-bg);
  border-radius: 30px;
  font-weight: 500;
  box-shadow: var(--neo-shadow);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white;
  background-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: #282a36;
  color: #ffffff;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.footer-logo p {
  color: #b8b8c0;
  font-size: 1.4rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-links-column h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
}

.footer-links-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links-column ul li {
  margin-bottom: 1rem;
}

.footer-links-column ul li a {
  color: #b8b8c0;
  transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b8b8c0;
  font-size: 1.4rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.modal-content {
  position: relative;
  background-color: var(--bg-light);
  max-width: 800px;
  margin: 5% auto;
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: var(--card-border-radius);
  overflow: hidden;
}

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

.game-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  background-color: var(--bg-dark);
  padding: 2rem;
  border-radius: var(--card-border-radius);
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  padding: 2rem;
}

.success-content {
  text-align: center;
  padding: 5rem;
  background-color: var(--bg-light);
  border-radius: var(--card-border-radius);
  box-shadow: var(--neo-shadow);
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

.success-icon {
  font-size: 8rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

/* Privacy and Terms pages */
.privacy-content,
.terms-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--card-border-radius);
  padding: 4rem;
  box-shadow: var(--card-shadow);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
  
  .container {
    padding: 0 4%;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 4.5rem;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 5rem;
    left: 0 !important;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-date {
    width: auto;
    position: relative;
    margin-bottom: 1.5rem;
    left: 0 !important;
    right: auto !important;
    text-align: left;
  }
  
  .timeline-content::after {
    left: -39px !important;
    top: 15px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .hero-content p {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }
  
  .nav-list li {
    width: 100%;
    text-align: center;
  }
  
  .nav-list li a {
    display: block;
    padding: 1.5rem;
    font-size: 1.8rem;
  }
  
  .burger-menu {
    display: flex;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .modal-content {
    width: 90%;
    margin: 10% auto;
  }
  
  .game-details {
    grid-template-columns: 1fr;
  }
}