/* Party Soyjak / Babyjak CSS */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Classic chaotic font */
    background-color: #ff69b4; /* Bright pink background for Babyjak’s vibe */
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

h1 {
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 3px 3px 10px rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    animation: partyDance 1s infinite alternate; /* Makes it wobble */
}

#chat-box {
    width: 350px;
    height: 400px;
    background: linear-gradient(45deg, #ff6347, #ff8c00, #ff1493, #ff4500); /* Neon gradient for chaos */
    border-radius: 10px;
    border: 3px solid #fff;
    overflow-y: scroll;
    padding: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

input[type="text"] {
    width: 240px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
}

button {
    padding: 10px;
    font-size: 16px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff1493;
    color: #fff;
}

/* Party animation for the text (Babyjak style!) */
@keyframes partyDance {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}

#chat-box div {
    font-size: 18px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
    border-radius: 5px;
}

#chat-box div:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.3);
}
