body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #ff0037; 
    background-image: linear-gradient(rgba(255, 0, 55, 0.5), rgba(255, 0, 55, 0.5)), url('oracle-mosaic.jpg'); 
    background-size: 800px;
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter Tight', sans-serif;
    overflow: hidden;
}

.main-layout {
    background: rgba(33, 33, 33, 0.9); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 40px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.heading {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.2rem;
    color: white;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-shadow: 4px 4px 0px #ff0037, -3px -3px 0px #0062ff;
}

#magic-flower-wrapper {
    width: 120px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.flower-graphic, .click-hint {
    pointer-events: none; 
}

.flower-graphic {
    width: 120px !important;
    height: 120px !important;
    filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.4));
}

.click-hint {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 11px;
    color: #00ff6d;
    margin-top: 10px;
    text-transform: uppercase;
}

.advice-card {
    background: white;
    color: #212121;
    padding: 30px;
    border: 8px solid #00ff6d;
    box-shadow: 15px 15px 0px #0062ff;
    width: 100%;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.show-advice {
    opacity: 1;
    visibility: visible;
}

#advice-author {
    font-family: 'Dela Gothic One', sans-serif;
    color: #ff0037;
    text-transform: uppercase;
    margin-top: 15px;
}

.bloom { animation: pop 0.4s ease; }
@keyframes pop { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.2); } 
}