body {
  background: #eee7d5;
}


/* Navigation */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  background: #28352b;
  border: 2px solid #65765b;
  border-radius: 14px;

  padding: 8px;
  margin: 15px 0 20px;

  max-width: 650px;

  box-shadow: 0 4px 12px rgba(35, 29, 23, 0.35);
}

.navbar h3 {
  color: #f2ead8;
  margin: 0 12px 0 4px;
  font-size: 1.1em;
}

.navbar a {
  display: block;

  background: #4a5841;
  color: #f2ead8;

  text-decoration: none;
  font-weight: bold;

  padding: 9px 16px;

  border-radius: 10px;
  border: 1px solid #65765b;

  transition: 0.2s ease;
}

.navbar a:hover {
  background: #65765b;
  color: #fff8e8;

  transform: translateY(-2px);

  box-shadow: 0 3px 6px rgba(35, 29, 23, 0.3);
}

.navbar a:active {
  transform: translateY(0);
}


/* Profile Picture */

.pfp {
  position: relative;

  width: 250px;
  height: 250px;

  margin: 20px 0;

  border-radius: 18px;

  box-shadow: 0 5px 14px rgba(35, 29, 23, 0.4);
}

.pfp > img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;
}


/* Profile Frame */

.frame {
  position: absolute;

  width: 335px;
  height: 320px;

  top: 80px;
  left: -50px;

  z-index: 2;

  pointer-events: none;
}

.frame img {
  width: 110%;
  height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;
}

/* Main Panel */

.panel {
  background: #28352b;

  border: 2px solid #65765b;
  border-radius: 12px;

  color: #eee7d5;

  overflow: hidden;

  max-width: 650px;

  margin: 20px 0;

  box-shadow: 0 4px 12px rgba(35, 29, 23, 0.35);
}

.panel-header {
  background: #4a5841;
  color: #f2ead8;

  padding: 12px 16px;

  font-size: 1.1em;
  font-weight: bold;

  border-bottom: 1px solid #65765b;
}

.panel-body {
  background: #344136;

  padding: 16px;

  line-height: 1.6;
}

.panel-footer {
  background: #2e3a30;
  color: #c9c2ad;

  padding: 9px 16px;

  font-size: 0.9em;

  border-top: 1px solid #65765b;
}


/* Pink iPod */
.pinkpod {
  position: fixed;

  top: 20px;
  right: 120px;

  width: 600px;
}

.pinkpod img {
  width: 100%;
  height: auto;

  display: block;

  position: relative;
  z-index: 2;

  pointer-events: none;
}

.chatui {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.chatui img {
    width: 500px;
    height: auto;
    display: block;
}
.pinkpod iframe {
  position: absolute;

  top: 108px;
  left: 204px;

  width: 216px;
  height: 240px;

  border: none;

  z-index: 1;
}
