* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --soft: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.18);
  --card: rgba(12, 12, 18, 0.48);
  --green: #00ff88;
  --red: #ff3b3b;
  --yellow: #ffcc4d;
  --gray: #747f8d;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #000;
  color: var(--white);
  font-family: "Inter", sans-serif;
}

/* Enter Screen */
.enter-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 35%),
    #050506;
  display: grid;
  place-items: center;
  transition: 0.8s ease;
  cursor: pointer;
}

.enter-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.enter-box {
  text-align: center;
  animation: enterFloat 2.5s ease-in-out infinite;
}

.enter-box h1 {
  font-size: clamp(38px, 8vw, 82px);
  font-weight: 800;
  letter-spacing: -2px;
  text-shadow: 0 0 32px rgba(255,255,255,0.45);
}

.enter-box p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 2px;
}

/* Background */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  filter: brightness(0.65) saturate(1.1);
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.14), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.82));
  backdrop-filter: blur(2px);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* Main */
.main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 14px;
}

.profile-card {
  width: min(470px, 100%);
  padding: 24px;
  border-radius: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(22px);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.16);
  text-align: center;
  animation: showCard 0.9s ease both;
}

.top-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.avatar-area {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
}

.avatar {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.8);
  box-shadow:
    0 0 35px rgba(255,255,255,0.24),
    0 0 85px rgba(255,255,255,0.12);
}

.status-dot {
  position: absolute;
  right: 8px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #17171c;
}

.status-dot.online {
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.status-dot.idle {
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
}

.status-dot.dnd {
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.status-dot.offline {
  background: var(--gray);
  box-shadow: 0 0 18px var(--gray);
}

.name {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 0 24px rgba(255,255,255,0.36);
}

.username {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.status-card {
  width: fit-content;
  max-width: 100%;
  margin: 15px auto 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-card p {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.status-badge {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge.online {
  background: var(--green);
  color: #001e10;
}

.status-badge.idle {
  background: var(--yellow);
  color: #1f1600;
}

.status-badge.dnd {
  background: var(--red);
  color: #fff;
}

.status-badge.offline {
  background: var(--gray);
  color: #fff;
}

.bio {
  min-height: 22px;
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.bio::after {
  content: "|";
  margin-left: 4px;
  animation: blink 0.7s infinite;
}

/* Music */
.music-box {
  margin-top: 22px;
  padding: 13px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.music-info {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.music-cover {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.13);
}

.music-info h3 {
  font-size: 14px;
}

.music-info p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.music-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  color: #111;
  background: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.music-btn:hover {
  transform: scale(1.08);
}

.volume-control {
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.76);
}

.volume-control input {
  width: 100%;
  accent-color: #fff;
  cursor: pointer;
}

/* Social */
.social-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  transition: 0.25s ease;
}

.social-row a:hover {
  transform: translateY(-5px);
  background: #fff;
  color: #111;
}

/* Links */
.links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.link-btn {
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.25s ease;
  overflow: hidden;
  position: relative;
}

.link-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transition: 0.55s ease;
}

.link-btn:hover::before {
  left: 120%;
}

.link-btn:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}

.link-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

@keyframes enterFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes showCard {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 520px) {
  .profile-card {
    padding: 20px;
    border-radius: 28px;
  }

  .name {
    font-size: 29px;
  }

  .avatar-area,
  .avatar {
    width: 112px;
    height: 112px;
  }

  .music-info h3 {
    font-size: 13px;
  }

  .music-info p {
    font-size: 11px;
  }

  .status-card {
    border-radius: 18px;
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   WIDE GUNSLOL STYLE PROFILE
========================= */

.profile-card.wide-profile {
  width: min(900px, 100%);
  padding: 26px;
  border-radius: 34px;
  text-align: left;
}

.wide-header {
  display: grid;
  grid-template-columns: 145px 1fr 300px;
  align-items: center;
  gap: 24px;
}

.wide-profile .top-icons {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.wide-profile .avatar-area {
  width: 138px;
  height: 138px;
  margin: 0;
}

.wide-profile .avatar {
  width: 138px;
  height: 138px;
}

.user-info {
  min-width: 0;
}

.wide-profile .name {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -1.5px;
}

.wide-profile .username {
  margin-top: 8px;
  font-size: 15px;
}

.wide-status {
  margin: 16px 0 0;
  width: fit-content;
  max-width: 100%;
}

.wide-status p {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.discord-emoji {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  border-radius: 4px;
}

.bio {
  text-align: left;
}

.music-side {
  width: 100%;
}

.music-side .music-box {
  margin-top: 0;
}

.wide-links {
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.wide-links .link-btn {
  min-height: 62px;
}

.social-row {
  justify-content: flex-start;
}

/* Glow hover biar lebih mirip profile aesthetic */
.wide-profile {
  position: relative;
}

.wide-profile::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.55),
    transparent,
    rgba(255,255,255,0.24),
    transparent
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Responsive tablet */
@media (max-width: 860px) {
  .wide-header {
    grid-template-columns: 120px 1fr;
  }

  .music-side {
    grid-column: 1 / -1;
  }

  .wide-profile .avatar-area,
  .wide-profile .avatar {
    width: 120px;
    height: 120px;
  }

  .wide-profile .name {
    font-size: 34px;
  }

  .wide-links {
    grid-template-columns: 1fr;
  }
}

/* Responsive HP */
@media (max-width: 560px) {
  .profile-card.wide-profile {
    text-align: center;
    padding: 21px;
  }

  .wide-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .wide-profile .top-icons {
    justify-content: center;
  }

  .user-info {
    text-align: center;
  }

  .wide-status {
    margin: 15px auto 0;
  }

  .bio {
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }

  .wide-profile .name {
    font-size: 30px;
  }
}

/* =========================
   TRANSPARENT CLEAN MODE
========================= */

/* Overlay dibuat sangat tipis */
.bg-overlay {
  background: rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: none !important;
}

/* Noise/grid dihilangkan agar tidak menghalangi background */
.noise {
  display: none !important;
}

/* Card dibuat transparan seperti glass */
.profile-card,
.profile-card.wide-profile {
  background: rgba(10, 10, 15, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

/* Hilangkan efek glow besar yang terlalu menutup */
.profile-card::after {
  display: none !important;
}

/* Shine dibuat lebih halus */
.profile-card::before {
  opacity: 0.35 !important;
}

/* Badge lebih transparan */
.badge,
.status-card,
.music-box,
.volume-control,
.link-btn,
.social-row a {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(6px);
}

/* Link hover tetap elegan tapi tidak terlalu menutup */
.link-btn:hover {
  background: rgba(255, 255, 255, 0.13) !important;
}

/* Avatar tetap jelas */
.avatar {
  border-color: rgba(255, 255, 255, 0.75) !important;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.22),
    0 0 60px rgba(255, 255, 255, 0.08) !important;
}

/* Background video jangan terlalu gelap */
.bg-video {
  filter: brightness(0.85) saturate(1.1) !important;
}

/* =========================
   FULL CLEAR MODE
   Tembus tanpa penghalang
========================= */

/* Background video full jelas */
.bg-video {
  filter: none !important;
}

/* Hilangkan overlay gelap */
.bg-overlay {
  display: none !important;
}

/* Hilangkan noise/grid */
.noise {
  display: none !important;
}

/* Card utama dibuat tanpa background */
.profile-card,
.profile-card.wide-profile {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Hilangkan efek card */
.profile-card::before,
.profile-card::after,
.wide-profile::before,
.wide-profile::after {
  display: none !important;
}

/* Badge dibuat tanpa kotak */
.badge {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Status card tanpa background */
.status-card,
.wide-status {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Music box tanpa background */
.music-box,
.volume-control {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Link button tanpa kotak penghalang */
.link-btn {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Hover link tetap ada sedikit animasi */
.link-btn:hover {
  background: transparent !important;
  transform: translateY(-4px);
}

/* Hilangkan efek shine di link */
.link-btn::before {
  display: none !important;
}

/* Social icon tanpa kotak */
.social-row a {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Music cover tanpa kotak */
.music-cover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Tombol play tetap terlihat */
.music-btn {
  background: rgba(255, 255, 255, 0.85) !important;
  color: #111 !important;
  box-shadow: none !important;
}

/* Avatar tetap jelas */
.avatar {
  border: 3px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow: none !important;
}

/* Text diberi shadow agar tetap terbaca di atas video */
.name,
.username,
.bio,
.status-card p,
.music-info h3,
.music-info p,
.link-btn,
.badge,
.volume-control,
.social-row a {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.85),
    0 0 14px rgba(0, 0, 0, 0.55);
}

/* Status badge tetap ada warna kecil */
.status-badge {
  border: none !important;
  box-shadow: none !important;
}

/* Volume slider tetap terlihat */
.volume-control input {
  accent-color: #ffffff;
}

/* =========================
   TOP RIGHT VIDEO VOLUME
========================= */

.top-volume {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 20;
  width: 190px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;

  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  gap: 9px;

  color: #ffffff;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.85),
    0 0 14px rgba(0, 0, 0, 0.55);
}

.top-volume input {
  width: 100%;
  cursor: pointer;
  accent-color: #ffffff;
}

.top-volume i {
  font-size: 13px;
}

/* Responsive HP */
@media (max-width: 520px) {
  .top-volume {
    top: 16px;
    right: 14px;
    width: 150px;
  }
}

/* =========================
   TOP RIGHT VIDEO VOLUME
========================= */

.top-volume {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 50;

  width: 190px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;

  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  gap: 9px;

  color: #ffffff;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 0 14px rgba(0, 0, 0, 0.65);
}

.top-volume input {
  width: 100%;
  cursor: pointer;
  accent-color: #ffffff;
}

.top-volume i {
  font-size: 13px;
}

/* Hilangkan music box lama kalau masih ada */
.music-box,
.volume-control,
.music-side {
  display: none !important;
}

@media (max-width: 520px) {
  .top-volume {
    top: 16px;
    right: 14px;
    width: 150px;
  }
}

/* =========================
   SOFT TRANSPARENT READABLE MODE
   Sedikit transparan agar text tidak tabrakan
========================= */

/* Video tetap jelas, hanya sedikit digelapkan */
.bg-video {
  filter: brightness(0.82) saturate(1.08) !important;
}

/* Overlay tipis saja, tidak terlalu menghalangi */
.bg-overlay {
  display: block !important;
  background: rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: none !important;
}

/* Noise tetap hilang agar bersih */
.noise {
  display: none !important;
}

/* Card utama sedikit transparan */
.profile-card,
.profile-card.wide-profile {
  background: rgba(8, 8, 12, 0.24) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(5px) !important;
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Hilangkan glow besar yang menutup */
.profile-card::after {
  display: none !important;
}

/* Efek shine dibuat sangat halus */
.profile-card::before,
.wide-profile::before {
  opacity: 0.22 !important;
}

/* Area kecil dibuat sedikit transparan agar text kebaca */
.badge,
.status-card,
.wide-status,
.link-btn,
.social-row a {
  background: rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(4px) !important;
  box-shadow: none !important;
}

/* Link hover tetap soft */
.link-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-4px);
}

/* Hilangkan shine link yang terlalu ramai */
.link-btn::before {
  opacity: 0.25 !important;
}

/* Volume pojok kanan atas tetap bersih */
.top-volume {
  background: rgba(0, 0, 0, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(4px) !important;
}

/* Text dibuat lebih aman terbaca */
.name,
.username,
.bio,
.status-card p,
.wide-status p,
.link-btn,
.badge,
.social-row a,
.top-volume {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.85),
    0 0 14px rgba(0, 0, 0, 0.5);
}

/* Avatar tetap clean */
.avatar {
  border: 3px solid rgba(255, 255, 255, 0.78) !important;
  box-shadow:
    0 0 25px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(255, 255, 255, 0.08) !important;
}

/* Music box lama tetap disembunyikan */
.music-box,
.volume-control,
.music-side {
  display: none !important;
}

/* =========================
   CUSTOM ANIMATED CURSOR
========================= */

* {
  cursor: none !important;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 22px rgba(255, 255, 255, 0.55);
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.25),
    inset 0 0 14px rgba(255, 255, 255, 0.08);
}

/* Saat hover tombol/link */
.cursor-outline.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
}

.cursor-dot.cursor-hover {
  width: 9px;
  height: 9px;
}

/* Saat klik */
.cursor-outline.cursor-click {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.14);
}

/* Saat cursor keluar dari layar */
.cursor-hidden {
  opacity: 0;
}

/* Matikan custom cursor di HP/tablet */
@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }

  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }
}