        body {
            background-color: #f4f1de;
            color: #3d405b;
            font-family: 'Nunito', sans-serif;
            overflow-x: hidden;
        }

        /* Doodles Background */
        .bg-doodles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.9-5.9L45.9 0l-5.9 5.9-5.9-5.9L32.7 1.414l5.9 5.9-5.9 5.9 1.414 1.414 5.9-5.9 5.9 5.9 1.414-1.414-5.9-5.9zM4 60c0 1.25-.39 2.412-1.058 3.36L2.2 62.6c.17-.472.254-1.292-.36-1.906-.612-.614-1.434-.53-1.906-.36l-.74-2.2C.588 59.39 1.75 59 3 59c2.21 0 4 1.79 4 4zm13-3.357l-2.2.74c.17.472.254 1.293-.36 1.907-.613.613-1.434.528-1.906.36l-.74 2.2C12.588 59.61 13.75 60 15 60c2.21 0 4-1.79 4-4 0-1.25-.39-2.412-1.058-3.36l-.942.717zM60 4c0 2.21-1.79 4-4 4-1.25 0-2.412-.39-3.36-1.058l.718-.942c.472.17 1.292.254 1.906-.36.614-.612.53-1.434.36-1.906l2.2-.74c.97.668 1.36 1.83 1.36 3.08zM12.643 7l.717.942c-.472.17-1.292.254-1.906-.36-.612-.614-.53-1.434-.36-1.906l-2.2-.74c-.97.668-1.36 1.83-1.36 3.08 0 2.21 1.79 4 4 4 1.25 0 2.412-.39 3.36-1.058z' fill='%233d405b' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* Paper Card Effect */
        .paper-card {
            background-color: #fff;
            border: 2px solid #f2f2f2;
            box-shadow: 5px 5px 0px 0px rgba(224, 122, 95, 0.15);
            transition: all 0.3s ease;
        }
        .paper-card:hover {
            transform: translate(-3px, -3px);
            box-shadow: 8px 8px 0px 0px rgba(224, 122, 95, 0.3);
            border-color: #e07a5f;
        }

        /* Handwritten Underline */
        .hand-underline {
            position: relative;
            display: inline-block;
        }
        .hand-underline::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5 Q 50 10 98 5' stroke='%23e07a5f' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
            background-size: 100% 100%;
            z-index: -1;
        }

        /* Wobbly Button */
        .btn-wobble:hover {
            animation: wobble 1s ease-in-out infinite;
        }
        @keyframes wobble {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-2deg); }
            75% { transform: rotate(2deg); }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f4f1de; }
        ::-webkit-scrollbar-thumb { background: #e07a5f; border-radius: 10px; border: 2px solid #f4f1de; }
