* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  color: #e0ffff;
  background-color: #1a1a2e;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  color: #00ffff;
}

a {
  text-decoration: none;
  color: #00ffff;
  transition: color 0.3s ease;
}
a:hover {
  color: #4dffff;
}

.header {
  background-color: #1a1a2e;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .nav-container {
    padding: 0 2rem;
  }
}
.nav .logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #7b68ee;
}
@media (min-width: 768px) {
  .nav .logo {
    font-size: 2.2rem;
  }
}
.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}
.nav-menu li {
  margin-left: 2rem;
}
.nav-menu li a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e0ffff;
}
.nav-menu li a:hover {
  color: #00ffff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #7b68ee;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

body.mobile-menu-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  animation: slideIn 0.3s forwards;
}
body.mobile-menu-open .nav-menu li {
  margin: 1.5rem 0;
}
body.mobile-menu-open .nav-menu li a {
  font-size: 1.8rem;
  color: #7b68ee;
}
body.mobile-menu-open .nav-menu li a:hover {
  color: #00ffff;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #1a1a2e, black);
}
@media (min-width: 768px) {
  .hero {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 6rem 3rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-bg.webp") no-repeat center center/cover;
  opacity: 0.3;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #e0ffff;
}
.hero-content h1 {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
}
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-shadow: 0 0 5px rgba(26, 26, 46, 0.8);
}
@media (min-width: 768px) {
  .hero-content p {
    font-size: 1.3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .hero-content p {
    font-size: 1.5rem;
  }
}
.hero-content .google-play-btn {
  display: inline-block;
  margin-top: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-content .google-play-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(123, 104, 238, 0.4);
}
.hero-content .google-play-btn img {
  width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .hero-content .google-play-btn img {
    width: 220px;
  }
}
@media (min-width: 1024px) {
  .hero-content .google-play-btn img {
    width: 250px;
  }
}

.about-game {
  padding: 4rem 1rem;
  background-color: #23233e;
  color: #e0ffff;
}
@media (min-width: 768px) {
  .about-game {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .about-game {
    padding: 8rem 3rem;
  }
}
.about-game .container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-game .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-game .about-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .about-game .about-content:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.about-game .about-text {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .about-game .about-text {
    text-align: left;
  }
}
.about-game .about-text h2 {
  font-size: 2.2rem;
  color: #7b68ee;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-game .about-text h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .about-game .about-text h2 {
    font-size: 3.5rem;
  }
}
.about-game .about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about-game .about-text p {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .about-game .about-text p {
    font-size: 1.2rem;
  }
}
.about-game .about-text .google-play-btn {
  display: inline-block;
  margin-top: 1rem;
}
.about-game .about-text .google-play-btn img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .about-game .about-text .google-play-btn img {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .about-game .about-text .google-play-btn img {
    width: 200px;
  }
}
.about-game .about-text .google-play-btn img:hover {
  transform: scale(1.05);
}
.about-game .about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-game .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.why-play {
  padding: 4rem 1rem;
  background-color: #1a1a2e;
  color: #e0ffff;
  text-align: center;
}
@media (min-width: 768px) {
  .why-play {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .why-play {
    padding: 8rem 3rem;
  }
}
.why-play .container {
  max-width: 1200px;
  margin: 0 auto;
}
.why-play h2 {
  font-size: 2.2rem;
  color: #7b68ee;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .why-play h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .why-play h2 {
    font-size: 3.8rem;
    margin-bottom: 4.5rem;
  }
}
.why-play .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .why-play .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .why-play .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.why-play .feature-card {
  background-color: #292948;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.why-play .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(123, 104, 238, 0.3);
}
.why-play .feature-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #00ffff;
  margin-top: 0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .why-play .feature-card h3 {
    font-size: 1.5rem;
  }
}
.why-play .feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
}
@media (min-width: 768px) {
  .why-play .feature-card p {
    font-size: 1rem;
  }
}
.why-play .section-cta {
  margin-top: 3rem;
}
.why-play .section-cta .google-play-btn {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-play .section-cta .google-play-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(123, 104, 238, 0.4);
}
.why-play .section-cta .google-play-btn img {
  width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .why-play .section-cta .google-play-btn img {
    width: 220px;
  }
}
@media (min-width: 1024px) {
  .why-play .section-cta .google-play-btn img {
    width: 250px;
  }
}

.reviews {
  padding: 4rem 1rem;
  background-color: #23233e;
  color: #e0ffff;
  text-align: center;
}
@media (min-width: 768px) {
  .reviews {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .reviews {
    padding: 8rem 3rem;
  }
}
.reviews .container {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews h2 {
  font-size: 2.2rem;
  color: #7b68ee;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .reviews h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .reviews h2 {
    font-size: 3.8rem;
    margin-bottom: 4.5rem;
  }
}
.reviews .reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .reviews .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .reviews .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.reviews .review-card {
  background-color: #292948;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .reviews .review-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 2rem;
  }
}
.reviews .review-card .reviewer-photo {
  flex-shrink: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .reviews .review-card .reviewer-photo {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
.reviews .review-card .reviewer-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #7b68ee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.reviews .review-card .review-content {
  flex-grow: 1;
}
.reviews .review-card .review-content h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  color: #00ffff;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .reviews .review-card .review-content h3 {
    font-size: 1.2rem;
  }
}
.reviews .review-card .review-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: white;
}
@media (min-width: 768px) {
  .reviews .review-card .review-content p {
    font-size: 1rem;
  }
}

.gallery {
  padding: 4rem 1rem;
  background-color: #1a1a2e;
  color: #e0ffff;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .gallery {
    padding: 8rem 3rem;
  }
}
.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery h2 {
  font-size: 2.2rem;
  color: #7b68ee;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .gallery h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .gallery h2 {
    font-size: 3.8rem;
    margin-bottom: 4.5rem;
  }
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.gallery .gallery-item {
  background-color: #292948;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery .gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}
.gallery .gallery-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .gallery .gallery-item img {
    height: 250px;
  }
}
@media (min-width: 1024px) {
  .gallery .gallery-item img {
    height: 300px;
  }
}
.gallery .section-cta {
  margin-top: 3rem;
}
.gallery .section-cta .google-play-btn {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery .section-cta .google-play-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(123, 104, 238, 0.4);
}
.gallery .section-cta .google-play-btn img {
  width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .gallery .section-cta .google-play-btn img {
    width: 220px;
  }
}
@media (min-width: 1024px) {
  .gallery .section-cta .google-play-btn img {
    width: 250px;
  }
}

.contact-form {
  padding: 4rem 1rem;
  background-color: #23233e;
  color: #e0ffff;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-form {
    padding: 8rem 3rem;
  }
}
.contact-form .container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form h2 {
  font-size: 2.2rem;
  color: #7b68ee;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contact-form h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .contact-form h2 {
    font-size: 3.8rem;
    margin-bottom: 4.5rem;
  }
}
.contact-form .form {
  background-color: #292948;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form .form {
    padding: 3rem;
  }
}
.contact-form .form .form-group {
  width: 100%;
}
.contact-form .form .form-group input,
.contact-form .form .form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #36365f;
  border-radius: 5px;
  background-color: #2c2c4f;
  color: #e0ffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form .form .form-group input::-moz-placeholder, .contact-form .form .form-group textarea::-moz-placeholder {
  color: white;
}
.contact-form .form .form-group input::placeholder,
.contact-form .form .form-group textarea::placeholder {
  color: white;
}
.contact-form .form .form-group input:focus,
.contact-form .form .form-group textarea:focus {
  border-color: #00ffff;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.3);
}
.contact-form .form .form-group textarea {
  resize: vertical;
}
.contact-form .form .submit-btn {
  display: inline-block;
  width: auto;
  padding: 1rem 2.5rem;
  background-color: #7b68ee;
  color: #e0ffff;
  border: none;
  border-radius: 5px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  align-self: center;
}
.contact-form .form .submit-btn:hover {
  background-color: #a396f3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(123, 104, 238, 0.4);
}
.contact-form .form .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(123, 104, 238, 0.4);
}
.contact-form .form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.contact-form .form-status.success {
  background-color: #28a745;
  color: #fff;
}
.contact-form .form-status.error {
  background-color: #dc3545;
  color: #fff;
}

.footer {
  padding: 4rem 1rem 2rem;
  background-color: #0b0b14;
  color: white;
  text-align: center;
  border-top: 1px solid rgba(123, 104, 238, 0.2);
}
@media (min-width: 768px) {
  .footer {
    padding: 6rem 2rem 3rem;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 8rem 3rem 4rem;
  }
}
.footer .container {
  max-width: 1000px;
  margin: 0 auto;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer .footer-content h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .footer .footer-content h2 {
    font-size: 2.8rem;
  }
}
.footer .footer-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer .footer-content p a {
  color: #7b68ee;
}
.footer .footer-content p a:hover {
  color: #b7adf6;
}
@media (min-width: 768px) {
  .footer .footer-content p {
    font-size: 1rem;
  }
}
.footer .footer-content .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer .footer-content .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer .footer-content .footer-links a {
  font-size: 0.95rem;
  color: #faffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer .footer-content .footer-links a:hover {
  color: #7b68ee;
}
.footer .footer-content .copyright {
  font-size: 0.8rem;
  margin-top: 2rem;
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(106, 90, 205, 0.95);
  color: #e0ffff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    padding: 1.2rem 2rem;
  }
}
.cookie-banner p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .cookie-banner p {
    margin: 0 1.5rem 0 0;
    font-size: 1rem;
  }
}
.cookie-banner p a {
  color: #00ffff;
  font-weight: bold;
  text-decoration: underline;
}
.cookie-banner p a:hover {
  color: #33ffff;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-buttons {
    flex-direction: row;
    width: auto;
  }
}
.cookie-banner .cookie-buttons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}
.cookie-banner .cookie-buttons button#accept-cookies {
  background-color: #7b68ee;
  color: #e0ffff;
}
.cookie-banner .cookie-buttons button#accept-cookies:hover {
  background-color: #a396f3;
  transform: translateY(-2px);
}
.cookie-banner .cookie-buttons button#decline-cookies {
  background-color: #4b39bb;
  color: #faffff;
  border: 1px solid #7c6ed3;
}
.cookie-banner .cookie-buttons button#decline-cookies:hover {
  background-color: #4333a8;
  transform: translateY(-2px);
}

.legal {
  padding: 4rem 1rem;
  background-color: #1e1e35;
  color: white;
  line-height: 1.8;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .legal {
    padding: 6rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .legal {
    padding: 8rem 3rem;
    font-size: 1.05rem;
  }
}
.legal .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.legal h1 {
  font-size: 2.8rem;
  color: #7b68ee;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .legal h1 {
    font-size: 3.5rem;
  }
}
.legal h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .legal h2 {
    font-size: 2.5rem;
  }
}
.legal h3 {
  font-size: 1.4rem;
  color: #7b68ee;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .legal h3 {
    font-size: 1.6rem;
  }
}
.legal p {
  margin-bottom: 1rem;
}
.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.legal ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}
.legal strong {
  color: #e0ffff;
}
.legal a {
  color: #00ffff;
  text-decoration: underline;
}
.legal a:hover {
  color: #4dffff;
}