@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Slab:wght@100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    background: url('grass.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#main-content {
    height: 100%;
    width: 100%;
}

.photo-credit {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plus-one {
    position: absolute;
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 0 #000;
    opacity: 0;
    transform: translateY(0);
    user-select: none;
    pointer-events: none;
    animation: fade-up 1s forwards;
}

@keyframes fade-up {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-50px);
    }
}

#milestone-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-family: "Chivo", sans-serif;
    font-size: 18px;
    text-align: center;
    display: none;
    z-index: 100;
    animation: pop-in 0.5s ease-out;
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

::selection {
    color: #90ee90;
    background: #006400;
}