@font-face {
  font-family: 'Mochiy Pop One';
  src: url('MochiyPopOne-Regular.ttf') format("truetype");
} 

body {
    background-color: #fce4ec;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8bbd0' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    font-family: 'Mochiy Pop One', sans-serif;
    color: #886a7a;
    text-align: center;
    margin: 0;
    padding: 20px;
    animation: moveDots 20s linear infinite;
}

header {
    background-color: #f8bbd0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 10px);
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

h1 {
    font-size: 2.5em;
    color: #fff;
    text-shadow: 2px 2px 4px #d8a0b4;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}

.panel {
    background-color: #ffffff;
    border: 2px solid #f8bbd0;
    padding: 20px;
    width: 250px;
    box-shadow: 0 10px 20px rgba(248, 187, 208, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    text-align: center;
}

.panel p {
    text-align: left;
}

.panel:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(248, 187, 208, 0.6);
}

h2 {
    color: #ec407a;
    border-bottom: 2px dashed #f8bbd0;
    padding-bottom: 10px;
    margin-top: 0;
    text-align: center;
}

footer {
    margin-top: 40px;
    padding: 15px;
    background-color: #f8bbd0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 10px);
    color: #fff;
    font-size: 0.9em;
    border-radius: 20px;
}

@keyframes moveDots {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 400px 400px;
    }
}

@keyframes jiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}
.wiggling {
    animation: jiggle 0.4s infinite;
}

nav {
    margin-bottom: 30px;
    background-color: #f8bbd0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 10px);
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-radius: 20px;
}

.chibi-link {
    text-decoration: none;
    color: #fff;
    background-color: #ec407a;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 20px;
}

.chibi-link:hover {
    background-color: #d81b60;
    transform: scale(1.05);
}
.chibi-link button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
.panel .chibi-link {
    display: inline-block;
    margin: 5px;
}

.avatar-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #f8bbd0;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bot-img {
    width: 250px;
    height: 450px;
    border: 5px solid #f8bbd0;
    object-fit: cover;
}

.sticky-note {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 150px;
    height: 150px;
    background-color: #fff9c4;
    padding: 20px;
    box-shadow: 15px 15px 15px rgba(0,0,0,0.2);
    transform: rotate(4deg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff69b4;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}