/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.splash-squiggle {
    width: 120px;
    height: 40px;
    display: block;
    margin-bottom: 20px;
}

.splash-squiggle path {
    fill: none;
    stroke: #333;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: draw-squiggle 1.6s ease-in-out infinite;
}

@keyframes draw-squiggle {
    0% { stroke-dashoffset: 150; opacity: 0.6; }
    40% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -150; opacity: 0.6; }
}

.splash-title {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
}
