body {
  background: #ff1a1a;
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fffbe7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  background: #ff1a1a;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 15%;
}

nav ul li {
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

nav ul li:hover {
  opacity: 0.5;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  height: 100vh;
}

.headline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.big-text {
  font-family: 'Anton', 'Montserrat', Arial, sans-serif;
  font-size: 14rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fffbe7;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  display: inline-block;
}

.lips-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: auto;
  z-index: 1000;
  pointer-events: none;
}

.script-text {
  font-family: 'Great Vibes', cursive;
  font-size: 8rem;
  color: #fffbe7;
  margin-top: -30px;
  margin-bottom: 20px;
  z-index: 3;
  position: relative;
  left: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  max-width: 420px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.download-section {
  text-align: center;
}

.download-buttons {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 16px;
}

.download-btn {
  background: #fffbe7;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.download-btn:hover {
  transform: scale(1.08);
}

.download-btn img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  filter: invert(18%) sepia(99%) saturate(7492%) hue-rotate(-6deg) brightness(104%) contrast(119%);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0px;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Anton', 'Montserrat', Arial, sans-serif;
  font-size: 40vw;
  line-height: 1.5;
  margin-top: 50px;
  color: #7DF2EC;
  opacity: 1;
  letter-spacing: 0.05em;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(120deg, #7DF2EC 50%, #7DF2EC 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  transform: scaleY(1.4);
}

.hero-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/basketball.png');
  background-repeat: repeat;
  background-size: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

.hero-cards {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  z-index: 2;
  width: 100%;
  margin-top: 100px;
}

.hero-card {
  background: transparent;
  border-radius: 18px;
  margin-top: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1.5px 8px rgba(0,0,0,0.10);
  overflow: hidden;
  width: 320px;
  height: 400px;
  margin: 0 -30px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 7px solid rgba(255, 255, 255, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}

.hero-card-info {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff;
  padding: 18px 16px 10px 16px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  margin-top: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-card-status {
  font-size: 0.9rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 4px;
}

.hero-card-name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-card-check {
  color: #fffbe7;
  font-size: 1rem;
  margin-left: 2px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-card-age {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: auto;
  margin-bottom: 18px;
}

.hero-card-age-sup {
  font-size: 0.8rem;
  vertical-align: super;
  margin-left: 2px;
}

.hero-cards .hero-card:nth-child(1) {
  transform: translate(-30px, 30px) rotate(-12deg) !important;
}

.hero-cards .hero-card:nth-child(2) {
  z-index: 2;
  transform: translateY(-25%) rotate(6deg) !important;
}

.hero-cards .hero-card:nth-child(3) {
  transform: translateX(40px) rotate(10deg) !important;
}

@media (max-width: 900px) {
  .hero-bg-text {
    font-size: 18vw;
  }
  .hero-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-card {
    margin: 0;
    width: 90vw;
    max-width: 320px;
    height: 320px;
    transform: none !important;
  }
}
