@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}

body {
  background-color: rgb(10, 10, 10);
  color: white;
  font-family: "Geologica", sans-serif;
  min-height: 100vh;
}

.grid {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #80808012 1px, transparent 1px),
    linear-gradient(to bottom, #80808012 1px, transparent 1px);
  background-size: 24px 24px;
}

a {
  text-decoration: none;
  color: white;
}

.logo-section {
  background-color: rgba(116, 116, 116, 0.157);
  backdrop-filter: blur(1px);
  height: 8vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline: 40px;
}

.a-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 6vh;
  transition: 0.3s;
}

.logo-image:hover {
  transition: 0.3s;
  transform: scale(1.03);
}

.social-links {
  display: flex;
  height: 6vh;
  justify-content: center;
  align-items: center;
}

.support-link {
  background: linear-gradient(90deg, #00bfff, #1ec6ff);
  padding: 2px 4px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.7), 0 0 10px rgba(0, 191, 255, 0.5),
    inset 0 0 5px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  margin-inline: 2rem;
}

.support-link:hover {
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.9), 0 0 4px rgba(0, 191, 255, 0.7),
    inset 0 0 2px rgba(255, 255, 255, 0.3);
}

.support-slogan {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
  transition: 0.3s;
}

.social-image {
  height: 3vh;
  transition: 0.3s;
}
.social-image-youtube {
  height: 5vh;
  transition: 0.3s;
}

.social-image:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

.slogan {
  font-weight: 400;
  font-size: 1rem;
  color: #bbb;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 30px 20px;
  gap: 50px;
}

.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1600px;
}

.card {
  background-color: #5656561d;
  backdrop-filter: blur(1px);
  border: 1px solid #333;
  border-radius: 15px;
  overflow: hidden;
  width: calc(25% - 20px);
  min-width: 330px;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-title {
  padding: 10px;
  text-align: center;
}

.card-title h3 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.price-section {
  text-align: center;
  margin: 5px 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #00bfff;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.new-price {
  color: #00bfff;
  font-weight: bold;
}

.description {
  padding: 10px 20px;
  color: #ccc;
  font-size: 1rem;
  flex-grow: 1;
}

.description ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.description li::before {
  content: "| ";
  color: #00bfff;
  margin-right: 5px;
}

.card-footer {
  padding: 15px 20px;
  text-align: center;
}

.download-button {
  background: linear-gradient(90deg, #00bfff, #1ec6ff);
  border: none;
  color: white;
  padding: 12px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.download-button:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.safety-block,
.seo-text {
  max-width: 1000px;
  background-color: #5656561d;
  backdrop-filter: blur(1px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  border: 1px solid #333;
}

.safety-block h2,
.faq-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #00bfff;
}

.safety-block ul,
.faq-block ul {
  list-style: none;
  padding-left: 0;
}

.safety-block li,
.faq-block li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  padding-left: 20px;
  position: relative;
}

.safety-block li::before,
.faq-block li::before {
  content: "\2724";
  position: absolute;
  left: 0;
  color: #1ec6ff;
}

.seo-text p {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 600px) {
  .logo-section {
    flex-direction: column;
    height: auto;
  }

  .logo-container {
    margin: 10px;
    flex-direction: column;
  }

  .slogan {
    font-size: 0.9rem;
  }

  .social-image {
    height: 4vh;
  }

  .list {
    padding: 10px;
  }

  .card {
    width: 100% !important;
    min-width: unset;
    max-width: unset;
  }

  .card-title h3 {
    font-size: 1.2rem;
  }

  .price-section {
    font-size: 1.1rem;
  }

  .description {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .download-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .safety-block,
  .seo-text {
    padding: 20px 15px;
  }
}
