html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #0b0b0b;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  padding-top: 40px;
  box-sizing: border-box;
}

.container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  max-width: 95%;
  box-sizing: border-box;
}

.profile-card {
  width: 380px;
  min-height: 280px;
  background: #0c0c0c;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.pfp-area {
  position: relative;
}

#user-pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

#status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #111214;
  background: #747f8d;
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.user-name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.bio {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-align: center;
}

.location {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin-top: 50px;
}

.social-buttons a {
  color: #ffffff;
  font-size: 24px;
  transition: transform 0.2s, color 0.2s;
}

.social-buttons a:hover {
  transform: scale(1.2);
  color: #424242;
}

.status-card {
  width: 420px;
  height: 140px;
  position: relative;
  background: #111214;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.background-container, .overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

.bg-gif {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  z-index: 2;
}

.discord-icon {
  position: absolute; top: 12px; left: 12px;
  z-index: 4; opacity: 0.6;
}

.content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 20px;
}

.game-icon {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.time-text {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 740px) {
  .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .profile-card, .status-card {
    width: 100%;
    max-width: 420px;
  }

  .game-icon {
    width: 60px;
    height: 60px;
  }

  .status-text {
    font-size: 16px;
  }

  .time-text {
    font-size: 12px;
  }
}