
body {
    margin: 0;
    padding: 0;
    background: #FFDDEE;
    font-size: 12px;
    overflow: auto;
}

/* Main container */
#mainDiv {
    width: 100%;
    height: 100%;
}

/* Heart garden container */
#loveHeart {
    float: none;
    width: 670px;
    height: 625px;
    margin: 120px auto 0 auto; /* pushed down but centered */
}

/* Canvas for blooms */
#garden {
    width: 100%;
    height: 100%;
}

/* Words and messages inside heart */
#words {
    font-family: "sans-serif";
    width: 500px;
    font-size: 24px;
    color: #ff3366; /* heart-themed pink */
    margin: 0 auto;
    text-align: center;
    text-shadow: 1px 1px 4px #ffa6c9; /* soft glow */
}

/* Main message inside heart */
#messages {
    display: none;
    font-size: 30px;
    font-weight: bold;
    color: #ff3366;
    text-shadow: 2px 2px 5px #ff99cc; /* glowing effect */
}

/* Timer digits */
#elapseClock {
    text-align: right;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ff6699;
    text-shadow: 1px 1px 3px #ffccd9; /* soft glow */
}
#elapseClock .digit {
    font-family: digit;
    font-size: 40px;
}

/* Love you message */
#loveu {
    padding: 5px;
    font-size: 22px;
    margin-top: 80px;
    margin-right: 120px;
    text-align: right;
    display: none;
    color: #ff6699;
    text-shadow: 1px 1px 2px #ff99cc; /* glow */
}
#loveu .signature {
    margin-top: 10px;
    font-size: 20px;
    font-style: italic;
    color: #ff99cc;
}

/* Hidden sound */
#clickSound {
    display: none;
}

/* Poem / code section */
#code {
    float: none;
    width: 90%;
    height: ;
    color: #333;
    font-family: "Consolas","Monaco","Bitstream Vera Sans Mono","Courier New",sans-serif;
    font-size: 30px; /* bigger readable font */
    line-height: 1.6;
}

/* Poem text colors */
#code .string { color: #2a36ff; }
#code .keyword { color: #7f0055; font-weight: bold; }
#code .placeholder { margin-left: 15px; }
#code .space { margin-left: 7px; }
#code .comments { color: #3f7f5f; }

/* Footer / copyright */
#copyright {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    color: #666;
}
#copyright a { color: #666; }

/* Error message */
#errorMsg {
    width: 100%;
    text-align: center;
    font-size: 24px;
    position: absolute;
    top: 100px;
    left: 0;
}

/* Heart icon & span */
#heartspan {
    display: block;
    text-align: center; /* center the heart relative to screen */
    margin: 20px 0;
}
#icon {
    font-size: 80px; /* big heart */
    color: #ff3366;
    text-shadow: 0 0 10px #ff6699, 0 0 20px #ff99cc, 0 0 30px #ffccff; /* glow effect */
    transition: transform 0.3s;
}
#icon:hover {
    transform: scale(1.1); /* subtle hover effect */
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    #code {
        font-size: 24px;
    }
    #loveHeart {
        height: 500px;
        margin-top: 80px;
    }
    #icon {
        font-size: 70px;
    }
}
