* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
}

body {
  min-height: 100vh;
  background: #1B1F23;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  padding: 2rem;
}

/* BACKGROUND DEKORASI */
.background-deco {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(60px);
}

/* WRAPPER */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  width: 100%;
  max-width: 480px;
}

/* PROFIL */
.card {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  width: 100%;
}

.card img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: 0.3s ease-in-out;
}

.card img:hover {
  transform: scale(1.05);
}

.card h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px #000;
}

.card p {
  font-size: 1rem;
  color: #eee;
  text-shadow: 1px 1px 2px #000;
}

.buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.icon-btn i {
  color: white;
  transition: transform 0.2s ease-in-out;
}

.icon-btn:hover i {
  transform: scale(1.2);
  color: #1da1f2;
}

/* DESKRIPSI & PROJECT */
.desc-layer {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  width: 100%;
  color: #fff;
  text-align: left;
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.6;
}

.desc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desc-header h2 {
  font-size: 1.3rem;
}

.toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.toggle-content {
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}

.toggle-content.closed {
  max-height: 0;
}

/* PROJECT GRID */
.project-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.project-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  gap: 1rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.project-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.project-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.project-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s ease-in-out;
}

.project-link:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

/* POSTINGAN */
.post-layer {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 15px;
  width: 100%;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-top: 1.5rem;
}

.post-layer h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.post-layer h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin: 8px auto 0;
  border-radius: 10px;
  opacity: 0.5;
}

.post {
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.post p {
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.post small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.post img,
.post video,
.post audio {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  display: block;
  margin: 0.5rem auto;
}

/* LINK */
a {
  color: #ccc;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

/* RESPONSIF */
@media (max-width: 768px) {
  .card img {
    width: 180px;
    height: 240px;
  }

  .card h1 {
    font-size: 1.6rem;
  }

  .desc-layer, .post-layer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .card img {
    width: 150px;
    height: 200px;
  }

  .card h1 {
    font-size: 1.4rem;
  }

  .desc-layer, .post-layer {
    font-size: 0.85rem;
    padding: 1rem;
  }

  .buttons {
    gap: 1rem;
  }

  .toggle-btn {
    font-size: 1rem;
    width: 30px;
    height: 30px;
  }
}

/* ALBUM */
.album {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 1rem;
}

.album img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  object-fit: cover;
}
