@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Comfortaa', cursive;
  background: linear-gradient(135deg, #8e2de2, #ff6ec4);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  padding-bottom: 60px;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('back.webp');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

header {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  height: 50px;
  max-width: 120px;
  object-fit: contain;
}

header .cta-button {
  padding: 8px 16px;
  background: #ff6ec4;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9em;
  transition: background 0.3s ease;
}

header .cta-button:hover {
  background: #8e2de2;
}

@media (max-width: 480px) {
  header .cta-button {

  }
}

h1 {
  margin: 20px 10px;
  font-size: 1.8em;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.7);
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 15px;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.3em;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.95em;
  margin-bottom: 10px;
  text-align: center;
}

.card button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff6ec4, #8e2de2);
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card button:hover {
  background: linear-gradient(135deg, #8e2de2, #ff6ec4);
}

.seo-content {
  padding: 20px 15px;
  max-width: 500px;
  color: #fff;
  font-size: 0.95em;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  z-index: 1;
}

footer {
  width: 100%;
  max-width: 500px;
  padding: 15px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 15px 15px;
  position: relative;
  z-index: 2;
  font-size: 0.85em;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .card {
    width: calc(50% - 20px);
  }
}
