.hero {
  min-height: 100vh;
  background: linear-gradient(to right, #2c3e50e6, #2c3e5099),
    url(../images/bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  color: #fff;
}
h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}
p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.button-group {
  display: flex;
  gap: 1rem;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.download-btn:hover {
  transform: translateY(-2px);
  background: var(--color-primary);
}
.learn-more-btn {
  background: transparent;
  border: 2px solid var(--color-accent);
  font-size: 1.2rem;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.learn-more-btn:hover {
  background: var(--color-accent);
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.game-logo {
  width: 300px;
  height: 300px;
  border-radius: 30px;
  box-shadow: 0 20px 40px #0000004d;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}
.game-logo:hover {
  transform: rotate(0) scale(1.05);
}
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content {
    order: 2;
  }
  .hero-image {
    order: 1;
  }
  h1 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1.1rem;
  }
  .button-group {
    justify-content: center;
    flex-wrap: wrap;
  }
  .game-logo {
    width: 200px;
    height: 200px;
  }
  .download-btn,
  .learn-more-btn {
    width: 100%;
    justify-content: center;
  }
}
.stats {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-card {
  background: #ffffff1a;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0000001a;
  background: #ffffff26;
}
.stat-number {
  font-family: Luckiest Guy, cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.stat-label {
  font-size: 1.2rem;
  color: #ffffffe6;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }
}
@media (max-width: 640px) {
  .stats {
    padding: 4rem 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-card {
    padding: 2rem 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 1rem;
  }
}
.screenshots {
  padding: 6rem 0;
  background: var(--color-background);
}

.swiper {
  width: 100%;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.screenshot-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.screenshot-card:hover {
  transform: translateY(-10px);
}
.screenshot-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.screenshot-card:hover img {
  transform: scale(1.05);
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 12px #0000001a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all 0.3s ease;
  z-index: 10;
}
.nav-button:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 16px #0003;
}
.nav-button.prev {
  left: 50px;
}
.nav-button.next {
  right: 50px;
}
.swiper-pagination {
  bottom: 0;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #4ecdc44d;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .screenshots {
    padding: 4rem 0;
  }
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .swiper {
    padding: 3rem 0rem;
  }
  .nav-button {
    width: 40px;
    height: 40px;
  }
  .nav-button.prev {
    left: 12px;
  }
  .nav-button.next {
    right: 12px;
  }
}
.reviews {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );
  position: relative;
}
.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}
.header-accent {
  width: 80px;
  height: 4px;
  background: #fff;
  margin: 1rem auto;
  border-radius: 2px;
}

.subtitle {
  font-size: 1.2rem;
  color: #ffffffe6;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.review-card {
  background: #ffffff1a;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-10px);
}
.review-card.featured {
  background: #ffffff26;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.reviewer-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #fff;
}
.stars {
  color: gold;
  font-size: 1.1rem;
}
.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #ffffffe6;
}
.platform {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #ffffff1a;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #fff;
}
.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.stat-box {
  background: #ffffff1a;
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: Luckiest Guy, cursive;
}
.stat-label {
  font-size: 1.1rem;
  color: #ffffffe6;
}
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews {
    padding: 4rem 0;
  }
  h2 {
    font-size: 2.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-box {
    padding: 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }
}
.faq {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff, #f8f9fa);
}
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}
.header-accent {
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 1rem auto;
  border-radius: 2px;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  opacity: 0.8;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.faq-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
}
.faq-question:hover {
  color: var(--color-primary);
}
.arrow {
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  height: auto;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.8;
}
.support-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8b8b 100%);
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: 0 20px 40px #00000026;
}
.support-content {
  padding: 4rem;
  color: #fff;
}
.support-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.support-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.support-btn:hover {
  transform: translateY(-2px);
}
.support-btn svg {
  transition: transform 0.3s ease;
}
.support-btn:hover svg {
  transform: scale(1.1);
}
.support-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 400px;
}
@media (max-width: 1024px) {
  .faq-grid,
  .support-card {
    grid-template-columns: 1fr;
  }
  .support-image {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }
  h2 {
    font-size: 2.5rem;
  }
  .support-content {
    padding: 2rem;
  }
  .support-content h3 {
    font-size: 2rem;
  }
  .support-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 3rem;
}
#screenshots h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}
h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 3rem;
}
.reviews-header h2 {
  font-size: 3.5rem;
  color: white !important;
  margin-bottom: 1rem;
}
.subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper {
  width: 100%;
  padding: 4rem 0rem !important;
  position: relative;
  overflow: hidden;
}
.cookie-type {
  background: var(--color-background);
  padding: 1.5rem;
  border-radius: 10px;
}

.policy {
  padding: calc(var(--header-height) + 4rem) 0 8rem;
  background: var(--color-background);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.policy h1 {
  font-size: 3.5rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 1rem;
}

.header-accent {
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.last-updated {
  text-align: center;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 3rem;
}

.policy-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* section {
  margin-bottom: 2.5rem;
} */

.policy h2 {
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.policy h3 {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.policy p {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.policy ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy li {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cookie-type {
  background: var(--color-background);
  padding: 1.5rem;
  border-radius: 10px;
}

.cookie-type h3 {
  color: var(--color-primary);
}

.cookie-type p {
  margin-bottom: 0;
  opacity: 0.8;
}

.contact-info {
  background: var(--color-background);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}
.contact .subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .policy {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
  }

  .policy h1 {
    font-size: 2.5rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .policy h2 {
    font-size: 1.5rem;
  }

  .policy h3 {
    font-size: 1.2rem;
  }
}

.contact {
  padding: calc(var(--header-height) + 4rem) 0 8rem;
  background: var(--color-background);
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-accent {
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 1rem auto;
  border-radius: 2px;
}

.contact h1 {
  font-size: 3.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.reviews-header .subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.8;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.form-container {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px #0000001a;
}

.contact-form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.contact label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px #4ecdc41a;
}

.contact textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.submit-btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.success-message.show {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.success-content {
  padding: 2rem;
}

.success-content h3 {
  color: var(--color-text);
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
}

.success-content p {
  color: var(--color-text);
  opacity: 0.8;
}

.checkmark {
  width: 52px;
  height: 52px;
  margin: 0 auto;
}

.checkmark-circle {
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px #0000001a;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.info-card {
  background: var(--color-background);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

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

.info-card p {
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .contact h1 {
    font-size: 2.5rem;
  }

  .form-container,
  .contact-info {
    padding: 1.5rem;
  }
}



#Pop-Up {
    align-items: center;
    top: 0;
    width: 100vw;
    height: 100vh;
background: linear-gradient(135deg, #1a1338 0%, #2d1b5e 50%, #1a1338 100%);
    z-index: 999999;
    display: flex;
    
    position: fixed;
    justify-content: center;
    flex-direction: column;
    overflow: auto;
    visibility: hidden;
	left: 0;
}

#Pop-Up-Content {
	height: 100%;
    width: 100%;
    box-sizing: border-box;
}
