:root {
    --brand-red: #9B1B1B; /* A deep, mysterious crimson */
    --pure-white: #FFFFFF;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keeps it clean on mobile */
    font-family: 'Playfair Display', serif;
}

.mystery-container {
    text-align: center;
    animation: fadeIn 3s ease-in;
}

.olivia-photo img {
    width: 280px; /* Perfect size for mobile */
    height: 280px;
    border-radius: 50%; /* Makes her photo a perfect circle */
    border: 4px solid var(--pure-white);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.heart-tag {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.coming-soon {
    color: var(--pure-white);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
