/* --- 🌹 LOLITA VARIABLES 🌹 --- */
:root {
    --pastel-pink: #ffdde6;
    --deep-rose: #FFC0CB;
    --cream: #fffaf0;
    --lace-white: #ffffff;
    --border-color: #f7cdda;
    --gold-accent: #e6c888;
    
    --font-script: 'Homemade Apple', cursive;
    --font-body: 'Quicksand', sans-serif;
    --font-header: 'Bonbon', cursive;
}

/* --- RESET & BODY --- */
* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 20px;
    background-color: var(--pastel-pink);
    /* Gingham Pattern */
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.4) 50%, transparent 50%),
        linear-gradient(rgba(255,255,255,0.4) 50%, transparent 50%);
    background-size: 30px 30px;
    font-family: var(--font-body);
    color: #6e4c55;
    /* Cute Cursor (Crosshair is a classic neocities trope) */
    cursor: url('https://cur.cursors-4u.net/food/foo-6/foo538.cur'), 10 10, auto;
    cursor: crosshair; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--pastel-pink); }
::-webkit-scrollbar-thumb { 
    background: var(--deep-rose); 
    border-radius: 5px; 
    border: 2px solid var(--pastel-pink);
}

/* --- 🍰 FLOATING BACKGROUND ITEMS 🍰 --- */
.background-decorations {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: sway 4s infinite ease-in-out alternate;
}
.item-1 { top: 10%; left: 5%; animation-delay: 0s; }
.item-2 { top: 80%; left: 10%; animation-delay: 1s; }
.item-3 { top: 15%; right: 5%; animation-delay: 2s; }
.item-4 { top: 75%; right: 8%; animation-delay: 3s; }

@keyframes sway {
    from { transform: translateY(0) rotate(-10deg); }
    to { transform: translateY(-20px) rotate(10deg); }
}

/* --- 🕸️ THE LACE WRAPPER (OUTER FRAME) 🕸️ --- */
.lace-wrapper {
    background: var(--lace-white);
    padding: 15px; /* The width of the white lace border */
    border-radius: 25px;
    box-shadow: 
        0 0 0 8px var(--pastel-pink), /* Outer Pink Line */
        0 0 20px rgba(0,0,0,0.1);
    max-width: 950px;
    width: 100%;
    position: relative;
}

/* Creating a "ruffle" effect using dashed border on the wrapper */
.lace-wrapper::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 2px dashed var(--pastel-pink);
    border-radius: 20px;
    pointer-events: none;
}

.main-container {
    background: var(--cream);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--pastel-pink);
}

/* --- 🎀 RIBBON NAVIGATION 🎀 --- */
.ribbon-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ribbon-link {
    text-decoration: none;
    background: var(--pastel-pink);
    color: white;
    padding: 8px 25px;
    position: relative;
    font-family: var(--font-header);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

/* The folded ribbon ends effect using borders */
.ribbon-link::before, .ribbon-link::after {
    content: '';
    position: absolute;
    top: 10px; 
    border-style: solid;
    z-index: -1;
    transition: all 0.2s;
}

/* Left tail */
.ribbon-link::before {
    left: -15px;
    border-width: 0 15px 15px 0;
    border-color: transparent #F8C8DC transparent transparent;
}
/* Right tail */
.ribbon-link::after {
    right: -15px;
    border-width: 15px 15px 0 0;
    border-color: #F8C8DC transparent transparent transparent;
}

.ribbon-link:hover {
    transform: translateY(-3px);
    background: #e69ab0;
}

/* --- 🖼️ FANCY HEADER 🖼️ --- */
.fancy-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.header-inner {
    display: inline-block;
    padding: 10px;
    background: white;
    border: 1px solid var(--pastel-pink);
    /* Double outline for picture frame look */
    outline: 4px double var(--pastel-pink); 
    box-shadow: 5px 5px 0 rgba(214, 142, 159, 0.2);
    transform: rotate(-1deg);
}

.header-inner img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 📖 CONTENT AREA LAYOUT 📖 --- */
.content-area {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

/* --- 💍 CAMEO PROFILE (Sidebar) 💍 --- */
.sidebar-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cameo-frame {
    position: relative;
    width: 220px;
    height: 280px;
}

.cameo-inner {
    width: 100%;
    height: 100%;
    background: white;
    /* Oval Shape */
    border-radius: 50% / 50%; 
    border: 8px solid var(--white);
    outline: 2px dashed var(--gold-accent);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cameo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cameo-bow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

/* --- 🎵 MUSIC WIDGET 🎵 --- */
.widget-box {
    background: white;
    border: 2px solid var(--pastel-pink);
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    text-align: center;
    box-shadow: 3px 3px 0 var(--pastel-pink);
}

.widget-title {
    font-family: var(--font-header);
    color: var(--pastel-pink);
    border-bottom: 2px dotted var(--pastel-pink);
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.player-controls span {
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 5px;
    color: var(--deep-rose);
}
.player-controls span:hover { color: var(--gold-accent); }

/* --- 📜 RIGHT COLUMN: PAPER TEXT 📜 --- */
.bio-right {
    background: white;
    padding: 30px;
    border-radius: 5px;
    /* Creating a "notepaper" look */
    background-image: linear-gradient(#f7cdda 1px, transparent 1px);
    background-size: 100% 2em; /* Height of the lines */
    line-height: 2em; /* Matches the lines */
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    position: relative;
}

/* Washi tape effect at top of paper */
.bio-right::before {
    content: '';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: rgba(214, 142, 159, 0.5);
    transform: translateX(-50%) rotate(-2deg);
}

.elegant-title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    text-align: center;
    margin: 0;
    color: var(--pastel-pink);
    text-shadow: 2px 2px 0 var(--pink);
}

.lace-divider {
    height: 15px;
    background-image: radial-gradient(circle, var(--pastel-pink) 2px, transparent 2.5px);
    background-size: 10px 10px;
    background-position: center;
    margin: 20px 0;
    opacity: 0.5;
}

.quote-box {
    background: var(--pastel-pink);
    border-left: 5px solid var(--pink);
    margin: 20px 0;
    padding: 10px 20px;
    font-style: italic;
    color: #8c5e6b;
    border-radius: 0 10px 10px 0;
}

.info-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    font-size: 0.9rem;
}

.info-item {
    background: var(--cream);
    padding: 0 10px;
    border: 1px dotted var(--pink);
    border-radius: 15px;
}

.commission-status {
    text-align: center;
    margin-top: 30px;
    font-family: var(--font-header);
    font-size: 1.3rem;
    color: var(--pastel-pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- 🦶 FOOTER 🦶 --- */
.footer-lace {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 4px double var(--Pink);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.icon-btn {
    width: 40px; 
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid var(--Pink);
    transition: all 0.3s;
}

.icon-btn:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(360deg);
}

/* --- 📱 MOBILE RESPONSIVENESS 📱 --- */
@media (max-width: 768px) {
    .content-area {
        grid-template-columns: 1fr;
    }
    .sidebar-left {
        order: -1; /* Puts profile on top */
    }
    .lace-wrapper {
        padding: 5px;
    }
    .ribbon-nav {
        gap