body {
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

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

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.site-header .logo a:hover {
  color: #555;
}
.site-header .main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.site-header .main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.site-header .main-nav ul li a:hover {
  color: #007BFF;
}

.hero-section {
  position: relative;
  background-image: url("/assets/img/hero.webp");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}
.hero-section .hero-button {
  display: inline-block;
  background-color: #ff9800;
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.2s;
}
.hero-section .hero-button:hover {
  background-color: #e68900;
  transform: translateY(-3px);
}

.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.about-section .about-text {
  flex: 1 1 400px;
  max-width: 600px;
}
.about-section .about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.about-section .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.about-section .about-image {
  flex: 1 1 300px;
  max-width: 500px;
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.game-story-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}
.game-story-section .game-story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.game-story-section .game-image {
  flex: 1 1 400px;
  max-width: 500px;
}
.game-story-section .game-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.game-story-section .game-text {
  flex: 1 1 400px;
  max-width: 600px;
}
.game-story-section .game-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.game-story-section .game-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.features-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}
.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.features-section .feature-item {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.features-section .feature-item:hover {
  transform: translateY(-5px);
}
.features-section .feature-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ff9800;
}
.features-section .feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}
.features-section .feature-item p {
  font-size: 1rem;
  color: #555;
}

.reviews-section {
  padding: 80px 20px;
  background-color: #f0f0f5;
  text-align: center;
}
.reviews-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.reviews-section .review-item {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.reviews-section .review-item:hover {
  transform: translateY(-5px);
}
.reviews-section .review-item .review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}
.reviews-section .review-item .review-author {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

.contact-section {
  padding: 80px 20px;
  background-color: #ffffff;
  position: relative;
}
.contact-section .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.contact-section .contact-image {
  flex: 1 1 400px;
  max-width: 500px;
}
.contact-section .contact-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.contact-section .contact-form {
  flex: 1 1 400px;
  max-width: 600px;
}
.contact-section .contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .contact-form form input,
.contact-section .contact-form form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 95%;
}
.contact-section .contact-form form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form form button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-section .contact-form form button:hover {
  background-color: #e68900;
}
.contact-section .thank-you-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.contact-section .thank-you-popup .popup-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
}
.contact-section .thank-you-popup .popup-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}
.contact-section .thank-you-popup .popup-content button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-section .thank-you-popup .popup-content button:hover {
  background-color: #e68900;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
.site-footer .footer-nav {
  display: flex;
  gap: 20px;
}
.site-footer .footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.site-footer .footer-nav a:hover {
  color: #ff9800;
}
.site-footer .footer-copy {
  font-size: 0.9rem;
  color: #bbb;
}

.contact-hero {
  background-color: #f8f7ff;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
  color: #333;
  position: relative;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
}
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: "Oswald", sans-serif;
}
.contact-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.disclaimer-section h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}
.disclaimer-section h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
}
.disclaimer-section p,
.disclaimer-section ul {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.disclaimer-section ul {
  padding-left: 20px;
}
.disclaimer-section ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.cookies-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.cookies-section h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}
.cookies-section h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
}
.cookies-section p,
.cookies-section ul {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.cookies-section ul {
  padding-left: 20px;
}
.cookies-section ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.privacy-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.privacy-section h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}
.privacy-section h2 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
}
.privacy-section p,
.privacy-section ul {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.privacy-section ul {
  padding-left: 20px;
}
.privacy-section ul li {
  list-style: disc;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */