/* --- Global Styles --- */
body {
    background-color: #ffeef2;
    /* Optional: Replace with a repeating hibiscus pattern image if you have one */
    background-image: radial-gradient(#ffd3e0 20%, transparent 20%), radial-gradient(#ffd3e0 20%, transparent 20%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    font-family: 'Courier New', Courier, monospace;
    color: #4a2840;
    margin: 0;
    padding: 20px;
}

/* --- Main Layout Grid --- */
#container {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    border: 3px double #ff4b72;
    border-radius: 15px;
    box-shadow: 5px 5px 0px #ffb3c6;
}

/* --- Header & Footer --- */
header {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 20px;
    border: 2px dashed #ff4b72;
    border-radius: 10px;
    margin-bottom: 15px;
}

header h1 {
    margin: 0;
    font-size: 2.2em;
    color: #d61a4c;
    text-shadow: 2px 2px 0px #fff;
}

footer {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    font-size: 0.8em;
}

/* --- Structural Columns --- */
#wrapper {
    display: flex;
    gap: 15px;
}

aside {
    flex: 1; /* Left column takes 1 part space */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

main {
    flex: 2; /* Right column takes 2 parts space */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- Content Content Boxes --- */
.box {
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid #ff7597;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 3px 3px 0px rgba(255, 117, 151, 0.3);
}

.box h3 {
    margin-top: 0;
    background-color: #ff7597;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
}

.box h2 {
    margin-top: 0;
    color: #d61a4c;
    font-size: 1.4em;
}

hr {
    border: 0;
    border-top: 2px dotted #ff7597;
    margin: 10px 0;
}

/* --- Navigation Links --- */
.menu-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-box li {
    margin-bottom: 8px;
}

.menu-box a {
    text-decoration: none;
    color: #d61a4c;
    font-weight: bold;
    display: block;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s;
}

.menu-box a:hover {
    background-color: #ffdee6;
    padding-left: 10px;
}

/* --- Profile Styling --- */
.profile-pic {
    width: 100%;
    max-width: 150px;
    display: block;
    margin: 0 auto 10px auto;
    border: 3px solid #ff7597;
    border-radius: 50%;
}

/* --- Sticker Grid Placement --- */
.sticker-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.sticker-grid img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.1));
}

/* Responsive adjustment for mobile viewports */
@media (max-width: 600px) {
    #wrapper {
        flex-direction: column;
    }
}
/* Positioning the art container at the edge */
.edge-art {
    position: fixed;
    bottom: 20px;          /* Anchors it near the bottom edge */
    right: 10px;           /* Pushes it right to the right edge of the screen */
    z-index: 100;          /* Keeps it layered safely above your background dots */
    pointer-events: none;  /* Allows you to scroll or click items behind it */
}

.edge-art pre {
    font-family: monospace;
    font-size: 6px;        /* Keeping font extra tiny to prevent blocking content */
    line-height: 1;
    color: #ff4b72;        /* Perfectly matches your dark pink design scheme */
    margin: 0;
    padding: 10px;
    background: rgba(255, 254, 254, 0.7); /* Adds a subtle clear glass backdrop */
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(255, 117, 151, 0.1);
}

/* Screen adaptation rule to prevent overlap on mobile viewports */
@media (max-width: 1200px) {
    .edge-art {
        position: relative;
        display: block;
        margin: 20px auto;
        width: max-content;
        bottom: auto;
        right: auto;
    }
    .edge-art pre {
        font-size: 7px;
    }
}
