* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #0a0014, #140026);
  color: white;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 30px;
}

header h1 {
  font-size: 2.5em;
  color: #ff2b75;
  text-shadow: 0 0 15px #ff2b75;
}

header p {
  color: #bbb;
  margin-top: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}


.card {
  background: rgba(0,0,0,0.5);
  border: 2px solid #ff2b75;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  transition: 0.3s;
}


.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px #ff2b75;
}

.rank {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ff2b75;
  color: black;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 50%;
}

.gold { border-color: gold; box-shadow: 0 0 20px gold; }
.silver { border-color: silver; box-shadow: 0 0 20px silver; }
.bronze { border-color: #cd7f32; box-shadow: 0 0 20px #cd7f32; }

.card h2 {
  margin-bottom: 10px;
}

.card p {
  color: #ccc;
  margin-bottom: 10px;
}

.links a {
  display: block;
  color: #00e1ff;
  text-decoration: none;
  margin: 5px 0;
}

.links a:hover {
  text-decoration: underline;
}

.visit-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #ff2b75;
  color: black;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.visit-btn:hover {
  background: white;
  color: black;
}

footer {
  text-align: center;
  padding: 20px;
  color: #777;
}

.no-link {
  display: block;
  color: #777;
  margin: 5px 0;
  cursor: not-allowed;
  font-style: italic;
}

.creator-card {
  background: linear-gradient(135deg, #1b1b3a, #0b0b1a);
  border: 2px solid #ff0055;
  box-shadow: 0 0 25px #ff0055;
  border-radius: 20px;
  padding: 25px;
  margin: 30px auto;
  max-width: 400px;
  text-align: center;
}

.creator-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #ff0055;
  margin-bottom: 15px;
}

.creator-tag {
  color: #ff0055;
  font-weight: bold;	
  margin-bottom: 10px;
}

.creator-links a {
  display: inline-block;
  margin: 8px;
  padding: 10px 15px;
  background: #ff0055;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.creator-links a:hover {
  background: #ffd700;
  color: #000;
}

