body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #F66733, #522D80);
    padding: 20px;
    box-sizing: border-box;
}

.paw-image {
    width: 50%;
    max-width: 400px;
    height: auto;
    margin-bottom: 40px;
    display: block;
}

.container {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
}

h1 {
    font-size: 1.8em;
    color: #F66733;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-wrap: break-word;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 30px;
    background: linear-gradient(90deg, #F66733, #522D80);
    width: 0;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#progress-text {
    font-size: 1.2em;
    margin-top: 10px;
    color: #522D80;
}

.additional-info {
    text-align: left;
    margin-top: 10px;
}

.additional-info p {
    font-size: 0.9em;
    color: #522D80;
    margin: 5px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.additional-info p:hover {
    color: #F66733;
}

.info-value {
    font-weight: bold;
    margin-left: 5px;
    color: #F66733;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    #progress-text {
        font-size: 1em;
    }

    .additional-info p {
        font-size: 0.8em;
    }
}
