body {
    background: url('../images/paintbar.logo.png'), rgb(49, 35, 58);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 25%;
    background-attachment: fixed;
    background-blend-mode: overlay;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    max-width: 800px;
    margin: 20px;
    text-align: center;
}

.panda-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.panda {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.speech-bubble {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

h1 {
    color: #333;
    font-size: 2.5em;
    margin: 0;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-size: 1.1em;
    margin: 10px 0;
}

.home-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgb(49, 35, 58);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.home-link:hover {
    background: rgb(59, 45, 68);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
    .container {
        margin: 10px;
    }
    
    .panda-container {
        width: 200px;
        height: 200px;
    }

    .speech-bubble {
        padding: 15px;
    }
}
