:root {
    --bg-color: #eeeeee;
    --text-color: #333333;
    --accent-color: #ff4757;
}

/* Dark mode removed to ensure seamless background with the image */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-wrapper {
    position: relative;
    /* Removed animation */
}

.main-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    /* Removed drop-shadow to blend perfectly with background */
    /* filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05)); */
}

/* Optional: Add a subtle background detail if needed, keeping it clean for now */