body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    cursor: url('../images/SimplifyMintCoffeeRyokuryuneko/01_normal_select.cur') 1 1, auto;
}

a, [href] {
    cursor: url('../images/SimplifyMintCoffeeRyokuryuneko/15_link_select.cur') 1 1, pointer;
}

input[type="text"], textarea, [contenteditable] {
    cursor: url('../images/SimplifyMintCoffeeRyokuryuneko/06_text_select.cur') 1 1, text;
}

.busy {
    cursor: url('../images/SimplifyMintCoffeeRyokuryuneko/04_busy.ani') 1 1, wait;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-screen img {
    width: auto;
    height: auto;
    max-width: 266px; /* 532 / 2 */
    max-height: 221px; /* 442 / 2 */
    object-fit: contain;
}

.progress-bar {
    width: 300px;
    height: 10px;
    background-color: rgba(66, 133, 244, 0.2);
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: #4285F4;
    transition: width 0.1s;
}

.progress-text {
    color: white;
    margin-top: 10px;
    font-size: 18px;
}

.loading-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    position: relative;
    display: inline-block;
    color: rgba(66, 133, 244, 0.3);
}

.loading-text span {
    position: relative;
    display: inline-block;
    animation: letterGlow 1.5s ease-in-out infinite;
    animation-delay: calc(0.15s * var(--i));
}

@keyframes letterGlow {
    0%, 100% { color: rgba(66, 133, 244, 0.3); text-shadow: none; }
    50% { color: #4285F4; text-shadow: 0 0 15px #4285F4; }
}

header {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}