body {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#landing { text-align: center; max-width: 550px; padding: 20px; }

.logo {
    font-size: 4rem;
    color: #1A73E8;
    margin: 0;
    font-weight: 600;
}

#shortlist-form { margin: 30px 0; }

input[type="email"] {
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid #eee;
    width: 280px;
    font-family: 'Fredoka';
    outline: none;
}

button {
    padding: 15px 35px;
    border-radius: 50px;
    background: #1A73E8;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

#egg {
    width: 80px;
    height: 110px;
    margin: 20px auto;
    cursor: pointer;
    background: linear-gradient(180deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}

#egg:active { transform: scale(0.95); }

#game-view { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #87CEEB; }
.watermark { position: absolute; bottom: 20px; right: 20px; color: rgba(255,255,255,0.4); }
.modal { background: white; padding: 40px; border-radius: 25px; text-align: center; }