        /* Della Robbia STD font face - Self-hosted for CSP compliance */
        @font-face {
            font-family: 'Della Robbia STD';
            src: url('/assets/fonts/DellaRobbiaStd.woff2') format('woff2'),
                 url('/assets/fonts/DellaRobbiaStd.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        
        /* Fallback font stack */
        .della-robbia {
            font-family: 'Della Robbia STD', 'Georgia', serif;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        /* Poppins for body text */
        .poppins {
            font-family: 'Poppins', sans-serif;
        }

        /* Instructions Overlay Styles */
        .instructions-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(5, 36, 14, 0.9);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .instructions-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .mascot-container {
            position: relative;
            width: 90%;
            max-width: 800px;
            background: linear-gradient(135deg, #093916, #0a4b1c);
            border-radius: 20px;
            padding: 20px 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 2px solid #eaa321;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-left: 180px;
        }

        .close-instructions-button {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #eaa321;
            color: #093916;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            z-index: 10;
            font-family: 'Poppins', sans-serif;
        }

        .close-instructions-button:hover {
            transform: scale(1.1);
            background: white;
        }

        /* Enhanced Realistic Speech Bubble */
        .speech-bubble {
            position: relative;
            background: white;
            color: #093916;
            padding: 25px;
            margin-bottom: 30px;
            width: 100%;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            /* New enhancements */
            filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
            border: 1px solid rgba(0, 0, 0, 0.05);
            animation: float 3s ease-in-out infinite;
        }

        /* Realistic speech bubble tail pointing to the mascot */
        .speech-bubble:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50px; /* Positioned to point toward the mascot */
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 0 0 0 20px;
            clip-path: polygon(0 0, 100% 0, 0 100%);
            transform: rotate(-45deg);
            box-shadow: -3px 3px 5px rgba(0, 0, 0, 0.05);
            z-index: -1;
        }

        /* Optional: Add a subtle outline to the tail */
        .speech-bubble:before {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 49px;
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 0 0 0 20px;
            clip-path: polygon(0 0, 100% 0, 0 100%);
            transform: rotate(-45deg);
            z-index: -2;
        }

        .speech-title {
            font-weight: 700;
            font-size: 1.2rem; /* Larger for Della Robbia STD */
            margin-bottom: 15px;
            color: #093916;
            text-align: center;
            line-height: 1.2;
            font-family: 'Della Robbia STD', 'Georgia', serif;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            letter-spacing: 1.5px;
        }

        .speech-text {
            line-height: 1.6;
            margin-bottom: 10px;
            text-align: left;
            font-size: 0.8rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
        }

        /* Style for bullet points */
        .speech-text ul {
            margin: 0;
            padding-left: 20px;
        }

        .speech-text li {
            margin-bottom: 8px;
        }

        /* Step indicator */
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 8px;
        }

        .step-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(9, 57, 22, 0.3);
            transition: all 0.3s ease;
        }

        .step-dot.active {
            background-color: #093916;
            transform: scale(1.2);
        }

        /* Navigation buttons container */
        .navigation-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .prev-button {
            background: #eaa321;
            color: #093916;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .prev-button:hover {
            background: white;
            transform: translateX(-3px);
        }

        .prev-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .prev-button:disabled:hover {
            background: #eaa321;
            transform: none;
        }

        .next-button {
            background: #093916;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .next-button:hover {
            background: #05240e;
            transform: translateX(3px);
        }

        .done-button {
            background: #eaa321;
            color: #093916;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(234, 163, 33, 0.3);
            font-family: 'Poppins', sans-serif;
                margin-top: 20px;

        }

        .done-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(234, 163, 33, 0.5);
            background: white;
        }

        .mascot-image {
            position: absolute;
            left: -510px;
            top: 50px;
            width: 750px;
            height: auto;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
            z-index: 2;
        }

        /* Floating Settings Button */
        .floating-settings {
            position: fixed;
            top: 180px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #0a3f19;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            z-index: 9999;
            font-family: 'Poppins', sans-serif;
        }

        .floating-settings:hover {
            transform: scale(1.1);
            background: #eaa321;
        }

        .floating-settings i {
            color: white;
            font-size: 24px;
        }

        /* Subtle floating animation for the speech bubble */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .mascot-container {
                width: 95%;
                padding: 20px;
                margin-left: 0;
            }

            .mascot-image {
                position: relative;
                left: 0;
                top: 0;
                width: 200px;
                margin-top: 20px;
            }

            .speech-bubble {
                min-height: 150px;
                padding: 25px 20px 35px 20px;
            }

            .speech-bubble:after {
                left: 30px;
                bottom: -12px;
                width: 25px;
                height: 25px;
            }

            .speech-bubble:before {
                left: 29px;
                bottom: -13px;
                width: 27px;
                height: 27px;
            }

            .speech-title {
                font-size: 1.8rem;
                padding: 0 5px;
                letter-spacing: 1px;
            }

            .speech-text {
                font-size: 0.95rem;
                padding: 0 10px;
            }

            .navigation-buttons {
                flex-direction: column;
                gap: 10px;
            }
        }