/* Soft pink gradient background */

:root {
    /* Color palette - Soft pink theme */
    --cherry-pink-bright: #ff4f9a;
    --cherry-pink-main: #ff69b4;
    --cherry-pink-glow: #ff0099;
    --cherry-bg-light: #ffd6ec;
    --cherry-bg-mid: #ffb3d9;
}

body {
    margin: 0;
    background: linear-gradient(135deg, var(--cherry-bg-light), var(--cherry-bg-mid));
    font-family: "Verdana", sans-serif;
    overflow: hidden;
}

/* Boot screen */
#boot-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--cherry-bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1s ease forwards;
    animation-delay: 3s;
}

.boot-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--cherry-pink-bright);
    text-shadow: 0 0 10px var(--cherry-pink-bright);
}

.boot-bar {
    width: 220px;
    height: 12px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px var(--cherry-pink-main);
}

.boot-fill {
    width: 0%;
    height: 100%;
    background: var(--cherry-pink-bright);
    animation: loading 2.8s forwards;
}

/* Loading animation */
@keyframes loading {
    to { width: 100%; }
}

/* Desktop */
#desktop.hidden {
    display: none;
}

#desktop {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--cherry-bg-light), var(--cherry-bg-mid));
}

#neon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 150px rgba(255, 0, 102, 0.25);
}

/* Dock */
#dock {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.4);
    padding: 12px 25px;
    display: flex;
    gap: 25px;
    border-radius: 22px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.4);
}

.dock-icon {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.dock-icon:hover {
    transform: scale(1.25);
}

/* Windows */
.window {
    width: 450px;
    height: 350px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 0, 153, 0.4);
    position: absolute;
    top: 15%;
    left: 20%;
    display: flex;
    flex-direction: column;
}

.window.hidden {
    display: none;
}

.titlebar {
    background: rgba(255, 0, 153, 0.2);
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}

iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.notes-area {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
    background: transparent;
    font-size: 1rem;
    resize: none;
}

.inside {
    padding: 15px;
    font-size: 1.1rem;
}

/* Fade boot screen */
@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}
