body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #1a1a2e;
    /* Using your provided image as the background */
    background-image: url('./background.png'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

#landing-container {
    background-color: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 40px;
    max-width: 580px;
    

    position: relative;
left: -25px;
    top: 2vh;
}

#logo-container img {
    max-width: 250px;
    margin-bottom: 5px; /
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.6));
}

h1 {
    color: #FFD700;
 margin-top: -30px;
    margin-bottom: 25px;
    /* A stronger, sharper shadow for the title */
    text-shadow: 
        -1px -1px 0 #4a3f2a,  
         1px -1px 0 #4a3f2a,
        -1px  1px 0 #4a3f2a,
         1px  1px 0 #4a3f2a, /* Sharp outline */
         3px 3px 6px rgba(0,0,0,0.7); /* Soft drop shadow */
}

#info-content p {
    /* --- MODIFIED FOR HANDWRITING FONT --- */
    font-family: 'Caveat', cursive;
    font-size: 1.4em; /* Increased size for better handwriting readability */
    line-height: 1.7;
    font-weight: 700; /* Makes the font a bit bolder and clearer */
    /* -------------------------------------- */

    margin-bottom: 20px;
    color: #f5eeda;
    text-shadow: 
        -1px -1px 0 #3a2d1a,  
         1px -1px 0 #3a2d1a,
        -1px  1px 0 #3a2d1a,
         1px  1px 0 #3a2d1a,
         2px 2px 5px rgba(0,0,0,0.8);
}

.credits {
    /* --- MODIFIED FOR HANDWRITING FONT --- */
    font-family: 'Caveat', cursive;
    font-size: 1.2em;
    /* -------------------------------------- */
    font-style: italic;
    color: #e0d8c0;
}

#startButton {
    display: inline-block;
    background-color: #0d47a1;
    color: white;
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#startButton:hover {
    background-color: #1a5bb8;
    transform: scale(1.05);
}