/* Modern, bold typography and responsive flexbox grid */

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #212121;
  color: #fff;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 8px;
  box-sizing: border-box;
}

header {
  text-align: center;
  margin-bottom: 28px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px #c22626cc, 0 1px 1px rgba(0,0,0,0.9);
  margin: 0 0 8px 0;
}

.sparkle {
  color: #C22626;
  filter: drop-shadow(0 0 5px #C22626);
  font-size: 1.1em;
}

.username {
  font-weight: 400;
  color: #c22626;
  margin: 6px 0 0 0;
  font-size: 1.04rem;
  text-shadow: 0 1px 8px #C2262699;
}

.welcome {
  font-size: 1.06rem;
  color: #fff;
  margin: 12px 0 14px 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px #000b, 0 1px 1px rgba(0,0,0,0.8);
}

.dot {
  color: #C22626;
  font-weight: bold;
  text-shadow: 0 0 6px #C2262677;
}

.social-icons {
  margin: 30px 0 10px 0;
}

.social-icons a {
  color: #fff;
  background: #2c2c2d;
  border-radius: 50%;
  padding: 8px;
  margin: 0 7px;
  font-size: 25px;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 0 0 #C22626;
}
.social-icons a:hover {
  background: #C22626;
  color: #fff;
  box-shadow: 0 0 18px #C2262677, 0 2px 10px #C2262644;
}

main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  margin: 10px ;
  background: #18181a;
  border-radius: 20px;
  box-shadow: 0 4px 18px 2px #C2262640, 0 2px 8px #C22626;
  overflow: hidden;
  max-width: 100%;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid #C22626;
  display: flex;
  flex-direction: column;
  padding: 0px;
}

.card:hover {
  transform: translateY(-4px) scale(1.016);
  box-shadow: 0 8px 28px 0 #C2262677, 0 2px 16px #C22626;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.image-container {
  position: relative;
  width: 100%;
}
.card-img {
  width: 100%;
  object-fit: cover;
  min-height: 295px;
  max-height: 350px;
  display: block;
  background: #222;
  border-bottom: 1.5px solid #C22626;
  border-radius: 20px 20px 0 0;
}

/* Overlay label */
.icon-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(34, 34, 36, 0.86);
  border-radius: 18px;
  padding: 8px 18px 8px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 12px #C2262680, 0 1px 4px #C2262644;
  text-shadow: 0 1px 6px #C2262655;
  z-index: 2;
  border: 1.5px solid #C22626;
}

.icon-label .fa-star, .icon-label .fa-onlyfans {
  color: #C22626;
  filter: drop-shadow(0 0 6px #C2262666);
}

/* Responsive design */
@media (max-width: 600px) {
  .container {
    padding: 10px 2px;
  }
  h1 {
    font-size: 1.5rem;
  }
  .icon-label {
    left: 8px;
    bottom: 9px;
    font-size: 1rem;
    padding: 5px 10px 5px 8px;
  }
  .card-img {
    min-height: 190px;
    max-height: 260px;
  }
}

/* Optional: Hide OnlyFans icon if not available in FA, fallback to just label */
.icon-label .fa-onlyfans {
  display: inline-block;
}