@import url("https://fonts.googleapis.com/css2?family=Share+Tech&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: black;
  color: white;
  font-family: Share Tech;
}

* i {
  color: white;
}

html,
body {
  scroll-behavior: smooth;
  cursor: none;
  overflow-x: hidden;
}

/* CUSTOM CIRCLE */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease,
    border 0.2s ease;
}

/* When hovering over target */
body.hovering .custom-cursor {
  width: 2cm;
  height: 2cm;
  background-color: transparent;
  border: 2px solid white;
}

/* Hide cursor on mobile and tablet */
@media (max-width: 1024px) {
  html,
  body {
    cursor: auto;
  }
  
  .custom-cursor {
    display: none;
  }
}

a {
  text-decoration: none;
  cursor: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: cyan;
}

@media (max-width: 1024px) {
  a {
    cursor: pointer;
  }
}

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

.title {
  text-align: center;
  margin-top: 20px;
  font-size: 1.5rem;
  color: white;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.logo img {
  width: 400px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .logo img {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 250px;
  }
}

.upload-date {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: white;
}

.upload-date p {
  display: inline;
  font-weight: normal;
}

@media (max-width: 768px) {
  .upload-date {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .upload-date {
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

.download-link,
.github-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.download-link p,
.github-link p {
  font-size: 1.2rem;
  color: white;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .download-link,
  .github-link {
    margin-top: 15px;
  }

  .download-link p,
  .github-link p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .download-link,
  .github-link {
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
  }

  .download-link p,
  .github-link p {
    font-size: 0.9rem;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.screenshots p {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 10px;
}

.screenshot {
  width: calc(33.33% - 20px);
  height: auto;
  min-width: 280px;
}

.screenshot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .screenshot {
    width: calc(50% - 20px);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .screenshots p {
    font-size: 1.5rem;
  }

  .screenshot {
    width: calc(50% - 10px);
    min-width: 200px;
  }

  .screenshots {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .screenshot {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .screenshots p {
    font-size: 1.3rem;
  }
}

.description {
  margin-top: 40px;
  font-size: 1.2rem;
  color: white;
}

.description h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.description p {
  line-height: 1.5;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .description {
    margin-top: 30px;
    font-size: 1rem;
  }

  .description h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .description {
    margin-top: 25px;
    font-size: 0.9rem;
  }

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

.documentation {
  margin-top: 40px;
  font-size: 1.2rem;
  color: white;
}

.documentation h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.documentation div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.documentation h4 {
  margin-bottom: 5px;
  margin-right: 5px;
  min-width: fit-content;
}

.documentation p {
  display: inline;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .documentation {
    margin-top: 30px;
    font-size: 1rem;
  }

  .documentation h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .documentation {
    margin-top: 25px;
    font-size: 0.9rem;
  }

  .documentation h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .documentation div {
    flex-direction: column;
    align-items: flex-start;
  }

  .documentation h4 {
    margin-bottom: 2px;
    margin-right: 0;
  }

  .documentation p {
    margin-bottom: 15px;
  }
}

/* Additional spacing for mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}