@font-face {
  font-family: 'KTEGAKI';
  src: url('KTEGAKI.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.pinimg.com/736x/40/c2/32/40c23218b79b6edb9167affe3938d99e.jpg') repeat;
  background-size: auto;
  font-family: 'KTEGAKI', sans-serif;
  color: #6b4e3d;
}

* {
  cursor: url('https://i.imgur.com/1lFFsoP.png'), auto;
}

/* Layout */
.frame {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.container {
  background: rgba(255, 255, 255, 0.6);
  width: 800px;
  height: 600px;
  display: flex;
  border: 3px dashed #f0d6c5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
}

.sidebar {
  width: 200px;
  background: #fcf1ed;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-img {
  width: 100%;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  background: #fff4ed;
  padding: 10px;
  border-radius: 10px;
  color: #6b4e3d;
  font-weight: bold;
  box-shadow: 2px 2px 5px #d3b4a3;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: #ffeade;
}

.main-content {
  flex-grow: 1;
  padding: 30px;
  overflow-y: auto;
  text-align: center;
}

.main-image-container {
  margin-top: 20px;
}

.main-img {
  width: 60%;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.footer {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #a58a7a;
}

/* 🧸 Toy Items */
.toy-wrapper {
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.toy-header-text {
  font-size: 16px;
  color: #b48879;
  margin-bottom: 5px;
  font-family: 'KTEGAKI', cursive;
}

.toy-items {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
}

.toy-item img {
  width: 55px;
  height: auto;
  transition: transform 0.3s ease;
}

.toy-item img:hover {
  transform: scale(1.15);
}

/* 💌 Note Popups */
.note-popup {
  display: none;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff0f6;
  border: 2px solid #f7eee6;
  border-radius: 20px;
  padding: 12px 16px;
  max-width: 320px;
  font-size: 14px;
  color: #a15778;
  font-family: 'KTEGAKI', cursive;
  box-shadow: 0 4px 8px rgba(250, 190, 210, 0.4);
  z-index: 99;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* 🌸 Link Me + About Me Split Section */
.bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 10px;
}

.linkme-box-left {
  flex: 1;
}

.linkme-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.linkme-box-left textarea {
  width: 100%;
  font-size: 14px;
  padding: 5px;
  border: 2px solid #f7eee6;
  background-color: #fff7f5;
  color: #6b4e3d;
  font-family: 'KTEGAKI', cursive;
  resize: none;
  height: 60px;
}

.aboutme-link-right {
  flex: 1;
  text-align: center;
}

.aboutme-link-right img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  border: 2px solid #f0cfc2;
  border-radius: 12px;
  background-color: #fff7f5;
  padding: 6px;
  transition: transform 0.2s ease;
}

.aboutme-link-right img:hover {
  transform: scale(1.05);
}
.aboutme-text-link {
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: 'KTEGAKI', cursive;
}

.aboutme-text-link a {
  text-decoration: none;
  color: #b48879;
  background-color: #fff7f5;
  border: 1px dashed #f5c1d3;
  padding: 4px 8px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.aboutme-text-link a:hover {
  background-color: #fce4ec;
}