* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  overflow: hidden;
}

/* Skrollitav sisu konteiner */
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.logo-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  opacity: 0.1;
  z-index: 0;
  filter: blur(10px);
}

.logo-bg img {
  width: 600px;
  max-width: 90vw;
}

.card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 3rem 2rem 7rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 420px;
  width: 90%;
  height: 80vh;
  overflow-y: auto;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p {
  color: #ddd;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.fixed-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  z-index: 2;
}

.btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.btn.roblox {
  background: #00e1ff;
  color: #000;
}

.btn.roblox:hover {
  background: #57f3ff;
}

.btn.discord {
  background: #5865F2;
  color: white;
}

.btn.discord:hover {
  background: #4b55d1;
}

.info-text {
  margin-top: 2rem;
  text-align: left;
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.5;
}

.info-text h2, .info-text h3 {
  color: #fff;
  margin: 1rem 0 0.5rem;
}

.info-text ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.info-text li {
  margin-bottom: 0.5rem;
}

.signature {
  margin-top: 1.5rem;
  font-style: italic;
  color: #dcdcdc;
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
  .card {
    padding: 2rem 1.5rem 7rem;
  }
}
