/* --- CSS VARIABLES & RESET --- */
:root {
  --bg-dark: #090a0f;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-bg: rgba(255, 255, 255, 0.07);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --accent-neon: #6366f1; /* Indigo glow */
  
  /* Brand Colors */
  --telegram-color: #24a1de;
  --tiktok-color: #ff0050;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* --- BACKGROUND DECORATION --- */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0,0,0,0) 70%);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

/* --- LAYOUT CONTAINERS --- */
.outer {
  width: 100%;
  max-width: 520px;
  padding: 24px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- PROFILE CARD (GLASSMORPHISM) --- */
.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 24px 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-img-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
}

/* Efek lingkaran gradasi menyala di sekitar foto profil */
.profile-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--accent-neon), #a855f7);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.8;
}

.profile-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #11131c;
}

.profile-card h1 {
  color: var(--text-main);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.profile-card .tagline {
  color: var(--accent-neon);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.profile-card .location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.profile-card .bio {
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- BUTTON MAILTO --- */
.links {
  margin-top: 24px;
}

.contactbutton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-neon), #4f46e5);
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.contactbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

/* --- LINKS LIST (BENTO BOX STYLE) --- */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-right: 16px;
  transition: transform 0.3s ease;
}

.link-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.link-text {
  flex-grow: 1;
}

.link-text h2 {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.link-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

/* --- HOVER INTERACTIONS (MICRO-ANIMATIONS) --- */
.link-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Trigger efek warna brand spesifik saat hover */
.link-card.telegram:hover {
  box-shadow: 0 10px 25px -5px rgba(36, 161, 222, 0.2);
}
.link-card.telegram:hover .link-icon {
  background: rgba(36, 161, 222, 0.2);
  transform: scale(1.05) rotate(-5deg);
}

.link-card.tiktok:hover {
  box-shadow: 0 10px 25px -5px rgba(255, 0, 80, 0.2);
}
.link-card.tiktok:hover .link-icon {
  background: rgba(255, 0, 80, 0.2);
  transform: scale(1.05) rotate(5deg);
}

/* Panah bergeser manis ke kanan saat hover */
.link-card:hover .arrow {
  color: var(--text-main);
  transform: translateX(4px);
}
