body {
    margin: 0;
    padding: 20px;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

footer {
    margin: 10px;
}

.neko-container {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
}

.neko-image {
    width: 250px;
    transition: transform 0.25s ease-out;
}

.neko-image:hover {
    transform: scale(1.2);
}

.message {
    font-size: 1.5em;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    white-space: normal;
    text-align: center;
}

.fixed-discord {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

.fixed-discord img {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .neko-image {
        width: 150px;
        transition: none; 
    }
    .neko-image:hover {
        transform: none; 
    }
    .message {
        font-size: 1.2em;
        margin-top: 15px;
        padding: 8px 15px;
        white-space: pre-wrap;
        margin-left: 0;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    .fixed-discord {
        bottom: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    .neko-container {
        margin-right: 0;
        margin-bottom: 10px;
    }
    body {
        flex-direction: column;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .neko-image {
        width: 120px;
        transition: none;
    }
    .neko-image:hover {
        transform: none;
    }
    .message {
        font-size: 1em;
        margin-top: 10px;
        padding: 6px 12px;
        white-space: pre-wrap;
        margin-left: 0;
        padding-left: 12px;
        padding-right: 12px;
        text-align: center;
    }
    .fixed-discord {
        bottom: 12px;
        left: 12px;
        width: 50px;
        height: 50px;
    }
    .neko-container {
        margin-bottom: 5px;
    }
}

