        body {
            /* The pink lined paper background */
            background-color: #f7e7e7;
            background-image: linear-gradient(to right, transparent 99%, #ffd1dc 1%), linear-gradient(#ffd1dc 1px, transparent 1px);
            background-size: 100% 25px, 100% 25px;
            background-position: 0 0, 0 24px;
            font-family: 'Indie Flower', cursive;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
            color: #4b4b4b;
        }

        .diary-container {
            width: 100%;
            max-width: 700px;
            padding: 40px;
            /* Updated to have transparent background and no rounded corners */
            background: rgba(255, 255, 255, 0.7);
            border-radius: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .diary-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 20px;
            /* New glitter text effect */
            background-image: url('https://64.media.tumblr.com/3b918bf01a7f2d56a9c2f7177cf78cf5/dae2fb72d52b37b2-b1/s75x75_c1/4cecd42c29418bc096eb908cced8bdf4df5bd42f.gifv');
            /* Image is now smaller and repeats to show the texture */
            background-size: 50px 50px;
            background-repeat: repeat;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .diary-date {
            font-size: 1.5em;
            text-align: right;
            margin-bottom: 20px;
        }

        .diary-entry {
            width: 100%;
            padding: 20px;
            font-size: 1.2em;
            line-height: 2; /* Spacing out the lines to match the paper effect */
            background: transparent;
            border: none;
            font-family: 'Indie Flower', cursive;
            outline: none;
            color: #4b4b4b;
        }

        .glitter-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
        }