/* TLQ Website Custom Styles */

/* Hand-drawn border effect for playful aesthetic */
.hand-drawn {
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    border: 2px solid currentColor;
}

/* Crosshatch pattern for subtle texture on feature cards */
.crosshatch {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,.03) 10px,
        rgba(0,0,0,.03) 20px
    );
}

/* Copy button feedback animation */
.copied {
    animation: fadeInOut 1s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}