/* Reset dan font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier';
  background: linear-gradient(135deg, #e0c3fc 0%, #0db2f9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Container utama */
.container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 420px;
  width: 100%;
}

/* Profil */
.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 5px;
}

p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

/* Link Button */
.link{
  display: block;
  background: #13a4e8;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  margin: 12px 0;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}

.link>button.accordion {
    text-decoration: none;
    background-color: #eee;
    color: #444;
    border-radius: 10px;
    margin: 5px 10px;
    font-weight: 700;
    cursor: pointer;
    padding: 20px;
    border: none;
    text-align: center;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
}

.link>button.accordion.active, button.accordion:hover{
    background-color: #dddddd00;
    color: white;
}

.link>div.panel {
    text-decoration: none;
    padding: 0 18px;
    color: rgba(0, 0, 0, 0);
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.link>div.panel>div>a {
    display: flex;
    flex: column;
    justify-content: center;
    text-decoration: none;
    word-spacing: normal;
    background-color: #eeeeee00;
    color: white;
    border-radius: 10px;
    margin: 5px 10px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px;
    border: none;
    text-align: center;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    font-family: arial;
}

.link>div.panel>div>a.active, div.panel>div>a:hover{
    background-color: #eee;
    color: black;
}

.links a {
  display: block;
  background: #110564;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  margin: 12px 0;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}

.links a:hover {
  background: #13a4e8;
  color: #110564;
  transform: translateY(-2px);
}

/* Footer */
footer {
  margin-top: 25px;
  font-size: 13px;
  color: #999;
}

/* Responsive tambahan */
@media (max-width: 480px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .links a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .profile-pic {
    width: 90px;
    height: 90px;
  }
}

.password-section {
  margin-bottom: 25px;
}

.password-section input {
  padding: 12px;
  width: 80%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.password-section button {
  padding: 10px 20px;
  background-color: #150676;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.password-section button:hover {
  background-color: #594ad0;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}