body {
  margin: 0;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  background: radial-gradient(circle, #00ff88 10%, transparent 60%);
  border: 3px solid #00ff88;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px #00ff88;
  padding: 10px;
  font-size: 0;
  text-shadow: none;
  font-weight: normal;
}

.logo img {
  width: 135px;
  height: 135px;
  object-fit: contain;
  display: flex;
  border-radius: 20px;
}

#payment-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

#payment-modal {
  background: rgb(31, 31, 31);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  min-width: 300px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

h1 {
  color: #00ff88;
  font-size: 1.8rem;
  text-shadow: 0 0 1px #ffffff;
  margin: 0 0 20px;
  text-align: left;
}

h2 {
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
  text-align: center;
}

h3 {
  color: rgb(187, 187, 187);
  font-size: 1.2rem;
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
}

p {
  color: rgb(223, 223, 223);
  font-size: 1.2rem;
  max-width: 600px;
  text-align: left;
  margin-bottom: 40px;
}

.p {
  text-align: left;
  display: inline-block;
  width: 100%;
}

.button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.button-wrapper button {
  padding: 12px 24px;
  background-color: #00ff88;
  border: none;
  border-radius: 12px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px #00ff88;
  transition: transform 0.2s;
}

.button-wrapper button:hover {
  transform: scale(1.05);
}

/* Overlay háttér */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
}

/* Modal doboz */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #222;
  padding: 30px;
  border-radius: 15px;
  z-index: 1001;
  width: 90%;
  max-width: 500px;
  color: white;
  box-shadow: 0 0 15px #00ff88;
  text-align: left;
}

.modal button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00ff88;
  border: none;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  float: right;
}

/* Kezdetben elrejtve */
.hidden {
  display: none;
}

.description-box {
  background-color: rgba(29, 29, 29, 0.7);
  padding: 30px;
  border-radius: 15px;
  color: #e0e0e0;
  max-width: 500px;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.774);
  font-family: 'Arial';
}

.image-container {
  perspective: 1000px;
  width: fit-content;
  margin-left: 0;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.tilt-image {
  width: 650px;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  border-radius: 15px;
  display: block;
}

.buy-button {
  background: #000;
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 15px 40px;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ff88;
  border-radius: 10px;
}

.buy-button:hover {
  background: #00ff88;
  color: #000;
  box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
}

footer {
  position: absolute;
  bottom: 20px;
  color: #444;
  font-size: 0.9rem;
}

/* ----------- Reszponzív design ----------- */

@media (max-width: 1024px) {
  .tilt-image {
    width: 450px;
  }
  .description-box {
    max-width: 400px;
    right: 30px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
    padding: 20px;
    height: auto;
    overflow: auto;
  }

  .image-container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 20px auto;
  }

  .tilt-image {
    width: 100%;
    max-width: 350px;
  }

  .description-box {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 20px auto;
    max-width: 100%;
    text-align: center;
  }

  h1, p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tilt-image {
    max-width: 250px;
  }
  .buy-button {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
  h1 {
    font-size: 1.4rem;
  }
  p {
    font-size: 1rem;
  }
}
