* {
  box-sizing: border-box;
}

:root {
  --glass: rgba(30, 30, 30, .56);
  --border: rgba(255,255,255,.08);
  --text: #fff;
  --muted: rgba(255,255,255,.65);
  --green: #25bd61;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Rubik Dirt", cursive;
  color: var(--text);
  background: #090909 url("assets/nền.jpg") center/cover fixed no-repeat;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58));
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.top-icons {
  position: fixed;
  top: 26px;
  left: 35px;
  z-index: 5;
  display: flex;
  gap: 24px;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: white;
  font-size: 34px;
  cursor: pointer;
  transition: transform .2s, color .2s;
  filter: drop-shadow(0 3px 8px #000);
}

.icon-btn:hover {
  transform: scale(1.12);
}

#likeBtn.liked {
  color: #ff4f87;
}

.page {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  margin: 55px auto 80px;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.hero {
  min-height: 290px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  padding: 35px 55px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-avatar {
  width: 235px;
  height: 235px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(.9) contrast(1.12);
  box-shadow: 0 0 0 12px rgba(0,0,0,.3), 0 15px 40px #000;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 0 5px 20px #000;
}

.profile-card {
  margin: 18px auto 22px;
  width: 94%;
  min-height: 135px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 18px 30px;
  gap: 18px;
}

.mini-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.username {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .5px;
}

.tag {
  color: #eee;
  font-size: 15px;
  font-weight: 800;
}

.status {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-btn {
  border: 0;
  padding: 8px 17px;
  border-radius: 15px;
  background: var(--green);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(37,189,97,.2);
}

.profile-btn:hover {
  filter: brightness(1.12);
}

.link-card {
  min-height: 250px;
  border-radius: 32px;
  margin: 18px 0;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s, background .25s;
}

.link-card:hover {
  transform: translateY(-4px);
  background: rgba(45,45,45,.68);
}

.discord {
  min-height: 260px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,.8) 100%),
    url("assets/background.jpg") center/cover;
}

.link-card h2 {
  margin: 0 0 7px;
  font-size: 23px;
  letter-spacing: 1px;
}

.link-card p {
  margin: 0;
  color: #bcbcbc;
  font-size: 14px;
}

@media (max-width: 650px) {
  .top-icons {
    top: 15px;
    left: 18px;
  }

  .hero {
    min-height: 230px;
    padding: 28px;
  }

  .hero-inner {
    gap: 18px;
  }

  .logo-avatar {
    width: 155px;
    height: 155px;
  }

  .profile-card {
    width: 100%;
    padding: 15px 20px;
  }
}
.discord {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.discord-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.discord-content {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
}

.discord-content h2 {
    margin: 0 0 8px;
    color: white;
}

.discord-content p {
    margin: 0;
    color: white;
}