body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: dimgray;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    color: #afacac;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background-min.png');
    background-size: cover;
    background-position: center;
    z-index: -1;

    /* Gradient mask for transparency to black */
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.2) 15%, 
        rgba(0,0,0,0.5) 30%, 
        rgba(0,0,0,0.8) 50%, 
        rgba(0,0,0,1) 100%
    );
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.2) 15%, 
        rgba(0,0,0,0.5) 30%, 
        rgba(0,0,0,0.8) 50%, 
        rgba(0,0,0,1) 100%
    );

    /* Slight additional filter for softness */
    filter: grayscale(50%) brightness(0.7);
}

.container {
    background-color: rgba(40, 40, 40, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 300px;
    position: relative;
    z-index: 10;
}

#name-display {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #afacac;
    /* text-shadow: 2px 2px 4px rgba(255,255,255,0.5); */
}

details summary {
    cursor: pointer;
    color: #afacac;
    text-decoration: underline;
}

#days-count {
    font-size: 48px;
    color: #cac9c9;
    margin: 20px 0;
}

#date-info {
    color: #afacac;
    margin: 20px 0;
}

details > div {
    margin-top: 10px;
}