   body {
            font-family: 'Inter', sans-serif;
            background-color: #F0F9FF; /* sky-50 */
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6, .font-comic {
            font-family: 'Fredoka One', cursive;
        }
        .comic-button {
            transition: all 0.2s ease-in-out;
            border: 3px solid #020617; /* slate-950 */
            box-shadow: 4px 4px 0px #020617;
        }
        .comic-button:hover {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0px #020617;
        }
        .comic-button:active {
            transform: translate(4px, 4px);
            box-shadow: 0px 0px 0px #020617;
        }
        .comic-card {
            border: 3px solid #020617;
            box-shadow: 6px 6px 0px #020617;
        }
        .marquee-content {
            animation: marquee 30s linear infinite;
        }
        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }
        @keyframes marquee {
            from { transform: translateX(0%); }
            to { transform: translateX(-50%); }
        }
        @media (prefers-reduced-motion: reduce) {
            .marquee-content {
                animation: none;
            }
            .animated {
                transition: none;
                transform: none !important;
                opacity: 1 !important;
            }
        }
        .parallax-bg {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            background-attachment: fixed;
        }
        .section-divider {
            overflow: hidden;
            position: relative;
            height: 100px;
        }
        .section-divider::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: #F0F9FF; /* sky-50 */
            border-radius: 50% / 50px;
        }
        .section-divider-bottom::before {
             top: auto;
             bottom: -50px;
        }

        .text-comic{
            -webkit-text-stroke-width: 0.5rem;
            -webkit-text-stroke-color: #212529;
            paint-order: stroke fill;
            text-shadow: 0.5rem 0.5rem 0 #212529;
        }
        @media (max-width: 640px) {
            .text-comic {
            -webkit-text-stroke-width: 0.15rem;
            text-shadow: 0.15rem 0.15rem 0 #212529;
            }
        }