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

body {
  background: #000;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shooting stars canvas */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Card */
.card {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 420px;
  background: rgba(10, 10, 20, 0.85);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Banner */
.banner {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profile */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 16px;
  margin-top: -48px;
}

.pfp {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #0a0a14;
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.profile h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Discord button */
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 24px;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(88, 101, 242, 0);
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

/* Tabs */
.tabs {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px;
}

.tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.tab.active {
  color: #5865F2;
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #5865F2;
  border-radius: 2px;
}

/* Tab content */
.tab-content {
  display: none;
  padding: 20px;
  animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tab-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.tab-content code {
  background: rgba(88, 101, 242, 0.15);
  color: #a5b4fc;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.chosen-image {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.image-hint {
  text-align: center;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 480px) {
  .card {
    width: 95%;
  }
  .banner {
    height: 100px;
  }
  .pfp {
    width: 80px;
    height: 80px;
  }
}
