* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0f0f0f;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

header a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

header a:hover {
  opacity: 0.7;
}

.discord-btn {
  background: #5865F2;
  padding: 8px 14px;
  border-radius: 6px;
}

/* HERO */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px;
  background: linear-gradient(to right, #000, #111);
}

.hero h1 {
  font-size: 3rem;
  animation: fadeUp 1s ease;
}

.hero p {
  opacity: 0.8;
}

/* PROFILES */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px;
}

.card {
  background: #161616;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  animation: fadeUp 0.6s ease;
}

.images {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #161616;
  border-radius: 12px;
  padding: 20px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeUp 0.6s ease;
}

.buttons {
  margin-top: 10px;
}

.tiktok-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 10px;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tiktok-btn img {
  width: 24px;
  height: 24px;
}

.tiktok-btn:hover {
  transform: scale(1.1);
  background: #111;
}


.images img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.images img:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
}

.modal .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  cursor: pointer;
  color: white;
}

