body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    background-color: #a7d7f9;
    background-image: url('https://images.unsplash.com/photo-1563505187-37c6c49169a8?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: #e0f2e9; /* Pastel green */
    padding: 2rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 40px solid transparent; /* A nice, thick border */
    border-image-source: url('https://thumbs.dreamstime.com/z/enchanting-soft-blue-pink-rose-buds-serene-fashion-photography-aesthetic-perfect-floral-designers-artists-capture-349683428.jpg?ct=jpeg'); /* A proper, seamless floral pattern */
    border-image-slice: 60; /* Correct slicing for the image */
    border-image-repeat: round; /* Tiles the flowers nicely */
    border-radius: 30px; /* This rounds the corners */
}

.cat-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

h1 {
    font-size: 2.5rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

#generate-btn {
    background-color: #ffb6c1;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

#generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.5);
}

#generate-btn:active {
    transform: translateY(0);
}

#lotto-numbers-container {
    margin: 2rem 0;
}

/* CLOUDS */
#clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 200px;
    opacity: 0.8;
}

.cloud:before, .cloud:after {
    content: '';
    position: absolute;
    background: #fff;
    width: 100px;
    height: 80px;
    top: -15px;
    left: 10px;
    border-radius: 100px;
    transform: rotate(30deg);
}

.cloud:after {
    width: 120px;
    height: 120px;
    top: -55px;
    left: auto;
    right: 15px;
}

.x1 { top: 50px; left: 100px; width: 200px; height: 60px; animation: moveclouds 25s linear infinite; }
.x2 { top: 150px; left: 400px; width: 300px; height: 90px; animation: moveclouds 35s linear infinite; }
.x3 { top: 250px; left: -50px; width: 250px; height: 70px; animation: moveclouds 30s linear infinite; }
.x4 { top: 350px; left: 250px; width: 350px; height: 100px; animation: moveclouds 38s linear infinite; }
.x5 { top: 450px; left: 150px; width: 280px; height: 80px; animation: moveclouds 42s linear infinite; }

@keyframes moveclouds {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-200vw); }
}
